:root{
    --primary:#d4af37;
    --primary-dark:#b8921d;
    --secondary:#111111;
    --bg:#050505;
    --card:#181818;
    --border:#2b2b2b;
    --white:#ffffff;
    --text:#d9d9d9;
    --shadow:0 15px 40px rgba(0,0,0,.35);
    --radius:14px;
    --transition:.3s ease;
}



body{

    width:100%;
    overflow-x:hidden;

    background:var(--bg);

    color:var(--white);

    font-family:Segoe UI,Arial,sans-serif;

    line-height:1.7;
}


/*chart-section year by year*/
.chart-section{

    width:100%;
    padding:70px 20px;
    background:#050505;

}

.chart-container{

    max-width:1400px;
    margin:auto;

}

.section-title{

    text-align:center;
    color:#D4AF37;
    font-size:40px;
    margin-bottom:15px;

}

.section-text{

    text-align:center;
    color:#cfcfcf;
    font-size:18px;
    max-width:800px;
    margin:0 auto 50px;

}

.chart-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:30px;

}

.chart-card{

    background:#111;
    border:1px solid #D4AF37;
    border-radius:15px;
    padding:30px;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.35);

}

.chart-card:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(212,175,55,.18);

}

.chart-card h3{

    margin-bottom:20px;

}

.chart-card h3 a{

    color:#D4AF37;
    text-decoration:none;
    font-size:28px;
    font-weight:bold;

}

.chart-card h3 a:hover{

    color:#FFD700;

}

.year-links{

    display:flex;
    flex-wrap:wrap;
    gap:10px;

}

.year-links a{

    text-decoration:none;
    color:#fff;
    border:1px solid #D4AF37;
    background:#1A1A1A;
    padding:10px 18px;
    border-radius:30px;
    transition:.3s;
    font-weight:600;
    min-width:70px;
    text-align:center;

}

.year-links a:hover{

    background:#D4AF37;
    color:#000;

}

@media(max-width:768px){

.section-title{

font-size:30px;

}

.chart-card{

padding:25px;

}

.chart-card h3 a{

font-size:24px;

}

.year-links{

justify-content:center;

}

}
/*chart-section year by year*/
/*==============================
SECTION
==============================*/

.info-section{
    width:100%;
    background:#050505;
}
.info-section h2{
    color:#D4AF37;
    font-size:36px;
    margin-bottom:40px;
}
.container{
    max-width:1300px;
    margin:auto;
}

/*==============================
ARTICLE
==============================*/

.article-box{

    background:#111;
    border:1px solid #D4AF37;
    border-radius:15px;
    padding:50px;
    margin-bottom:50px;
    box-shadow:0 10px 30px rgba(0,0,0,.35);

}

.article-box h1{

    color:#D4AF37;
    font-size:42px;
    margin-bottom:25px;

}

.article-box p{

    font-size:18px;
    margin-bottom:20px;
    color:#dddddd;

}

.highlight{

    background:#1a1a1a;
    border-left:5px solid #D4AF37;
    padding:25px;
    margin:35px 0;
    border-radius:10px;

}

.highlight strong{

    color:#D4AF37;

}

/*==============================
FAQ
==============================*/

.faq-title{

    color:#D4AF37;
    font-size:36px;
    text-align:center;
    margin-bottom:40px;

}

.faq-item{

    background:#111;
    border:1px solid #D4AF37;
    border-radius:10px;
    margin-bottom:18px;
    overflow:hidden;

}

.faq-item summary{

    list-style:none;
    cursor:pointer;
    padding:22px;
    font-size:19px;
    font-weight:bold;
    color:#D4AF37;
    transition:.3s;

}

.faq-item summary::-webkit-details-marker{

    display:none;

}

.faq-item summary:after{

    content:"+";
    float:right;
    font-size:24px;

}

.faq-item[open] summary:after{

    content:"−";

}

.faq-item p{

    padding:0 22px 22px;
    color:#ddd;
    font-size:17px;

}

.faq-item:hover{

    box-shadow:0 8px 20px rgba(212,175,55,.15);

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:768px){

.article-box{

padding:30px;

}

.article-box h1{

font-size:30px;

}

.faq-title{

font-size:28px;

}

.article-box p,
.faq-item p,
.faq-item summary{

font-size:16px;

}

}




