body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: #f6f7fb;
}

.match-page {
    min-height: 100vh;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 20px 50px;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(6px) brightness(.35);
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, .2),
            rgba(0, 0, 0, .8));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}

.category {
    display: inline-block;
    background: #0ea5e9;
    color: #fff;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 700;
}

.hero h1 {
    color: #fff;
    text-align: center;
    font-size: 30px;
    margin: 30px 0;
}

.teams {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    flex-wrap: wrap;
}

.team {
    text-align: center;
    color: #fff;
}

.team img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.team h2 {
    margin-top: 15px;
}

.vs {
    font-size: 40px;
    color: #fff;
    font-weight: bold;
}

.match-time {
    margin: 30px 0;
    text-align: center;
    color: #fff;
}

.countdown {
    background: #fff;
    border-radius: 20px;
    max-width: 320px;
    margin: auto;
    padding: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.watch-btn {
    display: inline-block;
    background: #ef4444;
    color: #fff;
    padding: 18px 40px;
    border-radius: 16px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }

}

.cover {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.cover img {
    width: 100%;
    border-radius: 25px;
}

.details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.card table {
    width: 100%;
}

.card td {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.features {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;

    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;

}

.feature {

    background: white;

    padding: 30px;

    border-radius: 20px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

    text-align: center;

}

.scroll-indicator {

    margin-top: 35px;

    text-align: center;

    color: white;

    font-size: 18px;

    font-weight: 600;

}

.scroll-arrow {

    font-size: 40px;

    animation: bounce 1.5s infinite;

}

@keyframes bounce {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(10px);

    }

}

.social-buttons {

    display: flex;

    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;

    margin-top: 35px;

}

.social-btn {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 28px;

    border-radius: 14px;

    font-weight: 700;

    text-decoration: none;

    color: white;

    transition: .3s;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);

}

.social-btn img {

    width: 24px;

    height: 24px;

}

.social-btn:hover {

    transform: translateY(-4px);

}

.whatsapp {

    background: #25D366;

}

.telegram {

    background: #229ED9;

}

.watch-section {

    max-width: 900px;

    margin: 60px auto;

    padding: 40px;

    background: white;

    border-radius: 25px;

    text-align: center;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

}

.watch-section h2 {

    margin-bottom: 10px;

    font-size: 34px;

}

.watch-section p {

    color: #666;

    margin-bottom: 30px;

}

.countdown {

    background: #f5f7fb;

    border-radius: 20px;

    padding: 35px;

}

.countdown p {

    font-size: 18px;

    margin-bottom: 10px;

    color: #777;

}

.countdown h2 {

    font-size: 42px;

    margin: 0;

    color: #111827;

}

.watch-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 18px 45px;

    font-size: 22px;

    font-weight: 700;

    background: #ef4444;

    color: white;

    text-decoration: none;

    border-radius: 18px;

    box-shadow: 0 12px 35px rgba(239, 68, 68, .45);

    animation: pulse 1.5s infinite;

    transition: .25s;

}

.watch-btn:hover {

    transform: scale(1.05);

    background: #dc2626;

}

@keyframes pulse {

    0% {

        box-shadow: 0 0 0 0 rgba(239, 68, 68, .6);

    }

    70% {

        box-shadow: 0 0 0 20px rgba(239, 68, 68, 0);

    }

    100% {

        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);

    }

}

/* ==========================================================
   RESPONSIVE DESIGN
========================================================== */

/* Large Tablets (≤1024px) */
@media (max-width: 1024px) {

    .hero {
        padding: 60px 20px 40px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .teams {
        gap: 40px;
    }

    .team img {
        width: 110px;
        height: 110px;
    }

    .team h2 {
        font-size: 1.2rem;
    }

    .cover {
        margin: 35px auto;
    }

    .cover img {
        height: auto;
    }

    .details {
        grid-template-columns: 1fr;
    }

    .watch-section {
        margin: 40px 20px;
        padding: 30px;
    }

    .watch-section h2 {
        font-size: 2rem;
    }

}

/* Tablets & Large Phones (≤768px) */
@media (max-width: 768px) {

    .hero {
        padding: 40px 16px;
    }

    .hero-content {
        width: 100%;
        padding: 0;
    }

    .category {
        display: table;
        margin: 0 auto 20px;
        font-size: 13px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
        text-align: center;
        margin: 20px 0;
        word-break: break-word;
    }

    .teams {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        flex-wrap: nowrap;
    }

    .team {
        flex: 1;
        min-width: 0;
    }

    .team img {
        width: 75px;
        height: 75px;
    }

    .team h2 {
        font-size: 16px;
        line-height: 1.3;
        margin-top: 10px;
        word-break: break-word;
    }

    .vs {
        font-size: 22px;
        flex-shrink: 0;
    }

    .match-time {
        font-size: 14px;
        margin: 25px 0;
    }

    .scroll-indicator {
        font-size: 15px;
    }

    .scroll-arrow {
        font-size: 30px;
    }

    .social-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .social-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

}

/* Phones (≤480px) */
@media (max-width: 480px) {

    .hero {
        padding: 30px 12px;
    }

    .hero h1 {
        font-size: 22px;
    }

    .teams {
        gap: 10px;
    }

    .team img {
        width: 60px;
        height: 60px;
    }

    .team h2 {
        font-size: 14px;
    }

    .vs {
        font-size: 18px;
    }

    .match-time {
        font-size: 13px;
    }

    .category {
        font-size: 12px;
        padding: 6px 14px;
    }

}

/* Very Small Phones (≤360px) */
@media (max-width: 360px) {

    .hero h1 {
        font-size: 1.25rem;
    }

    .team img {
        width: 60px;
        height: 60px;
    }

    .team h2 {
        font-size: .85rem;
    }

    .countdown h2 {
        font-size: 1.35rem;
    }

    .watch-section h2 {
        font-size: 1.3rem;
    }

    .social-btn {
        font-size: .85rem;
    }

}