/********** Template CSS **********/
:root {
    --primary: #31aa35;
    --secondary: #191C24;
    --light: #6C7293;
    --dark: #000000;
    --danger: #FA0505;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Layout ***/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 100vh;
    overflow-y: auto;
    background: var(--secondary);
    transition: 0.5s;
    z-index: 999;
}

.content {
    margin-left: 250px;
    min-height: 100vh;
    background: var(--dark);
    transition: 0.5s;
}

@media (min-width: 992px) {
    .sidebar {
        margin-left: 0;
    }

    .sidebar.open {
        margin-left: -250px;
    }

    .content {
        width: calc(100% - 250px);
    }

    .content.open {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
    .sidebar {
        margin-left: -250px;
    }

    .sidebar.open {
        margin-left: 0;
    }

    .content {
        width: 100%;
        margin-left: 0;
    }
}


/*** Navbar ***/
/* BASE */
.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 16px;
    margin: 6px 10px;

    border-radius: 30px;
    transition: all 0.2s ease;
}

/* ÍCONES (PADRONIZA BOLINHA) */
.navbar-nav .nav-link i {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #0b0f19;

    transition: 0.2s;
}

/* HOVER */
.navbar-nav .nav-link:hover {
    background: rgba(0,255,100,0.08);
    color: #00ff88 !important;
}

/* HOVER NO ÍCONE */
.navbar-nav .nav-link:hover i {
    background: rgba(0,255,100,0.15);
}

/* ACTIVE (HOME, TREINOS ETC) */
.navbar-nav .nav-link.active {
    background: #000;
    color: #00ff88 !important;
}

/* ÍCONE ATIVO */
.navbar-nav .nav-link.active i {
    background: rgba(0,255,100,0.2);
}

/* DROPDOWN AJUSTADO */
.dropdown-menu {
    background: #05070d !important;
    border: none;
    border-radius: 12px;
    margin: 8px 12px;
    padding: 8px 0;
}

/* ITENS DO DROPDOWN */
.dropdown-menu .dropdown-item {
    padding: 10px 18px;
    color: #cbd5e1;
    transition: 0.2s;
}

/* HOVER DO DROPDOWN */
.dropdown-menu .dropdown-item:hover {
    background: rgba(0,255,100,0.1);
    color: #00ff88;
    padding-left: 22px;
}

/* 📱 MOBILE AJUSTE */
@media (max-width: 768px) {

    .navbar {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .dropdown-menu-mobile {
        width: 90vw;
        right: 5%;
        left: auto;
        position: absolute;
    }

    .dropdown-item {
        font-size: 15px;
        padding: 12px;
    }

}


/*** Date Picker ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.progress .progress-bar {
    width: 0px;
    transition: 2s;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--primary);
}

/* SCROLL PERSONALIZADO */
.sidebar {
    height: 100vh;
    overflow-y: auto;
}

/* Chrome, Edge */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(0,255,100,0.3);
    /* border-radius: 10px; */
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(0,255,100,0.6);
}

/* Firefox */
.sidebar {
    scrollbar-width: thin;
    scrollbar-color: rgba(0,255,100,0.5) transparent;
}

footer small {
    letter-spacing: 0.3px;
}

footer a:hover {
    color: #00ff88 !important;
    transition: 0.2s;
}

.coach-card {
    transition: 0.2s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

/* CARD LIST (COACHS) */
.bg-secondary {
    transition: 0.2s ease;
    border: 1px solid rgba(255,255,255,0.08);

}

.bg-secondary:hover {
    transform: translateY(-3px);
    border-color: rgba(0,255,100,0.35);
    box-shadow: 0 0 15px rgba(0,255,100,0.08);
}

/* BADGE ID */
.badge {
    font-size: 11px;
    padding: 5px 8px;
}

/* ICONES */
.bi {
    font-size: 14px;
}

/* RESPONSIVO MAIS CLEAN */
@media (max-width: 768px) {
    .bg-secondary {
        padding: 16px !important;
    }
}
.coach-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0,255,100,0.2);
    box-shadow: 0 0 15px rgba(0,255,100,0.08);
}

.coach-card h6 {
    font-size: 15px;
}

.coach-card small {
    font-size: 12px;
}

/* CARD STUDENTS */
.student-card {
    background: #0b0b0b;
    border: 1px solid rgba(255,255,255,0.05); /* mais suave */
    border-radius: 12px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

/* 🔹 LINHA LATERAL BASE */
.student-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%; /* não ocupa tudo → mais elegante */
    width: 4px;
    border-radius: 4px;
    background: #00ff88;
    opacity: 0.6;
    transition: all 0.25s ease;
}

