        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-yellow: #FFCC00;
            --pacman-blue: #1A1A8C;
            --dark-bg: #0A0A2A;
            --light-bg: #F5F5FF;
            --accent-pink: #FF66B2;
            --text-light: #FFFFFF;
            --text-dark: #222244;
            --shadow: 0 8px 20px rgba(0, 0, 50, 0.15);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--pacman-blue) 100%);
            color: var(--text-light);
            padding: 1rem 2rem;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary-yellow);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
        }
        .logo i {
            color: var(--accent-pink);
            animation: spin 4s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 204, 0, 0.2);
            color: var(--primary-yellow);
        }
        .desktop-nav a:hover::after {
            content: '•';
            position: absolute;
            right: 0;
            color: var(--accent-pink);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--dark-bg);
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: var(--text-light);
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            background-color: var(--pacman-blue);
            padding-left: 1.5rem;
        }
        .breadcrumb {
            background-color: #eef;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid #ccd;
        }
        .breadcrumb a {
            color: var(--pacman-blue);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1.5rem;
        }
        .hero {
            background: linear-gradient(rgba(10, 10, 42, 0.9), rgba(26, 26, 140, 0.8)), url('https://images.unsplash.com/photo-1593305841991-05c297ba4575?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: var(--text-light);
            padding: 4rem 2rem;
            border-radius: 16px;
            text-align: center;
            margin-bottom: 3rem;
            box-shadow: var(--shadow);
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        .search-bar {
            display: flex;
            max-width: 600px;
            margin: 2rem auto;
        }
        .search-bar input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-bar button {
            background-color: var(--primary-yellow);
            color: var(--dark-bg);
            border: none;
            padding: 0 2rem;
            border-radius: 0 50px 50px 0;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-bar button:hover {
            background-color: #FFD700;
        }
        .content-section {
            margin-bottom: 4rem;
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            border-left: 6px solid var(--primary-yellow);
        }
        .content-section h2 {
            color: var(--pacman-blue);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px dotted var(--accent-pink);
            font-size: 2.2rem;
        }
        .content-section h3 {
            color: var(--dark-bg);
            margin: 1.8rem 0 1rem;
            font-size: 1.6rem;
        }
        .content-section p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .content-section img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2rem 0;
            border: 5px solid var(--light-bg);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }
        .content-section img:hover {
            transform: scale(1.02);
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.15);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid var(--primary-yellow);
            margin: 2rem 0;
        }
        .quote {
            font-style: italic;
            font-size: 1.3rem;
            color: var(--pacman-blue);
            text-align: center;
            padding: 2rem;
            margin: 2rem 0;
            background-color: #f0f0ff;
            border-radius: 10px;
            position: relative;
        }
        .quote::before, .quote::after {
            content: '"';
            font-size: 3rem;
            color: var(--accent-pink);
            position: absolute;
            opacity: 0.5;
        }
        .quote::before {
            top: 10px;
            left: 20px;
        }
        .quote::after {
            bottom: 10px;
            right: 20px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #ffffff, #e6e6ff);
            padding: 1.8rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 6px 12px rgba(0, 0, 50, 0.08);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 20px rgba(0, 0, 50, 0.15);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--primary-yellow);
            margin-bottom: 1rem;
        }
        .stat-card h4 {
            color: var(--pacman-blue);
            margin-bottom: 0.5rem;
        }
        .interactive-box {
            background-color: var(--dark-bg);
            color: white;
            padding: 2.5rem;
            border-radius: 15px;
            margin: 3rem 0;
            text-align: center;
        }
        .rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1.5rem 0;
            font-size: 2rem;
            cursor: pointer;
        }
        .rating i {
            color: #555;
            transition: var(--transition);
        }
        .rating i:hover,
        .rating i.active {
            color: var(--primary-yellow);
            transform: scale(1.2);
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            border-radius: 8px;
            border: 1px solid #ccc;
            font-size: 1rem;
        }
        .comment-form button {
            background-color: var(--accent-pink);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #ff3385;
        }
        .footer-links {
            background-color: var(--dark-bg);
            padding: 3rem 2rem;
            margin-top: 4rem;
        }
        .web-link {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.05);
            margin: 0.5rem;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            transition: var(--transition);
        }
        .web-link a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.95rem;
        }
        .web-link:hover {
            background-color: rgba(255, 204, 0, 0.2);
            transform: translateX(5px);
        }
        .web-link:hover a {
            color: var(--primary-yellow);
        }
        footer {
            background-color: #050518;
            color: #aaa;
            padding: 3rem 2rem;
            text-align: center;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: left;
        }
        .footer-section h4 {
            color: var(--primary-yellow);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-section a {
            color: #aaa;
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: var(--transition);
        }
        .footer-section a:hover {
            color: var(--text-light);
            padding-left: 5px;
        }
        .copyright {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #777;
        }
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .content-section {
                padding: 2rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                padding: 0.5rem 1rem;
            }
            .hero {
                padding: 3rem 1rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
