        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0a12;
            color: #e0e0f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #7cb8ff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffcc00;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .flex {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .grid {
            display: grid;
            gap: 30px;
        }
        header {
            background: linear-gradient(135deg, #12122e 0%, #1a1a3a 100%);
            padding: 1.5rem 0;
            border-bottom: 2px solid #2a2a5a;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ffcc00, #7cb8ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background-color: rgba(124, 184, 255, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #7cb8ff;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            width: 100%;
            background-color: #1a1a3a;
            margin-top: 1rem;
            border-radius: 8px;
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.5s ease-out;
        }
        .nav-mobile.active {
            display: flex;
            max-height: 500px;
            transition: max-height 0.5s ease-in;
        }
        .nav-mobile a {
            padding: 1rem 1.5rem;
            border-bottom: 1px solid #2a2a5a;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a:not(:last-child)::after {
            content: " > ";
            margin: 0 8px;
            color: #7cb8ff;
        }
        main {
            padding: 3rem 0;
            min-height: 80vh;
        }
        .content-grid {
            grid-template-columns: 1fr 300px;
        }
        article {
            background: rgba(26, 26, 58, 0.7);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid #3a3a6a;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        aside {
            background: rgba(26, 26, 58, 0.7);
            border-radius: 15px;
            padding: 1.8rem;
            border: 1px solid #3a3a6a;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #ffcc00;
            line-height: 1.2;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            color: #7cb8ff;
            border-left: 5px solid #ffcc00;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            color: #e0e0f0;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.1);
            border-left: 4px solid #ffcc00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .term {
            font-weight: bold;
            color: #ffcc00;
            font-style: italic;
        }
        emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .search-box, .comment-box, .rating-box {
            background: rgba(18, 18, 46, 0.9);
            border-radius: 10px;
            padding: 1.8rem;
            margin-bottom: 2rem;
            border: 1px solid #4a4a8a;
        }
        .search-box h3, .comment-box h3, .rating-box h3 {
            margin-top: 0;
            color: #ffcc00;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #4a4a8a;
            background-color: #1a1a3a;
            color: #e0e0f0;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #7cb8ff;
            box-shadow: 0 0 8px rgba(124, 184, 255, 0.5);
        }
        button {
            background: linear-gradient(90deg, #2a5caa, #3a7bd5);
            color: white;
            border: none;
            padding: 14px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        button:hover {
            background: linear-gradient(90deg, #3a7bd5, #4a9aff);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(58, 123, 213, 0.4);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 10px 0;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .footer-links {
            background: #12122e;
            padding: 3rem 0;
            border-top: 2px solid #2a2a5a;
            border-bottom: 2px solid #2a2a5a;
        }
        .web-link {
            display: inline-block;
            margin: 0.8rem 1.5rem;
            padding: 0.8rem 1.5rem;
            background: rgba(42, 42, 90, 0.6);
            border-radius: 50px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(124, 184, 255, 0.2);
            transform: scale(1.05);
        }
        footer {
            text-align: center;
            padding: 2rem;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .nav-mobile {
                display: flex;
            }
            article {
                padding: 1.8rem;
            }
            .footer-links {
                text-align: center;
            }
            .web-link {
                margin: 0.5rem;
                padding: 0.6rem 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            button {
                padding: 12px 16px;
            }
        }