/* 🔹 STATUS CORES */
.student-active::before {
    background: #198754;
}

.student-inactive::before {
    background: #dc3545;
}

.student-visitor::before {
    background: #ffc107;
}

/* 🔹 HOVER */
.student-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* 🔥 HOVER DINÂMICO POR STATUS */
.student-active:hover {
    box-shadow: 0 10px 25px rgba(25,135,84,0.25);
}

.student-inactive:hover {
    box-shadow: 0 10px 25px rgba(220,53,69,0.25);
}

.student-visitor:hover {
    box-shadow: 0 10px 25px rgba(255,193,7,0.25);
}

/* 🔹 ANIMAÇÃO DA LINHA */
.student-card:hover::before {
    height: 100%;
    top: 0;
    opacity: 1;
}

/*TRAINING*/
.training-card {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    transition: 0.2s ease;
    position: relative;
    overflow: hidden;
}

/* LINHA LATERAL PADRÃO */
.training-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #00ff88;
    opacity: 0.5;
}

/* HOVER */
.training-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0,255,100,0.3);
    box-shadow: 0 0 15px rgba(0,255,100,0.08);
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 10px;
}

.navbar-brand:hover {
    transform: scale(1.03);
    transition: 0.2s ease;
}

/**/
@media (max-width: 991.98px) {

    /* SIDEBAR COMO DRAWER (APP STYLE) */
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;

        width: 85%;
        max-width: 300px;

        height: 100vh;

        margin-left: -100%;
        z-index: 1050;

        border-right: 1px solid rgba(49,170,53,0.25);
        box-shadow: 20px 0 50px rgba(0,0,0,0.6);

        transition: all 0.3s ease;
    }

    .sidebar.open {
        margin-left: 0;
    }

    /* OVERLAY ESCURO (FUNDO) */
    .sidebar.open::after {
        content: "";
        position: fixed;
        top: 0;
        left: 0;

        width: 100vw;
        height: 100vh;

        background: rgba(0,0,0,0.6);
        z-index: -1;
    }

    /* GARANTE QUE O CONTEÚDO NÃO EMPURRE */
    .content {
        margin-left: 0 !important;
        width: 100% !important;
    }

    /* NAV MAIS LIMPO */
    .sidebar .navbar-nav {
        padding: 12px 10px 100px;
    }

    /* LINKS MAIS FLUÍDOS */
    .navbar-nav .nav-link {
        width: 100%;
        margin: 6px 0;
        padding: 12px 14px;

        border-radius: 14px;

        display: flex;
        align-items: center;

        font-size: 14px;
    }

    /* REMOVE QUALQUER "BOLHA ESTRANHA" */
    .navbar-nav .nav-link i {
        min-width: 38px;
        height: 38px;
    }

    /* REMOVE DESLOCAMENTO BUGADO */
    .navbar-nav .nav-link:hover {
        transform: none;
    }

    /* DROPDOWN CORRIGIDO */
    .dropdown-menu {
        position: relative !important;
        width: 100%;
        margin: 6px 0;
        border-radius: 10px;
    }

    /* HEADER MAIS LIMPO */
    .navbar {
        padding: 10px 12px !important;
    }

    /* BOTÃO MENU MAIS VISÍVEL */
    .sidebar-toggler {
        background: rgba(49,170,53,0.15);
        border-radius: 10px;
    }
}

    .live-analytics-board{
        background: #05070d;
        border: 1px solid rgba(255,255,255,0.05);
        border-radius: 22px;
        overflow: hidden;
    }

    /* HEADER */
    .live-header{
        padding: 18px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        background: linear-gradient(180deg,#0b0f19,#05070d);
    }

    .live-periods{
        display: flex;
        gap: 8px;
        margin-top: 14px;
    }

    .live-period-btn{
        flex: 1;
        border: 0;
        background: #0b0f19;
        color: #94a3b8;
        height: 42px;
        border-radius: 12px;
        font-size: 10px;
        font-weight: 700;
        transition: .2s;
    }

    .live-period-btn.active{
        background: #31aa35;
        color: #fff;
        box-shadow: 0 0 20px rgba(49,170,53,.2);
    }

    /* BODY */
    .live-body{
        padding: 16px;
    }

    /* TEAM HEADER */
    .analytics-team-row{
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 10px;

        margin-bottom: 18px;
    }

    .analytics-team-name{
        background: #0b0f19;
        border: 1px solid rgba(255,255,255,.05);

        height: 44px;

        border-radius: 14px;

        display: flex;
        align-items: center;
        justify-content: center;

        color: #fff;
        font-size: 13px;
        font-weight: 700;

        text-align: center;
        padding: 0 10px;
    }

    .analytics-vs{
        color: #31aa35;
        font-weight: 800;
        font-size: 13px;
    }

    /* LIST */
    .analytics-list{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .analytics-line{
        display: grid;
        grid-template-columns: 70px 1fr 70px;
        gap: 10px;
        align-items: center;
    }

    /* BUTTONS */
    .analytics-side-btn{
        border: 0;
        height: 62px;

        border-radius: 16px;

        background: #0b0f19;

        border: 1px solid rgba(255,255,255,0.06);

        color: #fff;

        font-size: 22px;
        font-weight: 800;

        transition: .15s ease;
        position: relative;
        overflow: hidden;
    }

    .analytics-side-btn:active{
        transform: scale(.95);
    }

    .analytics-side-btn.home{
        border-left: 4px solid #31aa35;
    }

    .analytics-side-btn.away{
        border-right: 4px solid #ffc107;
    }

    .analytics-side-btn:hover{
        border-color: rgba(49,170,53,.3);
        box-shadow: 0 0 15px rgba(49,170,53,.08);
    }

    /* CENTER LABEL */
    .analytics-center{
        background: #0b0f19;

        border: 1px solid rgba(255,255,255,.05);

        border-radius: 16px;

        height: 62px;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        text-align: center;

        padding: 6px;
    }

    .analytics-center small{
        color: #94a3b8;
        font-size: 11px;
        line-height: 1.2;
    }

    .analytics-center strong{
        color: #fff;
        font-size: 13px;
        margin-top: 3px;
    }

    /* SAVE */
    .analytics-footer{
        padding: 16px;
        border-top: 1px solid rgba(255,255,255,.05);
        background: #0b0f19;
    }

    .analytics-save-btn{
        height: 52px;
        border-radius: 16px;
        font-weight: 700;
        font-size: 14px;
    }

    @media(max-width:768px){

        .analytics-line{
            grid-template-columns: 65px 1fr 65px;
            gap: 8px;
        }

        .analytics-side-btn{
            height: 58px;
            font-size: 20px;
        }

        .analytics-center{
            height: 58px;
        }

        .analytics-center strong{
            font-size: 12px;
        }

    }

    /* ============================= */
/* ANALYTICS UI PRO */
/* ============================= */

/* =========================================================
   ANALYTICS PRO UI
========================================================= */

.page-title{

    font-size: 2rem;
    font-weight: 700;
    color: #FFF;

}

.breadcrumb-custom{

    color: #94A3B8;
    font-size: .95rem;

}

.analytics-hero{

    position: relative;
    overflow: hidden;

    background:
    radial-gradient(circle at top left, rgba(34,197,94,.15), transparent 35%),
    radial-gradient(circle at top right, rgba(59,130,246,.12), transparent 35%),
    #081028;

}

.analytics-overlay{

    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.02),
        transparent
    );

}

