:root {
            --primary-color: #2E8B57;
            --secondary-color: #FF6B35;
            --accent-color: #1E40AF;
            --text-color: #2D3748;
            --light-bg: #F7FAFC;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: var(--light-bg);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        h1, h2, h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.5rem;
            font-weight: 800;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--secondary-color);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--accent-color);
        }
        .keyword-highlight {
            background-color: rgba(255, 107, 53, 0.15);
            padding: 0.2rem 0.5rem;
            border-radius: 5px;
            font-weight: 600;
        }
        .btn-primary-custom {
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(46, 139, 87, 0.4);
        }
        .btn-secondary-custom {
            background: var(--secondary-color);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-secondary-custom:hover {
            background: #e55a2b;
            transform: translateY(-3px);
        }
        .game-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
            margin-bottom: 2rem;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag-badge {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            margin: 0.3rem;
            display: inline-block;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .tag-badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
            color: white;
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary-color);
        }
        .stat-label {
            font-size: 1rem;
            color: var(--text-color);
            font-weight: 500;
        }
        footer {
            background: linear-gradient(135deg, #2D3748, #4A5568);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        .footer-links a {
            color: #CBD5E0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
        }
        .content-highlight {
            background: linear-gradient(120deg, rgba(46, 139, 87, 0.1) 0%, transparent 50%);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
            border-left: 4px solid var(--primary-color);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2.5rem 0;
                border-radius: 0 0 20px 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
