:root {
            --primary-color: #2E8B57;
            --secondary-color: #FFD700;
            --accent-color: #8B4513;
            --text-dark: #2F4F4F;
            --text-light: #F5F5F5;
            --bg-gradient: linear-gradient(135deg, #E6F3E6 0%, #B8E6B8 100%);
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: var(--bg-gradient);
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            color: var(--primary-color);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            font-size: 1.8rem;
        }
        .nav-custom {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
        }
        .hero-section {
            background: linear-gradient(rgba(46, 139, 87, 0.8), rgba(139, 69, 19, 0.7)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            padding: 40px;
            margin: 30px 0;
        }
        h1, h2, h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.5rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        h2 {
            border-left: 5px solid var(--secondary-color);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            color: var(--accent-color);
            margin-top: 2rem;
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.2);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid var(--secondary-color);
            margin: 20px 0;
        }
        .game-feature {
            background: linear-gradient(135deg, #f8fffe 0%, #e6f7f4 100%);
            border-radius: 10px;
            padding: 25px;
            margin: 20px 0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e0f2e9;
        }
        .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(--primary-color);
            margin-bottom: 15px;
        }
        img {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            max-width: 100%;
            height: auto;
            margin: 25px 0;
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .nav-link {
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            color: var(--primary-color);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        footer {
            background-color: var(--text-dark);
            color: var(--text-light);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            h1 {
                font-size: 2rem;
            }
            .content-section {
                padding: 25px;
            }
        }
