:root {
            --primary-color: #8B4513;
            --secondary-color: #CD853F;
            --accent-color: #D2691E;
            --text-dark: #2C1810;
            --text-light: #F5F5DC;
            --bg-light: #FFF8DC;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            font-size: 2.2rem;
            color: var(--primary-color);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-custom {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 10px 15px !important;
        }
        .nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            border-radius: 5px;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(139, 69, 19, 0.8), rgba(205, 133, 63, 0.7)), url('https://via.placeholder.com/1200x600');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .section-title {
            color: var(--primary-color);
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 10px;
            margin-bottom: 25px;
            font-weight: 700;
        }
        .content-section {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        .highlight-text {
            background: linear-gradient(120deg, #FFD700 0%, #FFD700 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 700;
        }
        .game-feature {
            background: var(--bg-light);
            border-left: 5px solid var(--accent-color);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .img-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            margin: 25px 0;
            transition: transform 0.4s ease;
        }
        .img-container:hover {
            transform: scale(1.02);
        }
        .fact-box {
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
        }
        footer {
            background: linear-gradient(135deg, var(--primary-color), #5D4037);
            color: var(--text-light);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .logo-text {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 20px;
            }
        }
