:root {
            --primary-yellow: #FFCC00;
            --pacman-blue: #0000AA;
            --ghost-pink: #FFB8FF;
            --ghost-red: #FF5555;
            --ghost-cyan: #55FFFF;
            --ghost-orange: #FFAA00;
            --text-dark: #222222;
            --text-light: #F5F5F5;
            --bg-light: #FAFAFA;
            --bg-dark: #0A0A2A;
            --border-radius: 12px;
            --shadow: 0 6px 15px rgba(0, 0, 50, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: linear-gradient(135deg, var(--bg-light) 0%, #e6e9ff 100%);
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--pacman-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--ghost-red);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: var(--bg-dark);
            color: var(--text-light);
            padding: 1.2rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary-yellow) 30%, var(--ghost-red) 70%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--primary-yellow);
            animation: spin 5s 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);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
        }
        .desktop-nav a:hover {
            background: var(--primary-yellow);
            color: var(--bg-dark);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--primary-yellow);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            width: 100%;
            background: var(--bg-dark);
            margin-top: 1rem;
            border-top: 2px solid var(--primary-yellow);
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.5s ease;
        }
        .mobile-nav.active {
            display: block;
            max-height: 500px;
        }
        .mobile-nav ul {
            list-style: none;
            padding: 1rem;
        }
        .mobile-nav li {
            margin: 1rem 0;
        }
        .mobile-nav a {
            color: var(--text-light);
            display: block;
            padding: 0.8rem;
            border-radius: var(--border-radius);
        }
        .mobile-nav a:hover {
            background: var(--pacman-blue);
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #fff;
            border-bottom: 1px solid #eee;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            color: #888;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        article {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 3rem;
            margin-bottom: 3rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--bg-dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 8px solid var(--primary-yellow);
            padding-left: 1.5rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--pacman-blue);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px dashed var(--primary-yellow);
        }
        h3 {
            font-size: 1.5rem;
            color: var(--ghost-red);
            margin: 1.8rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        strong {
            color: var(--pacman-blue);
            font-weight: 800;
        }
        .highlight {
            background: linear-gradient(120deg, var(--primary-yellow) 20%, transparent 30%);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
        }
        .featured-image {
            width: 100%;
            max-width: 900px;
            margin: 2.5rem auto;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border: 5px solid var(--primary-yellow);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .interactive-section {
            background: linear-gradient(145deg, #f0f4ff, #ffffff);
            border: 2px solid var(--pacman-blue);
            border-radius: var(--border-radius);
            padding: 2rem;
            margin: 3rem 0;
        }
        .interactive-section h3 {
            margin-top: 0;
        }
        form {
            display: grid;
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--pacman-blue);
        }
        input, textarea, select {
            padding: 0.9rem 1.2rem;
            border: 2px solid #ccc;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-yellow);
            box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.3);
        }
        button {
            background: linear-gradient(90deg, var(--primary-yellow), var(--ghost-orange));
            color: var(--bg-dark);
            border: none;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            align-self: start;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 204, 0, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 5px;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--primary-yellow);
        }
        .quote {
            border-left: 6px solid var(--ghost-cyan);
            background: #f8fdff;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            font-style: italic;
        }
        .quote::before {
            content: '\201C';
            font-size: 4rem;
            color: var(--ghost-cyan);
            line-height: 1;
            margin-right: 10px;
            vertical-align: -0.4em;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 1.8rem;
            box-shadow: var(--shadow);
            text-align: center;
            border-top: 6px solid var(--primary-yellow);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-10px);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--pacman-blue);
            margin-bottom: 1rem;
        }
        .stat-card h4 {
            font-size: 2.2rem;
            color: var(--ghost-red);
            margin: 0.5rem 0;
        }
        .footer-links {
            background: var(--bg-dark);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            border: 1px solid rgba(255,204,0,0.2);
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255,204,0,0.1);
            border-color: var(--primary-yellow);
        }
        .web-link a {
            color: var(--text-light);
            font-weight: 600;
            display: block;
            margin-bottom: 0.8rem;
        }
        .web-link p {
            color: #aaa;
            font-size: 0.95rem;
            margin: 0;
            text-align: left;
        }
        footer {
            background: #050515;
            color: var(--text-light);
            padding: 2.5rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            color: #aaa;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .logo { font-size: 1.8rem; }
            h1 { font-size: 2rem; }
            .interactive-section { padding: 1.5rem; }
            .stats-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            article { padding: 1.5rem; }
            h1 { font-size: 1.7rem; padding-left: 1rem; }
            .breadcrumb li { font-size: 0.85rem; }
            button { width: 100%; }
        }
