﻿/* ===== WRAPPER ===== */

.live-table-wrapper {
    background: #0f0f0f;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,.4);
    margin-bottom: 25px;
}

/* ===== HEADER ===== */

.live-table-header {
    background: #f57c00;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    padding: 14px 20px;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== TABLE ===== */

.live-match-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

    .live-match-table thead th {
        background: #222;
        color: #fff;
        font-size: 14px;
        padding: 12px;
        text-align: center;
    }

        .live-match-table thead th:first-child {
            text-align: left;
        }

    .live-match-table tbody tr {
        border-bottom: 1px solid #ececec;
        transition: .3s;
    }

        .live-match-table tbody tr:hover {
            background: #fafafa;
        }

    .live-match-table tbody td {
        padding: 8px;
        text-align: center;
    }

.match-name {
    text-align: left !important;
    font-weight: 600;
    color: #222;
    min-width: 280px;
}

/* ===== ODDS BOX ===== */

.odds-box {
    height: 34px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: .3s;
    position: relative;
    overflow: hidden;
}

    .odds-box:hover {
        transform: translateY(-2px);
    }

.odds-back {
    background: #9fd0f4;
}

.odds-lay {
    background: #efc8c8;
}

/* ===== VALUE ANIMATION ===== */

.animated-odd span {
    animation: oddPulse 1.5s infinite;
}

@keyframes oddPulse {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.12);
        opacity: .7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== LIVE DOT ===== */

.live-dot {
    width: 12px;
    height: 12px;
    background: #00d13a;
    border-radius: 50%;
    display: inline-block;
    animation: blinkLive 1s infinite;
}

@keyframes blinkLive {

    0% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,209,58,.8);
    }

    70% {
        opacity: .5;
        box-shadow: 0 0 0 10px rgba(0,209,58,0);
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,209,58,0);
    }
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px) {

    .live-match-table {
        min-width: 700px;
    }

    .match-name {
        min-width: 220px;
        font-size: 13px;
    }

    .odds-box {
        height: 42px;
        font-size: 15px;
    }
}

@media(max-width:576px) {

    .live-table-header {
        font-size: 18px;
        padding: 12px;
    }

    .odds-box {
        height: 38px;
        font-size: 14px;
    }
}


/*header*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
    transition: all 0.4s ease;
}

    /* Scroll hone ke baad */
    .header.scrolled {
        background: #000;
        box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .header.scrolled {
        background: #000;
    }
}

img.footer-logo-latest {
    width: 100%;
    max-width: 80%;
}

.fairplay-btn {
    position: relative;
    display: inline-block;
    padding: 14px 35px;
    background: #000;
    color: #fff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    overflow: hidden;
    transition: all .4s ease;
    z-index: 1;
    border: 2px solid #4caf50;
    animation: pulseBtn 2s infinite;
}

    /* Moving Shine Effect */
    .fairplay-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 80%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,.4), transparent );
        transition: all .6s;
    }

    .fairplay-btn:hover::before {
        left: 120%;
    }

    .fairplay-btn:hover {
        background: #4caf50;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 0 20px rgba(76,175,80,.6);
    }

/* Continuous Glow Animation */
@keyframes pulseBtn {
    0% {
        box-shadow: 0 0 0 rgba(76,175,80,0);
    }

    50% {
        box-shadow: 0 0 20px rgba(76,175,80,.7);
    }

    100% {
        box-shadow: 0 0 0 rgba(76,175,80,0);
    }
}

/* Responsive */

@media (max-width:768px) {

    .fairplay-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 12px 20px;
        font-size: 15px;
    }
}

@media (max-width:480px) {

    .fairplay-btn {
        font-size: 14px;
        padding: 11px 18px;
    }
}

.btn {
    background: #f36c21;
    border: none;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    color:#fff !important;
}

@media (max-width: 768px) {
    body {
        padding: 0px !important;
    }
}