.hero-card{

    border-radius: 24px;
    padding: 35px;
    border: 1px solid rgba(255,255,255,.06);

}

.match-center{

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;

}

.team-block{

    display: flex;
    align-items: center;
    gap: 18px;

}

.team-logo{

    width: 90px;
    height: 90px;

    border-radius: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 42px;

    color: #22C55E;

    background:
    linear-gradient(
        145deg,
        rgba(34,197,94,.18),
        rgba(255,255,255,.03)
    );

    border: 1px solid rgba(255,255,255,.08);

}

.team-name{

    font-size: 1.7rem;
    font-weight: 700;
    color: #FFF;

}

.match-score-box{

    min-width: 180px;

    padding: 18px 30px;

    border-radius: 22px;

    background:
    linear-gradient(
        135deg,
        rgba(34,197,94,.15),
        rgba(59,130,246,.12)
    );

    border: 1px solid rgba(255,255,255,.08);

    font-size: 2.5rem;
    font-weight: 800;

    color: #FFF;

    text-align: center;

}

.hero-side{

    min-width: 160px;

}

.glass-card{

    background:
    linear-gradient(
        180deg,
        rgba(15,23,42,.96),
        rgba(2,6,23,.98)
    );

    border: 1px solid rgba(255,255,255,.05);

    border-radius: 22px;

    backdrop-filter: blur(18px);

    box-shadow:
    0 10px 40px rgba(0,0,0,.35);

}