/* Floating Button */

.wa-float{

position:fixed;
right:18px;
bottom:18px;

width:58px;
height:58px;

background:var(--primary);

border-radius:50%;

display:flex;
justify-content:center;
align-items:center;

cursor:pointer;

color:#fff;

font-size:30px;

box-shadow:0 8px 20px rgba(0,0,0,.25);

z-index:9999;

animation:pulse 2s infinite;

}

@keyframes pulse{

50%{

transform:scale(1.08);

}

}

.wa-notify{

position:absolute;
top:6px;
right:7px;

width:11px;
height:11px;

background:#ff3b30;

border-radius:50%;

border:2px solid #fff;

}

/* Popup */

.wa-chat{

position:fixed;

right:18px;
bottom:88px;

width:285px;

background:#fff;

border-radius:14px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.25);

display:none;

z-index:9999;

animation:popup .35s ease;

}

@keyframes popup{

from{

opacity:0;
transform:translateY(25px);

}

to{

opacity:1;
transform:translateY(0);

}

}

/* Header */

.wa-header{

background:var(--primary);

padding:12px 15px;

display:flex;
justify-content:space-between;
align-items:center;

color:#fff;

}

.wa-user{

display:flex;
align-items:center;

}

.wa-avatar{

width:42px;
height:42px;

border-radius:50%;

background:rgba(255,255,255,.18);

display:flex;
justify-content:center;
align-items:center;

font-size:22px;

margin-right:10px;

}

.wa-user h4{

font-size:15px;

margin-bottom:2px;

}

.wa-online{

font-size:12px;

display:flex;
align-items:center;

}

.wa-online span{

width:8px;
height:8px;

background:#00ff6a;

border-radius:50%;

margin-right:5px;

animation:blink 1.2s infinite;

}

@keyframes blink{

50%{

opacity:.4;

}

}

#waClose{

background:none;
border:none;

color:#fff;

font-size:24px;

cursor:pointer;

}

/* Body */

.wa-body{

padding:16px;

}

.typing{

display:flex;
align-items:center;

margin-bottom:12px;

color:#888;

font-size:12px;

}

.typing span{

width:6px;
height:6px;

background:var(--primary);

border-radius:50%;

margin-right:3px;

animation:dots 1s infinite;

}

.typing span:nth-child(2){

animation-delay:.2s;

}

.typing span:nth-child(3){

animation-delay:.4s;

}

@keyframes dots{

50%{

transform:translateY(-3px);

}

}

.wa-body p{

font-size:14px;

line-height:1.6;

color:var(--text);

margin-bottom:15px;

}

.wa-body a{

display:flex;

justify-content:center;
align-items:center;

gap:8px;

background:var(--primary);

padding:11px;

border-radius:8px;

color:#fff;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.wa-body a:hover{

background:var(--primary-dark);

}

.wa-body a i{

font-size:20px;

}

/* Mobile */

@media(max-width:480px){

.wa-chat{

width:92%;
right:4%;

}

}


/*==============================
Full Width Layout
==============================*/

.container-fluid{

    width:100%;

    padding-left:40px;

    padding-right:40px;
}

.container{

    width:100%;

    max-width:100%;

    padding-left:40px;

    padding-right:40px;
}

/*==============================
Typography
==============================*/

h1,h2,h3,h4,h5,h6{

    color:#fff;

    font-weight:700;

    margin-bottom:15px;
}

h1{

    font-size:56px;

    line-height:1.2;
}

h2{

    font-size:36px;
}

h3{

    font-size:24px;
}

p{

    color:var(--text);

    margin-bottom:20px;
}

a{

    text-decoration:none;

    transition:.3s;

    color:#fff;
}

a:hover{

    color:var(--primary);
}

/*==============================
Header
==============================*/

.navbar-area{

    position:sticky;

    top:0;

    z-index:999;

    width:100%;

    background:#090909;

    border-bottom:1px solid #222;

    box-shadow:var(--shadow);
}

.navbar{

    min-height:80px;
}

.logo{

    color:var(--primary);

    font-size:32px;

    font-weight:bold;

    letter-spacing:1px;
}

.logo:hover{

    color:#fff;
}

.navbar-nav{

    gap:25px;
}

.navbar-nav a{

    font-size:16px;

    font-weight:600;

    color:#fff;
}

