        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Nirmala UI', 'Arial', sans-serif;
        }
        :root {
            --primary: #FF6B6B;
            --secondary: #4ECDC4;
            --accent: #FFD166;
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --gray: #6C757D;
            --success: #06D6A0;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --border-radius: 12px;
        }
        body {
            background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: var(--primary);
            text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
        }
        nav ul {
            display: flex;
            gap: 25px;
            list-style: none;
        }
        nav a {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: var(--border-radius);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            color: var(--light);
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.05);
            padding: 12px 20px;
            margin-bottom: 30px;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--accent);
            text-decoration: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: var(--gray);
        }
        main {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 40px;
            margin: 30px auto;
            position: relative;
            overflow: hidden;
        }
        main::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
        }
        h1 {
            color: var(--dark);
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: center;
        }
        h2 {
            color: var(--primary);
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--accent);
        }
        h3 {
            color: var(--secondary);
            font-size: 1.5rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #444;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, #FFE8E8 0%, #E8F7F6 100%);
            border-left: 4px solid var(--primary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: var(--light);
            padding: 25px;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--dark);
            display: block;
        }
        .game-featured {
            text-align: center;
            margin: 40px 0;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.5s ease;
            border: 5px solid var(--accent);
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            color: var(--gray);
            font-style: italic;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .form-box {
            background: var(--light);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .form-box h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 10px 0;
            direction: ltr;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s ease;
            margin: 0;
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: var(--accent);
        }
        .btn {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: var(--border-radius);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 107, 107, 0.4);
        }
        .btn-block {
            width: 100%;
            justify-content: center;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 40px 0;
            padding: 30px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: var(--border-radius);
            border: 2px dashed var(--secondary);
        }
        .web-link {
            background: white;
            padding: 15px;
            border-radius: var(--border-radius);
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: var(--accent);
            transform: translateX(5px);
        }
        .web-link a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a::before {
            content: "🐍 ";
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.8rem; }
            .interactive-section { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--dark);
                padding: 20px;
                border-top: 2px solid var(--primary);
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            main {
                padding: 25px;
                margin: 20px 10px;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.5rem; }
            .btn { padding: 12px 20px; }
            .form-box { padding: 20px; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        .text-center { text-align: center; }
        .mb-20 { margin-bottom: 20px; }
        .mt-30 { margin-top: 30px; }
        .emoji { font-size: 1.2em; }
        .strong { font-weight: 800; color: var(--primary); }
        .note { background: #FFF9E6; padding: 15px; border-radius: var(--border-radius); border-left: 4px solid var(--accent); }
