:root {
            --primary-color: #d4af37;
            --secondary-color: #2e8b57;
            --accent-color: #8b4513;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
            --bg-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        .nav-link {
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        h1, h2, h3 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 0.5rem;
            font-size: 2.5rem;
        }
        h2 {
            font-size: 2rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--secondary-color);
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            padding: 1.5rem;
            border-left: 4px solid var(--primary-color);
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .game-feature {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .game-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .img-container {
            overflow: hidden;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .img-container img {
            transition: transform 0.5s ease;
            width: 100%;
        }
        .img-container:hover img {
            transform: scale(1.03);
        }
        .key-term {
            font-weight: 700;
            color: var(--secondary-color);
        }
        .quote {
            font-style: italic;
            padding: 1.5rem;
            background: rgba(46, 139, 87, 0.1);
            border-radius: 10px;
            margin: 2rem 0;
            border-left: 4px solid var(--secondary-color);
        }
        footer {
            background-color: var(--text-dark);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            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 3px 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);
            color: white;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
