        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.7;
        }
        :root {
            --primary: #8B4513; 
            --secondary: #1E3A8A; 
            --accent: #FFD700; 
            --text-dark: #18181B;
            --text-light: #F8FAFC;
            --bg-light: #F5F5F5;
            --bg-dark: #18181B;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
            --border-radius: 8px;
        }
        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            padding-bottom: 60px;
            scroll-behavior: smooth;
        }
        header {
            background-color: var(--secondary);
            color: var(--text-light);
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .container {
            width: 92%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .logo span {
            color: var(--primary);
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.2rem;
        }
        .nav-links li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links li a:hover {
            color: var(--accent);
        }
        .nav-links li a.active {
            color: var(--primary);
        }
        .nav-links li a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary);
            border-radius: 3px;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
            z-index: 1001;
        }
        .hamburger div {
            width: 32px;
            height: 4px;
            background-color: var(--text-light);
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .hamburger.active div:nth-child(1) {
            transform: translateY(10px) rotate(45deg);
        }
        .hamburger.active div:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active div:nth-child(3) {
            transform: translateY(-10px) rotate(-45deg);
        }
        .btn {
            display: inline-block;
            padding: 0.9rem 2rem;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            text-align: center;
        }
        .btn-primary {
            background-color: var(--primary);
            color: var(--text-light);
        }
        .btn-primary:hover {
            background-color: #704010;
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(139, 69, 19, 0.25);
        }
        .btn-secondary {
            background-color: var(--accent);
            color: var(--text-dark);
            margin-left: 12px;
        }
        .btn-secondary:hover {
            background-color: #E6C200;
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(255, 215, 0, 0.25);
        }
        main {
            padding: 2.5rem 0;
        }
        .page-title {
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 2rem;
            border-bottom: 4px solid var(--primary);
            padding-bottom: 0.8rem;
            text-transform: capitalize;
            letter-spacing: 0.8px;
        }
        .intro-section {
            background-color: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 2.5rem;
        }
        .section-title {
            font-size: 2rem;
            color: var(--primary);
            margin: 2.5rem 0 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .subsection-title {
            font-size: 1.5rem;
            color: var(--secondary);
            margin: 1.8rem 0 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            text-align: justify;
            color: #1E293B;
        }
        ul, ol {
            margin: 1.2rem 0 1.8rem 2.5rem;
        }
        li {
            margin-bottom: 0.8rem;
            font-size: 1.08rem;
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.15);
            padding: 1rem;
            border-left: 5px solid var(--primary);
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .highlight strong {
            color: var(--secondary);
            font-size: 1.15rem;
        }
        .img-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border: 2px solid #E2E8F0;
        }
        .img-caption {
            font-size: 1rem;
            color: #475569;
            margin-top: 0.8rem;
            font-style: italic;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .stats-table th {
            background-color: var(--secondary);
            color: var(--text-light);
            padding: 1.2rem;
            text-align: left;
            font-size: 1.1rem;
        }
        .stats-table td {
            padding: 1.2rem;
            border-bottom: 1px solid #E2E8F0;
            font-size: 1.05rem;
        }
        .stats-table tr:hover {
            background-color: #F8FAFC;
            transform: scale(1.005);
            transition: transform 0.2s ease;
        }
        .cta-section {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: var(--text-light);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            margin: 2.5rem 0;
            text-align: center;
            box-shadow: var(--shadow);
        }
        .cta-title {
            font-size: 2rem;
            margin-bottom: 1.2rem;
        }
        .cta-buttons {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        footer {
            background-color: var(--bg-dark);
            color: var(--text-light);
            padding: 3.5rem 0 2rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-column h3 {
            color: var(--accent);
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 1rem;
        }
        .footer-links li a {
            color: #CBD5E1;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-links li a:hover {
            color: var(--primary);
            padding-left: 8px;
        }
        .game-categories, .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1.2rem;
        }
        .category-link, .tag-link {
            background-color: #1E293B;
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .category-link:hover, .tag-link:hover {
            background-color: var(--primary);
            transform: translateY(-2px);
        }
        .recommendation {
            background-color: #1E293B;
            padding: 2rem;
            border-radius: var(--border-radius);
            margin-top: 1.5rem;
            border: 1px solid #334155;
        }
        .recommendation h4 {
            color: var(--accent);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2.5rem;
            border-top: 1px solid #334155;
            color: #94A3B8;
            font-size: 1rem;
            line-height: 1.8;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-links {
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                background-color: var(--secondary);
                flex-direction: column;
                padding: 8rem 3rem;
                gap: 2rem;
                display: none;
                width: 80%;
                max-width: 350px;
                box-shadow: -5px 0 15px rgba(0,0,0,0.2);
                z-index: 1000;
            }
            .nav-links.active {
                display: flex;
            }
            .page-title {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.7rem;
            }
            .subsection-title {
                font-size: 1.3rem;
            }
            .header-content {
                justify-content: space-between;
            }
            .btn-group {
                margin-top: 1.5rem;
                width: 100%;
                display: flex;
                justify-content: center;
            }
            .intro-section {
                padding: 1.8rem;
            }
            .btn {
                padding: 0.8rem 1.8rem;
                font-size: 1rem;
            }
        }
        @media (max-width: 480px) {
            .cta-buttons {
                flex-direction: column;
                gap: 15px;
            }
            .btn-secondary {
                margin-left: 0;
                margin-top: 12px;
            }
            .page-title {
                font-size: 1.9rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .container {
                width: 95%;
                padding: 0 15px;
            }
            p {
                font-size: 1rem;
            }
        }
        .text-bold {
            font-weight: 700;
        }
        .text-primary {
            color: var(--primary);
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .center {
            text-align: center;
        }
        img {
            loading: lazy;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--secondary);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }
