/* =========================
   LIVE BANNER
========================= */

.live-banner {
    width: 100%;
    overflow: hidden;
}

.live-banner img {
    width: 100%;
    display: block;

    /* خیلی مهم */
    object-fit: cover;
}

/* دسکتاپ */
@media (min-width: 769px) {

    .live-banner img {
        aspect-ratio: 1710 / 500;
    }
}

/* موبایل */
@media (max-width: 768px) {

    .live-banner img {
        aspect-ratio: 1080 / 1350;
    }
}

/* =========================
   LIVE SECTION
========================= */

.live-wrapper {

    width: 100%;

    padding: 40px 18px 80px;

    display: flex;
    justify-content: center;

    box-sizing: border-box;
}

/* =========================
   CARD
========================= */

.live-card {

    width: 100%;
    max-width: 850px;

    background: rgba(255,255,255,0.07);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 28px;

    padding: 35px 28px;

    backdrop-filter: blur(12px);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.25),
        0 0 30px rgba(41,152,111,0.15);

    text-align: center;
}

/* =========================
   BADGE
========================= */

.live-badge {

    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: #c62828;

    color: white;

    padding: 8px 18px;

    border-radius: 999px;

    font-size: 0.9rem;
    font-weight: bold;

    margin-bottom: 20px;

    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(198,40,40,0.5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(198,40,40,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(198,40,40,0);
    }
}

/* =========================
   TITLE
========================= */

.live-title {

    font-size: 2.4rem;

    font-weight: 800;

    line-height: 1.7;

    margin-bottom: 18px;

    color: #fff;
}

/* =========================
   DESCRIPTION
========================= */

.live-description {

    font-size: 1rem;

    line-height: 2.1;

    color: rgba(255,255,255,0.88);

    max-width: 700px;

    margin: 0 auto 35px;
}

/* =========================
   COUNTDOWN
========================= */

.countdown-box {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 16px;

    margin-bottom: 35px;
}

.count-item {

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 20px;

    padding: 22px 10px;
}

.count-item span {

    display: block;

    font-size: 2rem;

    font-weight: bold;

    color: #ffef00;

    margin-bottom: 6px;
}

.count-item small {

    color: rgba(255,255,255,0.75);

    font-size: 0.9rem;
}

/* =========================
   TIME
========================= */

.live-time {

    margin-bottom: 28px;

    color: rgba(255,255,255,0.8);

    font-size: 0.95rem;
}

/* =========================
   BUTTON
========================= */

.live-btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    background: linear-gradient(135deg, #16a34a, #15803d);

    color: white;

    text-decoration: none;

    padding: 16px 34px;

    border-radius: 18px;

    font-weight: bold;

    transition: 0.3s;
}

.live-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 10px 30px rgba(22,163,74,0.35);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .live-wrapper {

        padding: 25px 12px 60px;
    }

    .live-card {

        padding: 25px 16px;
        border-radius: 22px;
    }

    .live-title {

        font-size: 1.45rem;

        line-height: 1.9;
    }

    .live-description {

        font-size: 0.9rem;

        line-height: 2;
    }

    .countdown-box {

        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }

    .count-item {

        padding: 18px 8px;
    }

    .count-item span {

        font-size: 1.5rem;
    }

    .live-btn {

        width: 100%;

        padding: 15px 20px;

        font-size: 0.95rem;
    }
}