:root {
            --primary-green: #2E8B57;
            --secondary-green: #3CB371;
            --accent-gold: #FFD700;
            --dark-green: #228B22;
            --light-beige: #F5F5DC;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--light-beige);
            color: #333;
            line-height: 1.7;
        }
        .logo-text {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            color: var(--primary-green);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        .logo-text:hover {
            color: var(--accent-gold);
            transform: scale(1.05);
        }
        .navbar {
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 8px 15px !important;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        h1, h2, h3 {
            color: var(--primary-green);
            margin-bottom: 1.2rem;
        }
        h1 {
            border-bottom: 3px solid var(--accent-gold);
            padding-bottom: 10px;
            font-size: 2.5rem;
        }
        h2 {
            border-left: 5px solid var(--secondary-green);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            color: var(--dark-green);
            margin-top: 2rem;
        }
        .content-section {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            margin: 2rem 0;
            transition: all 0.4s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 25px rgba(0,0,0,0.2);
        }
        .highlight-box {
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            border-left: 5px solid var(--primary-green);
            padding: 1.5rem;
            border-radius: 5px;
            margin: 1.5rem 0;
        }
        .key-feature {
            background-color: #f1f8e9;
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
            border: 1px solid #c5e1a5;
        }
        .feature-icon {
            color: var(--primary-green);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        footer {
            background: linear-gradient(135deg, var(--dark-green), #1B5E20);
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-green);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            background: var(--accent-gold);
            color: #333;
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            .logo-text {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
