        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        }
        body {
            line-height: 1.8;
            color: #2d2d2d;
            background-color: #f5f5f0;
            padding-bottom: 60px;
            overflow-x: hidden;
        }
        :root {
            --primary: #0066cc;
            --secondary: #1a1a1a;
            --accent: #ffcc00;
            --light: #f8f9fa;
            --dark: #212529;
            --success: #28a745;
            --danger: #dc3545;
            --warning: #ffc107;
            --info: #17a2b8;
            --border: #dee2e6;
        }
        .container {
            width: 92%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: var(--secondary);
            color: white;
            padding: 16px 0;
            box-shadow: 0 2px 12px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 9999;
            transition: background-color 0.3s ease;
        }
        header:hover {
            background-color: #121212;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-family: 'Arial Black', Gadget, sans-serif;
        }
        .logo span {
            color: white;
            font-weight: 400;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 1.05rem;
            position: relative;
            padding-bottom: 3px;
        }
        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        nav a:hover {
            color: var(--accent);
        }
        nav a:hover::after {
            width: 100%;
        }
        .nav-buttons {
            display: flex;
            gap: 18px;
            align-items: center;
        }
        .btn {
            padding: 11px 24px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            text-align: center;
            display: inline-block;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        .btn-download {
            background-color: var(--primary);
            color: white;
        }
        .btn-download:hover {
            background-color: #0052a3;
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(0,82,163,0.3);
        }
        .btn-login {
            background-color: var(--accent);
            color: var(--dark);
        }
        .btn-login:hover {
            background-color: #e6b800;
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(230,184,0,0.3);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
            background: none;
            border: none;
        }
        .hero {
            background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.92)), url('https://host.com/images/fifa-heroic-ruler-hero.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 100px 0;
            text-align: center;
            border-radius: 0 0 30px 30px;
            margin-bottom: 50px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://host.com/images/football-pattern.png') repeat;
            opacity: 0.05;
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: var(--accent);
            text-shadow: 0 3px 6px rgba(0,0,0,0.3);
            font-family: 'Arial Black', Gadget, sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 900px;
            margin: 0 auto 40px;
            opacity: 0.95;
            line-height: 1.9;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        .hero .btn {
            padding: 14px 30px;
            font-size: 1.1rem;
        }
        .section {
            margin-bottom: 70px;
            background: white;
            border-radius: 18px;
            padding: 40px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .section:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.1);
        }
        .section-title {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 30px;
            padding-bottom: 12px;
            border-bottom: 4px solid var(--accent);
            display: inline-block;
            font-family: 'Arial Bold', Gadget, sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .section-subtitle {
            font-size: 1.6rem;
            color: var(--secondary);
            margin: 35px 0 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-subtitle::before {
            content: '⚽';
            font-size: 1.8rem;
        }
        .section-intro {
            font-size: 1.15rem;
            color: #333;
            line-height: 1.9;
            margin-bottom: 30px;
            font-weight: 500;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.85;
            color: #333;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.15);
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: 600;
            color: #b38600;
        }
        .important {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.15rem;
        }
        .quote {
            font-style: italic;
            border-left: 4px solid var(--accent);
            padding: 15px 20px;
            margin: 30px 0;
            background-color: #f9f9f0;
            border-radius: 0 8px 8px 0;
            color: #444;
            font-size: 1.1rem;
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 10px;
            font-weight: 600;
            color: var(--secondary);
            font-style: normal;
        }
        ul, ol {
            margin-left: 35px;
            margin-bottom: 30px;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 15px;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
        }
        li strong {
            color: var(--primary);
        }
        .image-container {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin: 40px 0;
            justify-content: center;
        }
        .game-image {
            width: 100%;
            max-width: 600px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.4s ease;
            object-fit: cover;
            height: auto;
            border: 4px solid #f0f0f0;
        }
        .game-image:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .image-caption {
            text-align: center;
            font-size: 0.95rem;
            color: #666;
            margin-top: 10px;
            font-style: italic;
        }
        .game-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            font-size: 1.05rem;
        }
        .game-table th, .game-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 2px solid var(--border);
        }
        .game-table th {
            background-color: var(--secondary);
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }
        .game-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .game-table tr:hover {
            background-color: #f0f8ff;
            transform: scale(1.01);
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .game-table td:first-child {
            font-weight: 600;
            color: var(--primary);
        }
        .tabs {
            display: flex;
            gap: 12px;
            margin-bottom: 35px;
            border-bottom: 2px solid var(--border);
            padding-bottom: 10px;
            flex-wrap: wrap;
        }
        .tab {
            padding: 12px 25px;
            background-color: var(--light);
            border: none;
            border-radius: 8px 8px 0 0;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.05rem;
            color: var(--secondary);
        }
        .tab.active {
            background-color: var(--primary);
            color: white;
        }
        .tab:hover:not(.active) {
            background-color: #e9ecef;
            color: var(--primary);
        }
        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        .tab-content.active {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 18px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border: 1px solid #f0f0f0;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.12);
        }
        .card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card:hover .card-img {
            transform: scale(1.05);
        }
        .card-content {
            padding: 25px;
        }
        .card-title {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 15px;
            font-weight: 700;
        }
        .card-description {
            font-size: 1.05rem;
            color: #444;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        .card-features {
            margin-left: 20px;
        }
        .card-features li {
            font-size: 1rem;
            margin-bottom: 8px;
        }
        .badge {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-right: 8px;
            margin-bottom: 10px;
        }
        .badge-primary {
            background-color: #e6f0ff;
            color: var(--primary);
        }
        .badge-success {
            background-color: #e6ffe6;
            color: var(--success);
        }
        .badge-warning {
            background-color: #fff9e6;
            color: #ff9800;
        }
        .cta-box {
            background: linear-gradient(135deg, var(--primary), #004c99);
            color: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            margin: 50px 0;
            box-shadow: 0 8px 25px rgba(0,102,204,0.2);
        }
        .cta-box h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        .cta-box p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: white;
            opacity: 0.9;
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 80px 0 40px;
            border-radius: 30px 30px 0 0;
            margin-top: 80px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--accent);
            position: relative;
            padding-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary);
        }
        .footer-links {
            list-style: none;
            margin-left: 0;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-links a::before {
            content: '⚽';
            font-size: 0.8rem;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 10px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }
        .tag {
            background-color: #333;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag a {
            color: white;
            text-decoration: none;
        }
        .tag:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        .recommendation {
            background-color: rgba(255, 204, 0, 0.1);
            border-left: 5px solid var(--accent);
            padding: 25px;
            margin: 40px 0;
            border-radius: 0 10px 10px 0;
        }
        .recommendation h4 {
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .recommendation h4::before {
            content: '🏆';
        }
        .recommendation p {
            font-size: 1.05rem;
            color: #333;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #444;
            font-size: 1rem;
            color: #aaa;
            line-height: 1.8;
        }
        .copyright-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        .copyright-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .copyright-links a:hover {
            color: var(--accent);
        }
        .text-center {
            text-align: center;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-40 {
            margin-top: 40px;
        }
        .mb-60 {
            margin-bottom: 60px;
        }
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .cards {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
        }
        @media (max-width: 992px) {
            nav ul {
                gap: 25px;
            }
            .hero {
                padding: 80px 0;
            }
            .hero h1 {
                font-size: 2.7rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .section {
                padding: 35px;
            }
            .game-table th, .game-table td {
                padding: 15px;
            }
        }
        @media (max-width: 768px) {
            nav ul, .nav-buttons {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .mobile-nav {
                display: flex !important;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: var(--secondary);
                padding: 25px;
                flex-direction: column;
                gap: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
                border-radius: 0 0 15px 15px;
            }
            .hero {
                padding: 60px 0;
                background-attachment: scroll;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            .hero .btn {
                width: 100%;
                max-width: 300px;
            }
            .section {
                padding: 25px;
                margin-bottom: 50px;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .section-subtitle {
                font-size: 1.4rem;
            }
            .cards {
                grid-template-columns: 1fr;
            }
            .image-container {
                gap: 15px;
            }
            .game-image {
                max-width: 100%;
            }
            .game-table {
                font-size: 1rem;
            }
            .game-table th, .game-table td {
                padding: 12px 8px;
            }
            .tabs {
                gap: 8px;
            }
            .tab {
                padding: 10px 18px;
                font-size: 0.95rem;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.6rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .section {
                padding: 20px;
            }
            .section-title {
                font-size: 1.6rem;
            }
            p {
                font-size: 1.05rem;
                line-height: 1.8;
            }
            ul, ol {
                margin-left: 25px;
            }
            .footer-content {
                gap: 30px;
            }
            .copyright {
                font-size: 0.95rem;
            }
            .copyright-links {
                gap: 15px;
            }
        }
        @keyframes fadeInPage {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        body {
            animation: fadeInPage 0.8s ease;
        }
        img {
            background: #f0f0f0;
            transition: opacity 0.5s ease;
        }
        img.loaded {
            opacity: 1;
        }
