/*==================================================
HOME HERO
==================================================*/

.hero{
    background:linear-gradient(135deg,#0f172a 0%,#1e3a8a 100%);
    color:#fff;
    padding:90px 0;
    overflow:hidden;
}

.hero-container{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
    align-items:center;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    font-weight:600;
    margin-bottom:25px;
}

.hero-title{
    font-size:64px;
    line-height:1.1;
    font-weight:800;
    color:#ffffff;
    margin:0 0 20px;
}

.hero-subtitle{
    font-size:34px;
    font-weight:700;
    color:#93c5fd;
    margin-bottom:25px;
}

.hero-description{
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,.88);
    max-width:700px;
}

.hero-updated{
    margin-top:25px;
    color:#cbd5e1;
    font-size:15px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-top:35px;
    flex-wrap:wrap;
}

.hero-results{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.hero-result-card{
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(15px);
    border-radius:18px;
    padding:24px;
    transition:.3s;
}

.hero-result-card:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,.16);
}

.hero-result-card h3{
    margin:0;
    font-size:18px;
    color:#fff;
}

.hero-result-number{
    font-size:42px;
    font-weight:800;
    color:#38bdf8;
    margin:15px 0;
}

.hero-result-card span{
    color:#cbd5e1;
    font-size:14px;
}

/*==============================
Responsive
==============================*/

@media(max-width:992px){

.hero-container{
    grid-template-columns:1fr;
}

.hero-title{
    font-size:42px;
}

.hero-subtitle{
    font-size:24px;
}

.hero-results{
    grid-template-columns:repeat(2,1fr);
    margin-top:40px;
}

}

@media(max-width:600px){

.hero{
    padding:60px 0;
}

.hero-results{
    grid-template-columns:1fr;
}

.hero-title{
    font-size:34px;
}

.hero-subtitle{
    font-size:20px;
}

.hero-description{
    font-size:16px;
}

.hero-buttons{
    flex-direction:column;
}

.hero-buttons .btn{
    width:100%;
    text-align:center;
}

}

/*==================================================
LIVE RESULT SECTION
==================================================*/

.live-results{
    padding:80px 0;
    background:#f8fafc;
}

.live-result-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    margin-top:45px;
}

.live-result-card{

    background:#fff;

    border-radius:20px;

    padding:28px;

    border:1px solid #e2e8f0;

    box-shadow:0 10px 35px rgba(15,23,42,.06);

    transition:.35s ease;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

}

.live-result-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(37,99,235,.18);

    border-color:#2563eb;

}

.card-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    margin-bottom:22px;

}

.card-top h3{

    margin:0;

    font-size:22px;

    font-weight:700;

}

.card-top h3 a{

    color:#0f172a;

    text-decoration:none;

}

.card-top h3 a:hover{

    color:#2563eb;

}

.market-time{

    display:block;

    margin-top:8px;

    color:#64748b;

    font-size:14px;

}

.live-pill{

    background:#dcfce7;

    color:#15803d;

    padding:7px 14px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

    letter-spacing:.5px;

}

.result-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin:25px 0;

}

.result-box{

    background:#f8fafc;

    border:1px solid #e2e8f0;

    border-radius:16px;

    padding:18px;

    text-align:center;

}

.result-box.today{

    background:#eff6ff;

    border-color:#93c5fd;

}

.result-box span{

    display:block;

    color:#64748b;

    font-size:13px;

    margin-bottom:8px;

}

.result-box strong{

    font-size:34px;

    font-weight:800;

    color:#0f172a;

}

.result-box.today strong{

    color:#2563eb;

}

.card-footer{

    display:flex;

    gap:12px;

    margin-top:20px;

}

.card-footer .btn{

    flex:1;

    text-align:center;

    padding:12px 18px;

    border-radius:12px;

    font-size:15px;

    font-weight:700;

}

.btn-outline{

    border:2px solid #2563eb;

    color:#2563eb;

    background:#fff;

}

.btn-outline:hover{

    background:#2563eb;

    color:#fff;

}

@media (max-width:992px){

.live-result-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media (max-width:640px){

.live-result-grid{

    grid-template-columns:1fr;

}

.card-footer{

    flex-direction:column;

}

}

/*=========================================
MONTHLY CHART RESPONSIVE HEADER
=========================================*/

.desktop-name{

    display:inline;

}

.mobile-name{

    display:none;

}

@media(max-width:768px){

.desktop-name{

    display:none;

}

.mobile-name{

    display:inline;

}

}

/*==================================================
MONTHLY COMBINED CHART
==================================================*/

.monthly-chart-section{

    padding:90px 0;

    background:#ffffff;

}

.chart-toolbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    margin:35px 0;

    flex-wrap:wrap;

}

