:root {
            --primary-color: #8B4513;
            --secondary-color: #D2691E;
            --accent-color: #FFD700;
            --text-color: #2F4F4F;
            --light-bg: #FFF8DC;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            color: var(--text-color);
            background-color: #f9f9f9;
            line-height: 1.7;
        }
        .logo-brand {
            font-family: 'Georgia', serif;
            font-weight: bold;
            color: var(--primary-color);
            font-size: 1.8rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 4rem 0;
            margin-bottom: 3rem;
            border-radius: 0 0 20px 20px;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 2.5rem;
            margin-bottom: 2rem;
        }
        h1, h2, h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        h1 {
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            border-left: 4px solid var(--secondary-color);
            padding-left: 1rem;
        }
        .key-feature {
            background: var(--light-bg);
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin: 1.5rem 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--accent-color) 0%, var(--accent-color) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.3em;
            background-position: 0 88%;
            font-weight: 600;
        }
        .feature-icon {
            color: var(--secondary-color);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        .content-paragraph {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        footer {
            background: var(--primary-color);
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
            }
            .content-section {
                padding: 1.5rem;
            }
            .logo-brand {
                font-size: 1.4rem;
            }
        }