.navbar-nav a:hover{

    color:var(--primary);
}

/*==============================
Hero
==============================*/

.hero{

    width:100%;

    min-height:650px;

    display:flex;

    align-items:center;

    background:linear-gradient(135deg,#090909,#151515);

    padding:80px 0;
}

.hero h1{

    margin-bottom:20px;
}

.hero p{

    font-size:20px;

    max-width:700px;
}

.btn-warning{

    background:var(--primary);

    border:none;

    color:#111;

    font-weight:700;

    padding:15px 35px;

    border-radius:50px;
}

.btn-warning:hover{

    background:var(--primary-dark);

    color:#fff;
}

/*==============================
Hero Card
==============================*/

.hero-card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:40px;

    text-align:center;

    box-shadow:var(--shadow);
}

.hero-card h2{

    font-size:40px;

    color:var(--primary);
}
.hero-card h3{font-size: 30px;
    
}
/*==============================
Sections
==============================*/

.section-space{

    padding:80px 0;
}

.section-title{

    text-align:center;

    margin-bottom:50px;

    color:var(--primary);
}

/*==============================
Tables
==============================*/

.table{

    border-color:#333;
}

.table thead{

    background:var(--primary);

    color:#111;
}

.table td{

    vertical-align:middle;

    padding:18px;
}

/*==============================
Market Cards
==============================*/

.market-card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:35px;

    text-align:center;

    transition:var(--transition);

    margin-bottom:30px;
}

.market-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);
}

.market-card h3{

    color:var(--primary);
}

/*==============================
Blog Cards
==============================*/

.blog-card{

    background:#161616;

    border:1px solid #2d2d2d;

    border-radius:var(--radius);

    padding:30px;

    transition:.3s;

    height:100%;
}

.blog-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);
}

.blog-card a{

    color:var(--primary);

    font-weight:bold;
}

/*==============================
FAQ
==============================*/

.accordion-item{

    background:#161616;

    border:1px solid #2b2b2b;

    margin-bottom:20px;
}

.accordion-button{

    background:#161616;

    color:#fff;

    font-weight:600;
}

.accordion-button:not(.collapsed){

    background:var(--primary);

    color:#111;
}

.accordion-body{

    background:#111;

    color:#ddd;
}

/*==============================
Footer
==============================*/

footer{

    background:#080808;

    border-top:1px solid #222;

    padding:40px 0;

    text-align:center;
}

footer p{

    margin:0;

    color:#999;
}

/*==============================
Utility
==============================*/

.bg-dark{

    background:#0d0d0d !important;
}

.shadow-card{

    box-shadow:var(--shadow);
}

.rounded-card{

    border-radius:var(--radius);
}

/*==============================
Responsive
==============================*/

@media(max-width:992px){

.container,
.container-fluid{

    padding-left:20px;

    padding-right:20px;
}

.hero{

    text-align:center;

    min-height:auto;
}

.hero h1{

    font-size:42px;
}

.hero-card{

    margin-top:40px;
}

}

@media(max-width:768px){

h1{

    font-size:34px;
}

h2{

    font-size:28px;
}

.section-space{

    padding:60px 0;
}

.logo{

    font-size:24px;
}

.navbar-nav{

    gap:10px;

    padding-top:20px;
}

.hero p{

    font-size:17px;
}

}

@media(max-width:576px){

.container,
.container-fluid{

    padding-left:15px;

    padding-right:15px;
}

.hero{

    padding:60px 0;
}

.hero-card h2{

    font-size:40px;
}

.table{

    font-size:14px;
}

}
/*===============================
Premium Sticky Header
===============================*/

.top-header{

    position:sticky;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    background:#080808;

    border-bottom:2px solid #d4af37;

    box-shadow:0 5px 25px rgba(0,0,0,.4);
}

.header-wrapper{

    display:flex;

    align-items:center;

    gap:30px;

    min-height:70px;
}

.logo{

    flex-shrink:0;

    font-size:28px;

    font-weight:700;

    color:#d4af37;

    white-space:nowrap;
}

.logo:hover{

    color:#fff;
}

/*===============================
Always Visible Navigation
===============================*/

.main-menu{

    display:flex;

    align-items:center;

    gap:10px;

    overflow-x:auto;

    overflow-y:hidden;

    white-space:nowrap;

    scrollbar-width:none;

    flex:1;
}