/* =========================================================
   KPI CARDS PREMIUM
========================================================= */

.kpi-card{
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 22px;
    background:
        linear-gradient(145deg,
        rgba(9,18,35,.96),
        rgba(5,12,24,.92));
    border: 1px solid rgba(255,255,255,.06);
    box-shadow:
        0 10px 30px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.03);
    transition: .25s ease;
    min-height: 170px;
}

.kpi-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right,
        rgba(34,197,94,.14),
        transparent 45%);
    pointer-events:none;
}

.kpi-card:hover{
    transform: translateY(-4px);
    border-color: rgba(34,197,94,.18);
    box-shadow:
        0 20px 40px rgba(0,0,0,.45),
        0 0 20px rgba(34,197,94,.10);
}

.kpi-header{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    margin-bottom:20px;
}

.kpi-title{
    font-size:.95rem;
    font-weight:700;
    color:#fff;
    letter-spacing:.3px;
}

.kpi-sub{
    font-size:.75rem;
    color:#7f8ea3;
    margin-top:3px;
}

.kpi-icon{
    width:52px;
    height:52px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
        linear-gradient(135deg,
        rgba(34,197,94,.18),
        rgba(34,197,94,.05));
    border:1px solid rgba(34,197,94,.18);
    color:#22c55e;
    font-size:1.2rem;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.05),
        0 0 15px rgba(34,197,94,.08);
}

.kpi-values{
    display:flex;
    align-items:end;
    justify-content:space-between;
    margin-bottom:18px;
}

.kpi-values small{
    display:block;
    color:#7f8ea3;
    font-size:.72rem;
    margin-bottom:4px;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.kpi-value{
    font-size:2rem;
    font-weight:800;
    line-height:1;
    letter-spacing:-1px;
}

.kpi-value.text-success{
    color:#32d583 !important;
}

.kpi-value.text-info{
    color:#3b82f6 !important;
}

/* PROGRESS */

.kpi-card .progress{
    height:10px;
    background:rgba(255,255,255,.05);
    border-radius:30px;
    overflow:hidden;
    margin-top:8px;
}

.kpi-card .progress-bar{
    border-radius:30px;
    position:relative;
}

.kpi-card .progress-bar::after{
    content:'';
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,
        rgba(255,255,255,.0),
        rgba(255,255,255,.25),
        rgba(255,255,255,.0));
    animation: shimmer 2.5s linear infinite;
}

@keyframes shimmer{

    0%{
        transform:translateX(-100%);
    }

    100%{
        transform:translateX(100%);
    }

}

/* =========================================================
   CHART CARDS
========================================================= */

.chart-card{
    border-radius:24px;
    padding:24px;
    background:
        linear-gradient(145deg,
        rgba(10,18,34,.96),
        rgba(6,12,24,.94));
    border:1px solid rgba(255,255,255,.06);
    box-shadow:
        0 12px 35px rgba(0,0,0,.35);
    position:relative;
    overflow:hidden;
}

.chart-card::before{
    content:'';
    position:absolute;
    width:240px;
    height:240px;
    background:
        radial-gradient(circle,
        rgba(59,130,246,.08),
        transparent 70%);
    top:-120px;
    right:-120px;
}

.card-title{
    font-size:1.15rem;
    font-weight:700;
    color:#fff;
    margin-bottom:4px;
}

.card-sub{
    font-size:.82rem;
    color:#7f8ea3;
    margin-bottom:22px;
}

/* =========================================================
   RADAR CLEAN
========================================================= */

.chart-md{
    position:relative;
    height:340px;
}

#competitiveRadar{
    filter:
        drop-shadow(0 0 12px rgba(34,197,94,.08));
}

/* =========================================================
   COMPARATIVO CLEAN
========================================================= */

.comparison-item{
    margin-bottom:24px;
}

.comparison-item span{
    display:block;
    color:#dbe4f0;
    font-size:.85rem;
    margin-bottom:10px;
    font-weight:600;
}

.comparison-bar{
    position:relative;
    height:12px;
    border-radius:30px;
    overflow:hidden;
    background:rgba(255,255,255,.05);
    margin-bottom:8px;
}

