        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #1a237e 0%, #311b92 100%);
            color: #fff;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff9800, #ffeb3b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        .desktop-nav ul {
            display: flex;
            gap: 1.5rem;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #1a237e;
            padding: 1rem;
            flex-direction: column;
            gap: 1rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 0.75rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background-color: rgba(255,255,255,0.05);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e8eaf6;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: #666;
        }
        .breadcrumb a:hover {
            color: #1a237e;
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .content {
            background-color: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        aside {
            background-color: #fff;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
        }
        h1 {
            font-size: 2.5rem;
            color: #1a237e;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 1.8rem;
            color: #311b92;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ff9800;
        }
        h3 {
            font-size: 1.4rem;
            color: #5c6bc0;
            margin: 1.5rem 0 0.75rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            hyphens: auto;
        }
        .highlight {
            background-color: #fffde7;
            padding: 1.5rem;
            border-left: 4px solid #ff9800;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .keyword {
            font-weight: bold;
            color: #d32f2f;
        }
        .featured-image {
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            max-width: 800px;
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.5rem;
            background-color: #f5f5f5;
            color: #666;
        }
        .search-box {
            margin-bottom: 2rem;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 2px solid #5c6bc0;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-box button {
            background-color: #5c6bc0;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-box button:hover {
            background-color: #3949ab;
        }
        .rating-section, .comment-section {
            background-color: #f3f4f9;
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 2rem;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            font-size: 1.5rem;
            color: #ffc107;
        }
        .rating-stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background-color: #4caf50;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
            align-self: flex-start;
        }
        .submit-btn:hover {
            background-color: #388e3c;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            font-size: 1.2rem;
            color: #1a237e;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eee;
        }
        .widget-list li {
            margin-bottom: 0.75rem;
            padding-left: 1rem;
            position: relative;
        }
        .widget-list li::before {
            content: '•';
            color: #ff9800;
            position: absolute;
            left: 0;
        }
        .widget-list a:hover {
            color: #1a237e;
            text-decoration: underline;
        }
        .web-links {
            background-color: #1a237e;
            color: #fff;
            padding: 2rem 0;
            margin-top: 2rem;
        }
        .web-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
        }
        .web-link {
            padding: 1rem;
            background-color: rgba(255,255,255,0.05);
            border-radius: 8px;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            color: #ffeb3b;
            font-weight: 600;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background-color: #0d1221;
            color: #b0b0b0;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .copyright {
            font-size: 0.9rem;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }
        .footer-links a:hover {
            color: #ff9800;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
        }
        @media (max-width: 576px) {
            .content, aside { padding: 1.5rem; }
            .search-box form { flex-direction: column; }
            .search-box input { border-radius: 8px; margin-bottom: 0.5rem; }
            .search-box button { border-radius: 8px; padding: 0.75rem; }
            .web-links .container { grid-template-columns: 1fr; }
        }
