* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #0f4c81;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffdd59;
            text-decoration: none;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
            padding: 5px 0;
            position: relative;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffdd59;
            transition: width 0.3s;
        }
        nav ul li a:hover {
            color: #ffdd59;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #0f4c81;
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #0f4c81;
            font-size: 2rem;
            margin: 40px 0 20px;
            border-bottom: 3px solid #ff9f1c;
            padding-bottom: 10px;
            position: relative;
            padding-left: 10px;
        }
        h2:before {
            content: '⚽';
            margin-right: 10px;
        }
        h3 {
            color: #0f4c81;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 4px solid #2ec4b6;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #e71d36;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px 10px 0 0;
        }
        .image-caption {
            background-color: white;
            padding: 15px;
            font-style: italic;
            color: #636e72;
        }
        .button-container {
            text-align: center;
            margin: 40px 0;
            padding: 20px;
            background-color: rgba(15, 76, 129, 0.05);
            border-radius: 10px;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            margin: 0 10px 15px;
            background-color: #e71d36;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.2rem;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(231, 29, 54, 0.3);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #c3112d;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(231, 29, 54, 0.4);
        }
        .btn-secondary {
            background-color: #0f4c81;
            box-shadow: 0 4px 6px rgba(15, 76, 129, 0.3);
        }
        .btn-secondary:hover {
            background-color: #0a3d62;
            box-shadow: 0 6px 8px rgba(15, 76, 129, 0.4);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-top: 5px solid #2ec4b6;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 15px;
            background-color: #f8f9fa;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: bold;
            color: #27ae60;
            margin-bottom: 10px;
        }
        .stat-label {
            color: #636e72;
            font-weight: 500;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-left: 5px solid #3498db;
            transition: box-shadow 0.3s;
        }
        .review-container:hover {
            box-shadow: 0 6px 15px rgba(0,0,0,0.12);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f1f1f1;
        }
        .reviewer {
            font-weight: bold;
            color: #0f4c81;
            display: flex;
            align-items: center;
        }
        .reviewer:before {
            content: '👤';
            margin-right: 8px;
        }
        .rating {
            color: #ffb142;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        .rating:before {
            content: '⭐';
            margin-right: 5px;
        }
        .tag-container {
            margin: 40px 0;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .tag {
            display: inline-block;
            background-color: #e8f4f8;
            color: #0f4c81;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 0 10px 10px 0;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 500;
        }
        .tag:hover {
            background-color: #b2e0ea;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 30px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 10px;
            text-decoration: none;
            color: #0f4c81;
            font-weight: bold;
            transition: color 0.3s;
            position: relative;
            padding: 5px 0;
        }
        .game-type:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #0f4c81;
            transition: width 0.3s;
        }
        .game-type:hover {
            color: #e71d36;
        }
        .game-type:hover:after {
            width: 100%;
        }
        footer {
            background-color: #1e272e;
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #ffdd59;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255,221,89,0.3);
        }
        .footer-section p {
            color: #dfe6e9;
            margin-bottom: 10px;
        }
        .footer-section a {
            color: #dfe6e9;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-section a:hover {
            color: #ffdd59;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #485460;
            margin-top: 20px;
            color: #b2bec3;
            grid-column: 1 / -1;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                margin-top: 15px;
                width: 100%;
            }
            nav ul {
                flex-direction: column;
                display: none;
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
                text-align: left;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                display: block;
                margin: 10px auto;
                width: 90%;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
