:root {
            --primary-color: #ff6b35;
            --secondary-color: #f7931e;
            --accent-color: #8b4513;
            --text-dark: #2c1810;
            --text-light: #f8f9fa;
            --bg-light: #fff9f0;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 4rem 0;
            border-bottom-left-radius: 30% 20%;
            border-bottom-right-radius: 30% 20%;
        }
        .game-logo {
            font-family: 'Georgia', serif;
            font-weight: bold;
            font-size: 2.5rem;
            text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
        }
        .nav-custom {
            background-color: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        .content-section {
            padding: 3rem 0;
        }
        .feature-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .btn-game {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border: none;
            border-radius: 50px;
            padding: 0.8rem 2rem;
            font-weight: bold;
            color: white;
            transition: all 0.3s ease;
        }
        .btn-game:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255,107,53,0.4);
            color: white;
        }
        .tag {
            display: inline-block;
            background-color: #e9ecef;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            margin: 0.2rem;
            font-size: 0.85rem;
            transition: all 0.2s ease;
        }
        .tag:hover {
            background-color: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }
        .rating-stars {
            color: #ffc107;
        }
        .section-divider {
            height: 3px;
            background: linear-gradient(to right, transparent, var(--primary-color), transparent);
            margin: 3rem 0;
        }
        .mobile-nav-btn {
            display: none;
        }
        @media (max-width: 768px) {
            .game-logo {
                font-size: 1.8rem;
            }
            .hero-section {
                padding: 2rem 0;
                border-bottom-left-radius: 20% 10%;
                border-bottom-right-radius: 20% 10%;
            }
            .mobile-nav-btn {
                display: block;
            }
            .nav-menu {
                display: none;
            }
            .nav-menu.active {
                display: block;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                z-index: 1000;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }
        }
        footer {
            background-color: var(--text-dark);
            color: var(--text-light);
            padding: 3rem 0 1rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--secondary-color);
        }
        h1, h2, h3 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }
        h1 {
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 0.5rem;
        }
        .content-highlight {
            background: linear-gradient(120deg, rgba(255,107,53,0.1), transparent);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--primary-color);
            margin: 1.5rem 0;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .img-caption {
            font-style: italic;
            text-align: center;
            margin-top: 0.5rem;
            color: #666;
        }
