:root {
            --primary-color: #8B4513;
            --secondary-color: #FFD700;
            --accent-color: #228B22;
            --text-dark: #2F4F4F;
            --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;
            color: var(--primary-color);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-size: 2.2rem;
        }
        .nav-custom {
            background: linear-gradient(135deg, var(--primary-color), #A0522D);
            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 {
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        h1, h2, h3 {
            color: var(--primary-color);
            margin-bottom: 1.2rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--secondary-color);
            padding-bottom: 0.5rem;
            text-align: center;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 2.5rem;
            padding-left: 15px;
            border-left: 5px solid var(--accent-color);
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2rem;
            color: var(--accent-color);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.2);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid var(--secondary-color);
            margin: 20px 0;
        }
        .keyword {
            font-weight: bold;
            color: var(--primary-color);
        }
        .game-image {
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.4s ease;
            margin: 25px auto;
            display: block;
            max-width: 100%;
            height: auto;
        }
        .game-image:hover {
            transform: scale(1.03);
        }
        .section-divider {
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
            margin: 40px 0;
            border-radius: 3px;
        }
        .feature-list {
            list-style-type: none;
            padding-left: 0;
        }
        .feature-list li {
            padding: 12px 0;
            border-bottom: 1px dashed #ddd;
            position: relative;
            padding-left: 35px;
        }
        .feature-list li:before {
            content: "✓";
            color: var(--accent-color);
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 1.4rem;
        }
        .quote-box {
            background: linear-gradient(135deg, #fdfbfb, #ebedee);
            border-left: 5px solid var(--primary-color);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        footer {
            background: linear-gradient(135deg, var(--primary-color), #2F4F4F);
            color: var(--text-light);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: 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 4px 10px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            background-color: var(--accent-color);
            transform: translateY(-5px);
            color: white;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .logo-text {
                font-size: 1.8rem;
            }
        }
