﻿/* ===== 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;
    }
}


/*header new start*/

.betting-section {
    display: flex;
    gap: 25px;
    padding: 60px 5%;
    background: #111;
    flex-wrap: wrap;
}

/* Sidebar */

.sidebar {
    width: 260px;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
}

    .sidebar h3 {
        background: #ff6b00;
        padding: 18px;
        color: #fff;
    }

    .sidebar ul {
        list-style: none;
    }

    .sidebar li {
        display: flex;
        justify-content: space-between;
        padding: 18px;
        border-bottom: 1px solid #2c2c2c;
        color: #fff;
        transition: .3s;
        cursor: pointer;
    }

        .sidebar li:hover {
            background: #00b140;
            padding-left: 28px;
        }

    .sidebar span {
        background: #00b140;
        padding: 5px 10px;
        border-radius: 50px;
    }

/* Table */

.match-table {
    flex: 1;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
}

.table-header {
    background: #ff6b00;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 18px;
}

.live-btn {
    background: red;
    padding: 6px 18px;
    border-radius: 30px;
    animation: blink 1s infinite;
}

.match {
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    transition: .3s;   
}

    .match:hover {
        background: #fafafa;
    }

.team {
    font-weight: 700;
}

    .team span {
        display: block;
        font-size: 13px;
        color: #ff6b00;
        margin-top: 5px;
    }

.odds {
    display: grid;
    grid-template-columns: repeat(5, 140px);
    gap: 10px;
}

    .odds div {
        background: #299ce39e;
        padding: 12px;
        text-align: center;
        font-weight: bold;
        border-radius: 8px;
        cursor: pointer;
        transition: .3s;
    }

        .odds div:nth-child(even) {
            background: #00b140bf;
        }

        .odds div:hover {
            transform: scale(1.08);
            background: #00b140;
            color: #fff;
        }

@keyframes blink {

    50% {
        opacity: .3;
    }
}

