:root {
            --primary-color: #8e44ad;
            --secondary-color: #f39c12;
            --accent-color: #27ae60;
            --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: #ffffff;
        }
        .logo-text {
            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: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), #9b59b6);
            color: white;
            padding: 4rem 0;
            margin-bottom: 2rem;
            border-radius: 0 0 20px 20px;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        h1, h2, h3 {
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--secondary-color);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(243, 156, 18, 0.1);
            border-left: 4px solid var(--secondary-color);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 5px 5px 0;
        }
        .keyword {
            font-weight: bold;
            color: var(--primary-color);
        }
        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: #7d3c98;
            border-color: #7d3c98;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .btn-secondary-custom {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-secondary-custom:hover {
            background-color: #e67e22;
            border-color: #e67e22;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin-bottom: 1.5rem;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: var(--bg-light);
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--accent-color);
        }
        .tag {
            display: inline-block;
            background-color: #e8f4fc;
            color: #2980b9;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            margin: 0.3rem;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #d6eaf8;
            text-decoration: none;
            color: #2471a3;
            transform: translateY(-2px);
        }
        .game-type {
            display: inline-block;
            background-color: #eafaf1;
            color: var(--accent-color);
            padding: 0.4rem 1rem;
            border-radius: 5px;
            margin: 0.3rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .game-type:hover {
            background-color: #d5f5e3;
            text-decoration: none;
            color: #229954;
        }
        footer {
            background-color: var(--text-dark);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        .footer-link {
            color: #bdc3c7;
            transition: color 0.3s ease;
        }
        .footer-link:hover {
            color: white;
            text-decoration: none;
        }
        .rating-stars {
            color: var(--secondary-color);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .hero-section {
                padding: 2.5rem 0;
            }
        }