.comparison-home{
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    border-radius:30px;
    background:
        linear-gradient(90deg,
        #22c55e,
        #4ade80);
    box-shadow:
        0 0 14px rgba(34,197,94,.25);
}

.comparison-away{
    position:absolute;
    right:0;
    top:0;
    bottom:0;
    border-radius:30px;
    background:
        linear-gradient(90deg,
        #2563eb,
        #38bdf8);
    box-shadow:
        0 0 14px rgba(59,130,246,.25);
}

.comparison-item strong{
    color:#fff;
    font-size:.85rem;
    font-weight:700;
}

/* =========================================================
   TABLE CLEAN
========================================================= */

.analytics-table{
    margin-top:10px;
}

.analytics-table thead th{
    border:none;
    background:rgba(255,255,255,.03);
    color:#9fb2c7;
    font-size:.72rem;
    letter-spacing:.8px;
    text-transform:uppercase;
    padding:16px;
}

.analytics-table tbody td{
    border-color:rgba(255,255,255,.04);
    padding:18px 16px;
    color:#e6edf5;
    font-weight:500;
}

.analytics-table tbody tr{
    transition:.2s ease;
}

.analytics-table tbody tr:hover{
    background:rgba(255,255,255,.025);
}

/* =========================================================
   HERO IMPROVED
========================================================= */

.analytics-hero{
    border-radius:28px;
    overflow:hidden;
    padding:35px;
    background:
        linear-gradient(135deg,
        rgba(4,10,20,.98),
        rgba(8,18,35,.95));
    border:1px solid rgba(255,255,255,.05);
    box-shadow:
        0 20px 50px rgba(0,0,0,.45);
}

.team-name{
    font-size:1.35rem;
    font-weight:800;
    color:#fff;
    margin-top:5px;
}

.team-logo{
    width:78px;
    height:78px;
    border-radius:24px;
    background:
        linear-gradient(145deg,
        rgba(34,197,94,.14),
        rgba(34,197,94,.04));
    border:1px solid rgba(34,197,94,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    color:#22c55e;
}

.match-score-box{
    font-size:3rem;
    font-weight:900;
    color:#fff;
    line-height:1;
    letter-spacing:-2px;
}

.analytics-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 16px;
    border-radius:999px;
    background:rgba(34,197,94,.12);
    color:#4ade80;
    border:1px solid rgba(34,197,94,.14);
    font-size:.8rem;
    font-weight:700;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width:991px){

    .kpi-card{
        min-height:auto;
    }

    .kpi-value{
        font-size:1.6rem;
    }

    .analytics-hero{
        padding:24px;
    }

    .match-score-box{
        font-size:2.2rem;
    }

}

.comparison-item{

    margin-bottom: 24px;

}

.comparison-item span{

    display: block;
    margin-bottom: 10px;

    color: #E2E8F0;
    font-size: .95rem;

}

.comparison-bar{

    height: 10px;

    background: rgba(255,255,255,.05);

    border-radius: 999px;

    overflow: hidden;

    position: relative;

    margin-bottom: 8px;

}

.comparison-home{

    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;

    background:
    linear-gradient(
        90deg,
        #22C55E,
        #4ADE80
    );

    border-radius: 999px;

}

.comparison-away{

    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;

    background:
    linear-gradient(
        90deg,
        #3B82F6,
        #60A5FA
    );

    border-radius: 999px;

}

.analytics-table{

    color: #CBD5E1;

}

.analytics-table thead th{

    background: rgba(255,255,255,.04);
    border: 0;

}

.analytics-table td{

    border-color: rgba(255,255,255,.04);

}

.footer-note{

    background:
    linear-gradient(
        135deg,
        rgba(34,197,94,.10),
        rgba(34,197,94,.04)
    );

    border: 1px solid rgba(34,197,94,.18);

    padding: 16px 22px;

    border-radius: 16px;

    color: #CBD5E1;

    text-align: center;

}

.analytics-btn-primary{

    background:
    linear-gradient(
        135deg,
        #16A34A,
        #22C55E
    );

    border: 0;

    color: #FFF;

    padding: 12px 22px;

    border-radius: 16px;

    font-weight: 600;

}

.analytics-btn-outline{

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.08);

    color: #FFF;

    padding: 12px 22px;

    border-radius: 16px;

}

@media(max-width: 991px){

    .match-center{

        flex-direction: column;
        text-align: center;

    }

    .team-block{

        justify-content: center;

    }

    .hero-side{

        text-align: center;

    }

}