@media(max-width:991px) {

    .sidebar {
        width: 100%;
    }

    .match {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .odds {
        width: 100%;
        grid-template-columns: repeat(2,1fr);
    }
}
.betting-section {
    animation: fadeUp .8s ease;
}

@keyframes fadeUp {

    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.sidebar {
    animation: leftSide .8s ease;
}

@keyframes leftSide {

    0% {
        opacity: 0;
        transform: translateX(-80px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.sidebar li {
    transition: .35s;
    position: relative;
    overflow: hidden;
}

    .sidebar li::before {
        content: "";
        position: absolute;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,#00c853,#ff9800);
        transition: .5s;
        z-index: -1;
    }

    .sidebar li:hover::before {
        left: 0;
    }

    .sidebar li:hover {
        transform: translateX(10px);
        color: #fff;
    }
.match {
    animation: matchFade .8s ease forwards;
    opacity: 0;
}

    .match:nth-child(2) {
        animation-delay: .2s;
    }

    .match:nth-child(3) {
        animation-delay: .4s;
    }

    .match:nth-child(4) {
        animation-delay: .6s;
    }

    .match:nth-child(5) {
        animation-delay: .8s;
    }

    .match:nth-child(6) {
        animation-delay: 1s;
    }

@keyframes matchFade {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.match {
    transition: .4s;
    border-left: 5px solid transparent;
}

    .match:hover {
        background: #101010;
        border-left: 5px solid #00ff88;
        transform: scale(1.01);
        box-shadow: 0 10px 30px rgba(0,255,120,.25);
    }
.odds div {
    cursor: pointer;
    transition: .35s;
    position: relative;
    overflow: hidden;
    font-weight: bold;
}

    .odds div::before {
        content: "";
        position: absolute;
        left: -120%;
        top: 0;
        width: 70%;
        height: 100%;
        background: rgba(255,255,255,.3);
        transform: skewX(-30deg);
        transition: .5s;
    }

    .odds div:hover::before {
        left: 140%;
    }

    .odds div:hover {
        transform: translateY(-5px) scale(1.08);
        background: #00c853;
        color: #fff;
        box-shadow: 0 0 15px #00ff88, 0 0 30px #00ff88;
    }
.live-btn {
    animation: livePulse 1s infinite;
    box-shadow: 0 0 15px red;
}

@keyframes livePulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
        box-shadow: 0 0 10px red, 0 0 30px red;
    }

    100% {
        transform: scale(1);
    }
}
.table-header {
    background: linear-gradient(90deg,#ff6b00,#ff9800);
    position: relative;
    overflow: hidden;
}

    .table-header::before {
        content: "";
        position: absolute;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,.15);
        transform: skewX(-30deg);
        animation: headerMove 4s infinite;
    }

@keyframes headerMove {

    100% {
        left: 150%;
    }
}
.team {
    transition: .3s;
    color: #000;
}

.match:hover .team {
    color: #00c853;
    transform: translateX(10px);
}
.odds div {
    animation: floatBox 3s ease-in-out infinite;
}

    .odds div:nth-child(even) {
        animation-delay: .5s;
    }

@keyframes floatBox {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.betting-section .light{

position:absolute;

width:18px;

height:18px;

background:#ff9800;

border-radius:50%;

box-shadow:

0 0 15px #ff9800,

0 0 40px #ff9800,

0 0 80px #ff9800;

animation:floatLight 6s linear infinite;

}

.light.one{

top:20%;

left:18%;

}

.light.two{

top:70%;

right:15%;

animation-delay:2s;

}

.light.three{

bottom:18%;

left:45%;

animation-delay:4s;

}

@keyframes floatLight{

0%{

transform:translateY(0);

opacity:.3;

}

50%{

transform:translateY(-35px);

opacity:1;

}

100%{

transform:translateY(0);

opacity:.3;

}

}

.betting-section {
    position: relative;
    display: flex;
    gap: 25px;
    padding: 70px 5%;
    background: #0a0a0a;
    flex-wrap: wrap;
    overflow: hidden;
    z-index: 1;
}

    /* Orange Glow Left */

    .betting-section::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: #ff7300;
        border-radius: 50%;
        filter: blur(180px);
        opacity: .35;
        left: -150px;
        top: -150px;
        animation: moveGlow1 8s ease-in-out infinite;
        z-index: -1;
    }

    /* Orange Glow Right */

    .betting-section::after {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        background: #ff9800;
        border-radius: 50%;
        filter: blur(180px);
        opacity: .30;
        right: -120px;
        bottom: -120px;
        animation: moveGlow2 8s ease-in-out infinite;
        z-index: -1;
    }

/* Animation */

@keyframes moveGlow1 {

    0% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(80px,40px);
    }

    100% {
        transform: translate(0,0);
    }
}

@keyframes moveGlow2 {

    0% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(-70px,-40px);
    }

    100% {
        transform: translate(0,0);
    }
}
/*==============================*/

.why-section {
    padding: 90px 8%;
    background: #0d0d0d;
    position: relative;
    overflow: hidden;
}

    /* Orange Glow */

    .why-section::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        background: #ff7b00;
        border-radius: 50%;
        filter: blur(180px);
        opacity: .25;
        left: -150px;
        top: -120px;
        animation: glow 6s infinite alternate;
    }

@keyframes glow {

    100% {
        transform: translate(80px,60px);
    }
}

.container {
    max-width: 1200px;
    margin: auto;
}



.sub-title {
    display: inline-block;
    padding: 8px 22px;
    background: rgba(255,153,0,.15);
    border: 1px solid #ff9800;
    border-radius: 30px;
    color: #ff9800;
    font-size: 15px;
    margin-bottom: 20px;
}

.why-content h2 {
    font-size: 50px;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
}

    .why-content h2 span {
        color: #00d26a;
    }

.why-content p {
    color: #bdbdbd;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 35px;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-bottom: 40px;
}

    .feature-list li {
        background: #171717;
        padding: 18px;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,.06);
        transition: .35s;
        color: #fff;
        font-weight: 500;
        display: flex;
        align-items: center;
    }

        .feature-list li:hover {
            transform: translateX(12px);
            background: linear-gradient(90deg,#00c853,#ff9800);
        }

    .feature-list i {
        color: #00ff88;
        font-size: 22px;
        margin-right: 15px;
    }

.about-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg,#00c853,#ff9800);
    color: #fff;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    transition: .4s;
    box-shadow: 0 15px 40px rgba(255,153,0,.25);
}

    .about-btn:hover {
        transform: translateY(-6px);
        box-shadow: 0 0 25px #00ff88, 0 0 45px #ff9800;
    }

