:root {
            --primary-green: #2e8b57;
            --secondary-green: #3cb371;
            --accent-gold: #ffd700;
            --dark-green: #228b22;
            --light-beige: #f5f5dc;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--light-beige) 0%, #e8f5e8 100%);
            color: #333;
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-green) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .nav-link {
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-green) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(46, 139, 87, 0.9), rgba(46, 139, 87, 0.7)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
            border-radius: 0 0 30px 30px;
            margin-bottom: 40px;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        h1, h2, h3 {
            color: var(--dark-green);
            margin-bottom: 25px;
        }
        h1 {
            font-size: 2.8rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        h2 {
            border-left: 5px solid var(--accent-gold);
            padding-left: 15px;
            margin-top: 40px;
        }
        .feature-icon {
            color: var(--primary-green);
            font-size: 2rem;
            margin-right: 15px;
        }
        .game-image {
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            transition: transform 0.4s ease;
            margin: 25px 0;
        }
        .game-image:hover {
            transform: scale(1.03);
        }
        .key-feature {
            background: linear-gradient(135deg, #f8fff8, #e8f5e8);
            border-radius: 10px;
            padding: 20px;
            margin: 15px 0;
            border-left: 4px solid var(--secondary-green);
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--accent-gold) 0%, var(--accent-gold) 100%);
            background-repeat: no-repeat;
            background-size: 100% 40%;
            background-position: 0 90%;
            font-weight: 700;
        }
        .fact-box {
            background: var(--primary-green);
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
        }
        footer {
            background: var(--dark-green);
            color: white;
            padding: 40px 0;
            margin-top: 50px;
        }
        .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 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            background: var(--secondary-green);
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            .content-section {
                padding: 25px;
            }
        }
