/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* =========================
   BODY
========================= */
body {
    background: #0b1220;
    color: #ffffff;
}

/* =========================
   HEADER
========================= */
.header {
    background: linear-gradient(180deg, #020617, #020617cc);
    padding: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,.4);
}

.header h1 {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}

.header-watch {
    text-align: left;
}

/* =========================
   CONTAINER
========================= */
.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

/* =========================
   MATCH LIST (INDEX)
========================= */
.match-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.match-card {
    background: #020617;
    border-radius: 14px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(0,0,0,.35);
}

.match-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.match-time {
    color: #38bdf8;
    font-size: 14px;
    font-weight: bold;
}

.match-name {
    font-size: 16px;
    font-weight: 500;
}

/* =========================
   WATCH BUTTON
========================= */
.watch-btn {
    background: #22c55e;
    color: #000;
    padding: 10px 26px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: background .2s, transform .1s;
    white-space: nowrap;
}

.watch-btn:hover {
    background: #16a34a;
    transform: translateY(-1px);
}

/* =========================
   PLAYER
========================= */
.player-wrapper {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.5);
}

.player-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* =========================
   SVG PLAY OVERLAY
========================= */
.play-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0,0,0,.35), rgba(0,0,0,.85));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-overlay svg {
    width: 90px;
    height: 90px;
    fill: #cccccc;
    transition: transform .2s ease, fill .2s ease;
}

.play-overlay:hover svg {
    transform: scale(1.12);
    fill: #22c55e;
}

/* =========================
   STREAM BUTTONS
========================= */
.stream-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start; /* desktop: left */
}

.stream-buttons button {
    background: #1e293b;
    color: #ffffff;
    border: 1px solid #1e293b;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background .2s, color .2s, border .2s;
}

.stream-buttons button:hover {
    background: #334155;
}

.stream-buttons button.active {
    background: #22c55e;
    color: #000;
    border-color: #22c55e;
}

/* =========================
   FOOTER
========================= */
.footer {
    text-align: center;
    padding: 18px;
    font-size: 14px;
    color: #94a3b8;
}

/* =========================
   LINKS
========================= */
.back-btn {
    color: #38bdf8;
    text-decoration: none;
    font-size: 16px;
}

/* =========================
   ERRORS
========================= */
.error {
    color: #ef4444;
    text-align: center;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablets + Mobile */
@media (max-width: 768px) {
    .stream-buttons {
        justify-content: center;
    }

    .play-overlay svg {
        width: 70px;
        height: 70px;
    }
}

/* Mobile ONLY */
@media (max-width: 600px) {

    /* 🔥 ƏSAS DÜZƏLİŞ BURDADIR */
    .match-card {
        flex-direction: row;       /* ALT-ALTA DEYİL */
        align-items: center;
        gap: 12px;
    }

    .match-left {
        flex: 1;
    }

    .watch-btn {
        width: auto;               /* uzun olmasın */
        padding: 6px 14px;         /* yığcam */
        font-size: 13px;
        border-radius: 8px;
    }
}

.seo-content {
    margin-top: 40px;
    background: #020617;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,.3);
}

.seo-content h2,
.seo-content h3 {
    margin-bottom: 12px;
    color: #ffffff;
}

.seo-content p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #cbd5f5;
    font-size: 15px;
}
.footer-disclaimer {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-copy {
    font-size: 14px;
    color: #94a3b8;
}

/* =========================
   TELEGRAM + WHATSAPP CTA
========================= */
.social-cta {
    margin: 16px auto 22px auto;
    max-width: 1000px;
    padding: 0 20px;

    display: flex;
    gap: 12px;
}

.social-cta a {
    flex: 1; /* 🔥 50% / 50% */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 14px 18px;
    border-radius: 12px;

    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;

    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Telegram */
.cta-telegram {
    background: linear-gradient(135deg, #229ED9, #1c8dc9);
    box-shadow: 0 8px 25px rgba(34, 158, 217, 0.35);
}

.cta-telegram:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(34, 158, 217, 0.45);
}

/* WhatsApp */
.cta-whatsapp {
    background: linear-gradient(135deg, #25D366, #1fb855);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.cta-whatsapp:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.social-cta i {
    font-size: 18px;
}

/* Mobile fine-tuning */
@media (max-width: 600px) {
    .social-cta a {
        font-size: 14px;
        padding: 12px 14px;
        border-radius: 10px;
    }

    .social-cta i {
        font-size: 16px;
    }
}



