        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', Tahoma, sans-serif;
            line-height: 1.7; 
        }
        :root {
            --primary: #FF4500; 
            --secondary: #002B5B; 
            --accent: #10B981; 
            --light: #F9F9F9;
            --dark: #1A1A1A;
            --gray: #808080;
            --border-radius: 8px;
            --shadow: 0 2px 15px rgba(0,0,0,0.08);
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            padding: 0;
            margin: 0;
            scroll-behavior: smooth;
        }
        header {
            background-color: var(--secondary);
            color: white;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: var(--shadow);
            transition: padding 0.3s ease;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: 0.7px;
            text-transform: uppercase;
        }
        .logo span {
            color: var(--accent);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1280px;
            margin: 0 auto;
        }
        .main-nav {
            display: flex;
            gap: 2.2rem;
            align-items: center;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        .main-nav a:hover {
            color: var(--primary);
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .btn {
            padding: 0.7rem 1.4rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            font-size: 1rem;
            border: none;
            cursor: pointer;
        }
        .btn-primary {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 4px 0 #CC3700;
        }
        .btn-primary:hover {
            background-color: #E63E00;
            transform: translateY(2px);
            box-shadow: 0 2px 0 #CC3700;
        }
        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid var(--accent);
        }
        .btn-secondary:hover {
            background-color: var(--accent);
            color: var(--secondary);
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: white;
        }
        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 75px;
                left: -100%;
                flex-direction: column;
                background-color: var(--secondary);
                width: 100%;
                height: calc(100vh - 75px);
                padding: 2.5rem 2rem;
                transition: left 0.4s ease-in-out;
                z-index: 998;
                gap: 1.5rem;
            }
            .main-nav.active {
                left: 0;
            }
            .hamburger {
                display: block;
            }
            .btn-container {
                display: flex;
                flex-direction: column;
                gap: 1.2rem;
                margin-top: 2rem;
                width: 100%;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
        }
        main {
            max-width: 1280px;
            margin: 2.5rem auto;
            padding: 0 2rem;
        }
        .page-title {
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 2rem;
            border-bottom: 4px solid var(--primary);
            padding-bottom: 0.8rem;
            font-weight: 700;
        }
        .intro-section {
            background-color: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 2.5rem;
            border-top: 5px solid var(--primary);
        }
        .section-title {
            font-size: 2rem;
            color: var(--secondary);
            margin: 2.5rem 0 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-weight: 700;
        }
        .section-title::before {
            content: "";
            width: 10px;
            height: 35px;
            background-color: var(--primary);
            border-radius: 4px;
        }
        h3.section-title {
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
            color: #333;
        }
        strong {
            color: var(--secondary);
            font-weight: 700;
        }
        ul, ol {
            margin: 1.5rem 0 2rem 2.5rem;
        }
        li {
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }
        .feature-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            border-left: 5px solid var(--accent);
            transition: transform 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-5px);
        }
        .feature-title {
            font-size: 1.4rem;
            color: var(--secondary);
            margin-bottom: 1rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .stadium-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .stadium-card {
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
        }
        .stadium-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.12);
        }
        .stadium-img {
            width: 100%;
            height: 200px;
            background-color: var(--gray);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            position: relative;
        }
        .stadium-img::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.3);
        }
        .stadium-img span {
            position: relative;
            z-index: 1;
        }
        .stadium-info {
            padding: 1.5rem;
        }
        .stadium-name {
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }
        .rating-box {
            background-color: var(--accent);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            display: inline-block;
            font-weight: 700;
            margin: 1.5rem 0;
            font-size: 1.1rem;
            box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
        }
        .action-buttons {
            display: flex;
            gap: 1.5rem;
            margin: 3rem 0;
            flex-wrap: wrap;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        th, td {
            padding: 1.2rem;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        th {
            background-color: var(--secondary);
            color: white;
            font-weight: 700;
            font-size: 1.05rem;
        }
        tr:hover {
            background-color: #f8f9fa;
        }
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 4rem 2rem 2rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }
        .footer-section h3 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            padding-bottom: 0.8rem;
            border-bottom: 3px solid var(--accent);
            display: inline-block;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 1rem;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 8px;
        }
        .game-categories, .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .category-link, .tag-link {
            background-color: #0A1A3A;
            color: white;
            padding: 0.7rem 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: #0A1A3A;
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 2.5rem 0;
            border-left: 5px solid var(--accent);
        }
        .recommendation h4 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            font-weight: 700;
        }
        .copyright {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid #334155;
            color: #ccc;
            font-size: 1rem;
            line-height: 1.8;
        }
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.7rem;
            }
            .stadium-grid {
                grid-template-columns: 1fr;
            }
            main {
                padding: 0 1.5rem;
            }
            .intro-section {
                padding: 2rem 1.5rem;
            }
            p {
                font-size: 1rem;
            }
            .rating-box {
                font-size: 1rem;
                padding: 0.7rem 1.2rem;
            }
        }
        .highlight {
            background-color: #FFF3E0;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .icon {
            margin-right: 0.7rem;
        }
        .space-y-1 > * + * {
            margin-top: 0.5rem;
        }
        .space-y-2 > * + * {
            margin-top: 1rem;
        }
        .mb-8 {
            margin-bottom: 2.5rem;
        }
        .mt-4 {
            margin-top: 1.5rem;
        }
        .lazy-load {
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        .lazy-load.loaded {
            opacity: 1;
        }
        html {
            scroll-behavior: smooth;
        }