.main-menu::-webkit-scrollbar{

    display:none;
}

.main-menu a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 18px;

    color:#fff;

    font-size:15px;

    font-weight:600;

    border-radius:8px;

    transition:.25s;

    flex-shrink:0;
}

.main-menu a:hover{

    background:#d4af37;

    color:#111;
}

.main-menu a.active{

    background:#d4af37;

    color:#111;
}

/*===============================
Mobile
===============================*/

@media(max-width:768px){

.header-wrapper{

    flex-direction:column;

    align-items:flex-start;

    gap:12px;

    padding:12px 0;
}

.logo{

    font-size:22px;
}

.main-menu{

    width:100%;

    padding-bottom:5px;
}

.main-menu a{

    padding:9px 15px;

    font-size:14px;
}

}
.today-row{

    background:#141414;

}

.today-row td{

    color:#fff;

    font-weight:600;

}

.yesterday-row{

    background:#0d0d0d;

}

.yesterday-row td{

    color:#bdbdbd;

}

.badge{

    font-size:13px;

    padding:7px 12px;

    border-radius:30px;

}


.monthly-chart-sections{

    width:100%;

    

    background:#0b0b0b;

}

.section-heading{

    text-align:center;

    margin-bottom:35px;

}

.section-heading h2{

    color:#d4af37;

    font-size:38px;

    margin-bottom:10px;

}

.section-heading p{

    color:#bfbfbf;

}


.section-heading{

    text-align:center;

    margin-bottom:35px;

}

.section-heading h2{

    color:#d4af37;

    font-size:38px;

    margin-bottom:10px;

}





.chart-button{

    text-align:center;

    margin-top:30px;

}

.chart-button a{

    display:inline-block;

    background:#d4af37;

    color:#111;

    padding:14px 30px;

    border-radius:8px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}

.chart-button a:hover{

    background:#fff;

}

}

/* ==========================
   BLACK & GOLD CHART DESIGN
========================== */

.main-chart-wrapper{
    display:flex;
    flex-wrap:nowrap;
    gap:12px;
    width:100%;
    overflow-x:auto;
    padding:15px;
    background:#050505;
}

.main-chart-wrapper::-webkit-scrollbar{
    height:8px;
}

.main-chart-wrapper::-webkit-scrollbar-thumb{
    background:#d4af37;
    border-radius:20px;
}

.monthly-chart-section{
    flex:0 0 calc(100% / 6);
    min-width:260px;
}

.monthly-chart{
    width:100%;
    border-collapse:collapse;
    background:#111;
    border:2px solid #d4af37;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 0 15px rgba(212,175,55,.20);
}

.monthly-chart th{
    background:#d4af37;
    color:#111;
    font-size:15px;
    font-weight:700;
    padding:10px;
  
    text-align:center;
}

.monthly-chart td{
    background:#161616;
    color:#ffffff;
    border:1px solid #2d2d2d;
    padding:8px;
    text-align:center;
    transition:.3s;
}

.monthly-chart tbody tr:nth-child(even) td{
    background:#1d1d1d;
}

.monthly-chart tbody tr:hover td{
    background:#2b2b2b;
}

.satta-no{
    background:#d4af37 !important;
    color:#111 !important;
    font-weight:700;
    width:45px;
}

.satta-king-no{
    color:#ffd700;
    font-size:18px;
    font-weight:bold;
    letter-spacing:1px;
}

.date-sec{
    background:#d4af37 !important;
    color:#111 !important;
}

.chart-head{
    background:#d4af37 !important;
    color:#111 !important;
}

.dated{
    background:#b8860b !important;
    color:#fff !important;
}

@media (max-width:992px){

    .monthly-chart-section{
        min-width:320px;
    }

}

@media (max-width:768px){

    .main-chart-wrapper{
        padding:8px;
        gap:8px;
    }

    .monthly-chart th,
    .monthly-chart td{
        padding:6px;
        font-size:13px;
    }

    .satta-king-no{
        font-size:16px;
    }

}



*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,Helvetica,sans-serif;
}

body{
background:#050505;
color:#d9d9d9;
line-height:1.9;
}

.article-wrapper{
width:100%;
padding:70px 40px;
background:#050505;
}

