* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f6f9;
    color: #222222;
    line-height: 1.6;
}

.site-header {
    background-color: #0b1d3a;
    color: #ffffff;
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}


.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo {
    height: 45px;
    width: auto;
}

.site-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}


.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #00d26a;
}

.cart-badge {
    background-color: #00d26a;
    color: #0b1d3a;
    border-radius: 50%;
    padding: 2px 7px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 4px;
}

.hero-section {
    background: linear-gradient(rgba(11, 29, 58, 0.75), rgba(11, 29, 58, 0.75)),
        url('Image/mondial.jpg') center/cover no-repeat;
    color: #ffffff;
    text-align: center;
    padding: 130px 20px;
    background-attachment: fixed;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background-color: #00d26a;
    color: #0b1d3a;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #00b058;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #0b1d3a;
}

.live-matches {
    padding: 60px 20px;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: #0b1d3a;
    font-size: 2rem;
    margin-bottom: 35px;
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.match-card {
    background-color: #f4f6f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.match-card:hover {
    transform: translateY(-5px);
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.team-live {
    text-align: center;
}

.team-live img {
    width: 50px;
    height: auto;
    display: block;
    margin: 0 auto 5px;
    border-radius: 4px;
}

.team-live span {
    font-weight: bold;
    font-size: 0.9rem;
    color: #0b1d3a;
}

.live-score {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.8rem;
    font-weight: 800;
    color: #0b1d3a;
}

.score-separator {
    color: #9ca3af;
}

.match-status {
    text-align: center;
    font-weight: bold;
    color: #d90429;
    margin: 10px 0 5px;
}

.match-stadium {
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
}

.final-highlight {
    padding: 60px 20px;
    background-color: #f4f6f9;
}

.final-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.team {
    text-align: center;
}

.team .flag {
    width: 80px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
}

.team h3 {
    font-size: 1.5rem;
    color: #0b1d3a;
    margin-bottom: 8px;
}

.champion-badge {
    background-color: #ffb703;
    color: #0b1d3a;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
}

.runner-up-badge {
    background-color: #e5e7eb;
    color: #374151;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
}

.score-box {
    text-align: center;
}

.score-box .score {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0b1d3a;
    display: block;
}

.score-box .match-time {
    color: #d90429;
    font-weight: bold;
    font-size: 0.95rem;
}

.stadium-info,
.match-date {
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 5px;
}

.news-section {
    background-color: #ffffff;
    padding: 60px 20px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: #f4f6f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.news-image {
    position: relative;
    height: 200px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #0b1d3a;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.news-body {
    padding: 20px;
}

.news-body h3 {
    color: #0b1d3a;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.news-body p {
    color: #4b5563;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.site-footer {
    background-color: #0b1d3a;
    color: #d1d5db;
    padding: 60px 5% 20px 5%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 0.9rem;
    color: #9ca3af;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #00d26a;
    padding-bottom: 8px;
    display: inline-block;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: #00d26a;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.partner-name {
    background: #1a3a68;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #1a3a68;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #9ca3af;
}