/* Responsive */

@media(max-width:991px) {

    .why-content {
        max-width: 100%;
        text-align: center;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .why-content h2 {
        font-size: 38px;
    }
}

@media(max-width:576px) {

    .why-content h2 {
        font-size: 30px;
    }

    .why-content p {
        font-size: 16px;
        line-height: 28px;
    }

    .feature-list li {
        font-size: 15px;
        padding: 15px;
    }

    .about-btn {
        width: 100%;
        text-align: center;
    }
}
.odds.full-latest {
    display: grid;
    grid-template-columns: repeat(2, 402px);
    gap: 10px;
}

.faq-section {
    padding: 80px 8%;
    background: #111;
}

.faq-title {
    text-align: center;
    font-size: 40px;
    color: #fff;
    margin-bottom: 40px;
}

.faq {
    background: #1b1b1b;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    transition: .3s;
}

    .faq:hover {
        border-color: #ff9800;
        box-shadow: 0 10px 30px rgba(255,152,0,.25);
    }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #1b1b1b;
}

    .faq-question span {
        width: 35px;
        height: 35px;
        background: linear-gradient(45deg,#00c853,#ff9800);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 22px;
        transition: .3s;
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #222;
    color: #ccc;
    padding: 0 22px;
    transition: max-height .4s ease,padding .4s ease;
    line-height: 28px;
}

.faq.active .faq-answer {
    max-height: 200px;
    padding: 20px 22px;
}

.faq.active .faq-question span {
    transform: rotate(45deg);
}

@media(max-width:768px) {

    .faq-title {
        font-size: 28px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px;
    }
}

/*================ CONTACT SECTION =================*/

.fp-contact-section {
    padding: 80px 6%;
    background: #0d0d0d;
}

.fp-contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.fp-contact-left {
    width: 45%;
}

.fp-contact-right {
    width: 55%;
    background: #171717;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,.35);
}

.fp-contact-subtitle {
    color: #f26d25;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
}

.fp-contact-left h2 {
    color: #fff;
    font-size: 42px;
    margin: 15px 0;
}

    .fp-contact-left h2 span {
        color: #f26d25;
    }

.fp-contact-left p {
    color: #ccc;
    line-height: 30px;
    margin-bottom: 35px;
}

.fp-contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    background: #171717;
    padding: 18px;
    border-radius: 15px;
}

    .fp-contact-box i {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: #f26d25;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-size: 22px;
    }

    .fp-contact-box h4 {
        color: #fff;
        margin-bottom: 5px;
    }

    .fp-contact-box a,
    .fp-contact-box p {
        color: #ccc;
        text-decoration: none;
    }

.fp-input {
    margin-bottom: 20px;
}

    .fp-input input,
    .fp-input textarea {
        width: 100%;
        padding: 15px;
        border-radius: 10px;
        border: 1px solid #333;
        background: #111;
        color: #fff;
        outline: none;
        font-size: 16px;
        box-sizing: border-box;
    }

    .fp-input textarea {
        resize: none;
    }

        .fp-input input:focus,
        .fp-input textarea:focus {
            border-color: #f26d25;
        }

.fp-btn {
    width: 100%;
    background: #f26d25;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
}

    .fp-btn:hover {
        background: #fff;
        color: #f26d25;
    }

/*================ RESPONSIVE =================*/

@media(max-width:991px) {

    .fp-contact-container {
        flex-direction: column;
    }

    .fp-contact-left,
    .fp-contact-right {
        width: 100%;
    }

    .fp-contact-left {
        text-align: center;
    }

    .fp-contact-box {
        text-align: left;
    }

    .fp-contact-left h2 {
        font-size: 34px;
    }
}

@media(max-width:576px) {

    .fp-contact-section {
        padding: 50px 20px;
    }

    .fp-contact-right {
        padding: 20px;
    }

    .fp-contact-left h2 {
        font-size: 28px;
    }
}