:root {
            --primary-color: #2c5530;
            --secondary-color: #f39c12;
            --accent-color: #e74c3c;
            --text-color: #333;
            --light-bg: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #fff;
        }
        .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: color 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .section-title {
            position: relative;
            margin-bottom: 2rem;
            padding-bottom: 0.5rem;
            color: var(--primary-color);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        .content-section {
            padding: 60px 0;
        }
        .content-section:nth-child(even) {
            background-color: var(--light-bg);
        }
        .game-feature {
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .game-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background-color: #234126;
            border-color: #234126;
            transform: scale(1.05);
        }
        .btn-secondary-custom {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-secondary-custom:hover {
            background-color: #e67e22;
            border-color: #e67e22;
            transform: scale(1.05);
        }
        .game-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 1.5rem;
        }
        .game-image img {
            transition: transform 0.5s;
        }
        .game-image:hover img {
            transform: scale(1.03);
        }
        .tag {
            display: inline-block;
            background-color: #e9ecef;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.85rem;
            transition: all 0.3s;
        }
        .tag:hover {
            background-color: var(--secondary-color);
            color: white;
            text-decoration: none;
        }
        .stats-box {
            text-align: center;
            padding: 20px;
            border-radius: 8px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .stats-label {
            font-size: 1rem;
            color: #6c757d;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 60px 0 20px;
        }
        .footer-links h5 {
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            margin-bottom: 0.5rem;
        }
        .footer-links a:hover {
            color: var(--secondary-color);
        }
        .copyright {
            border-top: 1px solid #444;
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .content-section {
                padding: 40px 0;
            }
        }
