:root {
            --primary-color: #8B4513;
            --secondary-color: #FFD700;
            --accent-color: #228B22;
            --text-color: #2F4F4F;
            --light-bg: #FFF8DC;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #f9f9f9;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
            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), var(--accent-color));
            color: white;
            padding: 4rem 0;
            margin-bottom: 2rem;
            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 {
            font-size: 2.5rem;
            border-bottom: 3px solid var(--secondary-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--accent-color);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--accent-color);
        }
        .highlight-text {
            background-color: var(--light-bg);
            border-left: 4px solid var(--secondary-color);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .btn-primary-custom {
            background: linear-gradient(45deg, var(--primary-color), #A0522D);
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(139, 69, 19, 0.4);
        }
        .btn-secondary-custom {
            background: linear-gradient(45deg, var(--accent-color), #32CD32);
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
        }
        .btn-secondary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(34, 139, 34, 0.4);
        }
        .game-image {
            border-radius: 12px;
            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);
        }
        .tag-badge {
            display: inline-block;
            background-color: var(--light-bg);
            color: var(--primary-color);
            padding: 0.5rem 1rem;
            margin: 0.3rem;
            border-radius: 50px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .tag-badge:hover {
            background-color: var(--secondary-color);
            color: var(--text-color);
            transform: translateY(-2px);
        }
        .stats-box {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            margin: 1rem 0;
            border-left: 4px solid var(--accent-color);
        }
        .footer {
            background-color: var(--primary-color);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2.5rem 0;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