.article-container{
width:100%;
max-width:1400px;
margin:auto;
background:#111;
border:1px solid #d4af37;
border-radius:15px;
padding:60px;
box-shadow:0 0 25px rgba(212,175,55,.15);
}

.article-container h1{
font-size:42px;
color:#d4af37;
margin-bottom:25px;
line-height:1.3;
font-weight:700;
}

.article-container h2{
font-size:28px;
color:#d4af37;
margin-top:45px;
margin-bottom:18px;
border-left:5px solid #d4af37;
padding-left:15px;
}

.article-container p{
font-size:18px;
margin-bottom:20px;
color:#dddddd;
}

.article-container ul{
margin:25px 0 35px 30px;
}

.article-container li{
margin-bottom:12px;
font-size:18px;
}

.highlight-box{

background:#1a1a1a;
border-left:5px solid #d4af37;
padding:25px;
margin:35px 0;
border-radius:8px;

}

.highlight-box strong{

color:#d4af37;

}

.info-table{

width:100%;
border-collapse:collapse;
margin:35px 0;

}

.info-table th{

background:#d4af37;
color:#000;
padding:16px;
font-size:18px;

}

.info-table td{

border:1px solid #444;
padding:15px;
font-size:17px;

}

.info-table tr:nth-child(even){

background:#171717;

}

blockquote{

background:#111;
border-left:5px solid #d4af37;
padding:25px;
margin:40px 0;
font-size:19px;
font-style:italic;
color:#f4d03f;

}

.conclusion{

background:#121212;
padding:30px;
margin-top:50px;
border-radius:10px;
border:1px solid #d4af37;

}

.conclusion h2{

margin-top:0;

}

@media(max-width:991px){

.article-container{

padding:35px;

}

.article-container h1{

font-size:34px;

}

.article-container h2{

font-size:24px;

}

}

@media(max-width:768px){

.article-wrapper{

padding:20px;

}

.article-container{

padding:25px;

}

.article-container h1{

font-size:28px;

}

.article-container h2{

font-size:22px;

}

.article-container p,
.article-container li{

font-size:16px;

}

}
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,Helvetica,sans-serif;
}

body{
background:#0b0b0b;
color:#fff;
}

.results-section{
width:100%;
padding:60px 25px;
}
.wait-sec{
    font-weight: bold;
}
.section-title{
text-align:center;
font-size:40px;
font-weight:700;
color:#d4af37;
margin-bottom:12px;
}

.section-subtitle{
text-align:center;
color:#bdbdbd;
margin-bottom:45px;
}

.results-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:25px;

}

.result-card{

display:block;

background:#181818;

border:1px solid #2f2f2f;

border-radius:16px;

overflow:hidden;

text-decoration:none;

color:#fff;

transition:.3s;

}

.result-card:hover{

transform:translateY(-8px);

border-color:#d4af37;

box-shadow:0 18px 40px rgba(0,0,0,.45);

}

.card-top{

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 22px;

background:#d4af37;

color:#111;

}

.market-name{

font-size:24px;

font-weight:bold;

}

.live-badge{

background:#0f0;

color:#111;

font-size:12px;

font-weight:bold;

padding:5px 10px;

border-radius:30px;

}

.card-body{

padding:22px;

}

.result-item{

display:flex;

justify-content:space-between;

align-items:center;

padding:14px 0;

border-bottom:1px solid #2d2d2d;

}

.result-item:last-child{

border-bottom:none;

}

.label{

color:#cfcfcf;

font-weight:600;

}

.number{

font-size:30px;

font-weight:bold;

color:#d4af37;

}

.time{

margin-top:18px;

color:#999;

font-size:15px;

}

.card-footer{

margin-top:20px;

padding-top:18px;

border-top:1px solid #2d2d2d;

display:flex;

justify-content:space-between;

align-items:center;

}

.view-chart{

background:#d4af37;

color:#111;

padding:10px 18px;

border-radius:8px;

font-weight:bold;

transition:.3s;

}

.result-card:hover .view-chart{

background:#fff;

}

.arrow{

font-size:18px;

}

@media(max-width:768px){

.results-section{

padding:40px 15px;

}

.section-title{

font-size:30px;

}

.market-name{

font-size:20px;

}

.number{

font-size:26px;

}

}