.chart-nav{

    display:flex;

    align-items:center;

    gap:15px;

}

.chart-current{

    font-size:22px;

    font-weight:700;

    color:#0f172a;

}

.chart-btn{

    padding:12px 20px;

    border-radius:12px;

    background:#eff6ff;

    color:#2563eb;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.chart-btn:hover{

    background:#2563eb;

    color:#fff;

}

.chart-btn.disabled{

    opacity:.4;

    cursor:not-allowed;

    pointer-events:none;

}

.chart-filter{

    display:flex;

    gap:12px;

    align-items:center;

    flex-wrap:wrap;

}

.chart-filter select{

    height:48px;

    padding:0 16px;

    border-radius:10px;

    border:1px solid #dbeafe;

    font-size:15px;

    background:#fff;

}

.chart-filter button{

    height:48px;

}

/*==================================================
TABLE
==================================================*/

.combined-chart-wrapper{

    overflow:hidden;

    border-radius:18px;

    border:1px solid #e2e8f0;

    box-shadow:0 15px 45px rgba(15,23,42,.08);

}

.monthly-chart{

    width:100%;

    border-collapse:collapse;

    table-layout:fixed;

}

.monthly-chart thead{

    background:#2563eb;

}

.monthly-chart th{

    position:sticky;

    top:0;

    z-index:10;

    padding:16px 8px;

    background:#2563eb;

    color:#fff;

    font-size:15px;

    font-weight:700;

    border:1px solid rgba(255,255,255,.12);

}

.monthly-chart td{

    padding:14px 6px;

    text-align:center;

    border:1px solid #e2e8f0;

    font-weight:600;

    color:#334155;

}

.monthly-chart tbody tr:nth-child(even){

    background:#f8fafc;

}

.monthly-chart tbody tr:hover{

    background:#eff6ff;

}

.monthly-chart td:first-child{

    font-weight:700;

    color:#2563eb;

}
/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:768px){

.chart-toolbar{

    flex-direction:column;

    align-items:flex-start;

}

.chart-nav{

    width:100%;

    justify-content:space-between;

}

.chart-filter{

    width:100%;

}

.chart-filter select{

    flex:1;

}

.chart-filter button{

    width:100%;

}

.monthly-chart{

    font-size:12px;

}

.monthly-chart th{

    padding:10px 2px;

    font-size:11px;

}

.monthly-chart td{

    padding:9px 2px;

    font-size:12px;

}

}

/*==================================
TODAY ROW
==================================*/

.today-row{

    background:#dbeafe !important;

}

.today-row td{

    font-weight:700;

}

.today-row td:first-child{

    background:#2563eb;

    color:#fff;

}
/*==================================================
MARKET TIMING
==================================================*/

.market-timing-section{
    padding:90px 0;
    background:#f8fafc;
}

.market-timing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:45px;
}

.timing-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:18px;
    padding:28px;
    box-shadow:0 10px 30px rgba(15,23,42,.06);
    transition:.35s ease;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.timing-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(37,99,235,.15);
}

.timing-top{
    margin-bottom:18px;
}

.timing-top h3{
    font-size:24px;
    font-weight:700;
    color:#0f172a;
    margin:0 0 12px;
}

.status{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:7px 15px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    margin-bottom:18px;
}

.status.declared{
    background:#dcfce7;
    color:#15803d;
}

.status.coming{
    background:#fef3c7;
    color:#b45309;
}

.status.closed{
    background:#fee2e2;
    color:#dc2626;
}

.timing-time{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-size:18px;
    font-weight:700;
    color:#2563eb;
    margin-bottom:22px;
}

.timing-card .btn{
    width:100%;
    height:48px;
    border-radius:12px;
    font-size:16px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

/*=========================================
Tablet
=========================================*/

@media (max-width:992px){

    .market-timing-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .timing-card{
        padding:22px;
    }

}

/*=========================================
Mobile
=========================================*/

@media (max-width:768px){

    .market-timing-section{
        padding:60px 0;
    }

    .market-timing-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
        margin-top:30px;
    }

    .timing-card{
        padding:18px;
        border-radius:14px;
    }

    .timing-top{
        margin-bottom:12px;
    }

    .timing-top h3{
        font-size:19px;
        margin-bottom:10px;
    }

    .status{
        font-size:12px;
        padding:6px 12px;
        margin-bottom:14px;
    }

    .timing-time{
        font-size:15px;
        margin-bottom:16px;
    }

    .timing-card .btn{
        height:42px;
        font-size:14px;
    }

}

/*=========================================
Very Small Mobile
=========================================*/

@media (max-width:380px){

    .market-timing-grid{
        grid-template-columns:1fr;
    }

}