:root {
            --primary-green: #2e8b57;
            --secondary-green: #3cb371;
            --accent-gold: #daa520;
            --light-beige: #f5f5dc;
            --dark-green: #006400;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            color: var(--primary-green);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            font-size: 1.8rem;
        }
        .nav-custom {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: white !important;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--accent-gold) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(46, 139, 87, 0.8), rgba(60, 179, 113, 0.8)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .section-padding {
            padding: 80px 0;
        }
        .content-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            padding: 30px;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
            border-left: 5px solid var(--primary-green);
        }
        .content-card:hover {
            transform: translateY(-5px);
        }
        h1, h2, h3 {
            color: var(--dark-green);
            margin-bottom: 20px;
        }
        h1 {
            font-size: 2.5rem;
            border-bottom: 3px solid var(--accent-gold);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            border-left: 4px solid var(--secondary-green);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--primary-green);
        }
        .keyword-highlight {
            background-color: rgba(46, 139, 87, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: bold;
        }
        .feature-icon {
            color: var(--primary-green);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 20px 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .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.2);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            background: var(--dark-green);
            transform: translateY(-5px);
        }
        footer {
            background: linear-gradient(135deg, var(--dark-green), #000);
            color: white;
            padding: 40px 0 20px;
        }
        .content-paragraph {
            margin-bottom: 25px;
            text-align: justify;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .section-padding {
                padding: 50px 0;
            }
        }
