        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0c0c1d 0%, #1a1a3e 100%);
            padding-top: 80px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(15, 15, 40, 0.95);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: #00d9ff;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 0 10px #00d9ff;
        }
        .logo a:hover {
            color: #ffffff;
            text-shadow: 0 0 15px #00d9ff;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .desktop-nav a {
            color: #b0b0ff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background: rgba(0, 217, 255, 0.2);
            color: #ffffff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #00d9ff;
            cursor: pointer;
            background: none;
            border: none;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(15, 15, 40, 0.98);
            padding: 20px;
            flex-direction: column;
            gap: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #b0b0ff;
            text-decoration: none;
            font-size: 1.2rem;
            padding: 10px;
            border-left: 3px solid transparent;
            transition: all 0.3s;
        }
        .mobile-nav a:hover {
            border-left-color: #00d9ff;
            color: #ffffff;
            background: rgba(0, 217, 255, 0.1);
        }
        .breadcrumb {
            padding: 15px 0;
            color: #aaa;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #00d9ff;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            background: rgba(25, 25, 60, 0.8);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        article {
            max-width: 1000px;
            margin: 0 auto;
        }
        h1 {
            font-size: 2.8rem;
            color: #00d9ff;
            margin-bottom: 25px;
            text-align: center;
            text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
        }
        h2 {
            font-size: 2.2rem;
            color: #ffaa00;
            margin: 40px 0 20px;
            border-bottom: 2px solid #ffaa00;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.8rem;
            color: #66ff99;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 170, 0, 0.1);
            border-left: 5px solid #ffaa00;
            padding: 20px;
            margin: 30px 0;
            font-size: 1.3rem;
            font-weight: bold;
            color: #ffcc66;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 8px;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
            border: 2px solid #00d9ff;
            transition: transform 0.3s;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 1rem;
        }
        .search-box {
            background: rgba(30, 30, 70, 0.9);
            padding: 20px;
            border-radius: 10px;
            margin: 40px 0;
            text-align: center;
        }
        .search-box h3 {
            margin-top: 0;
        }
        .form-group {
            display: flex;
            max-width: 600px;
            margin: 20px auto;
        }
        .form-group input, .form-group textarea, .form-group select {
            flex: 1;
            padding: 15px;
            border: 2px solid #444;
            border-radius: 8px 0 0 8px;
            background: #111;
            color: #fff;
            font-size: 1.1rem;
        }
        .form-group button {
            padding: 15px 25px;
            background: linear-gradient(90deg, #00d9ff, #0088cc);
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        .form-group button:hover {
            background: linear-gradient(90deg, #00ffff, #00aadd);
        }
        .comment-section, .score-section {
            background: rgba(30, 30, 70, 0.9);
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
        }
        .form-group textarea {
            width: 100%;
            min-height: 150px;
            border-radius: 8px;
        }
        .rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating label:hover,
        .rating label:hover ~ label,
        .rating input:checked ~ label {
            color: #ffaa00;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 50px 0 30px;
        }
        .web-link {
            background: rgba(40, 40, 80, 0.7);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
        }
        .web-link a {
            color: #66ffcc;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }
        .web-link a:hover {
            color: #00ffaa;
            text-decoration: underline;
        }
        footer {
            background: rgba(10, 10, 30, 0.95);
            padding: 40px 0;
            text-align: center;
            border-top: 3px solid #00d9ff;
        }
        .copyright {
            color: #888;
            font-size: 1rem;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .form-group {
                flex-direction: column;
            }
            .form-group input, .form-group textarea, .form-group select, .form-group button {
                width: 100%;
                border-radius: 8px;
                margin-bottom: 10px;
            }
            .form-group button {
                border-radius: 8px;
            }
        }
        @media (max-width: 480px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            p {
                font-size: 1.1rem;
            }
        }
        a {
            transition: color 0.3s, background 0.3s;
        }
        button, .form-group button, .rating label {
            transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
