/* =========================================================
TOPBAR
========================================================= */

.topbar{
background:#050505;
padding:12px 0;
border-bottom:1px solid rgba(255,255,255,.08);
}

.live-text{
font-size:14px;
font-weight:600;
color:#fff;
letter-spacing:1px;
}

.live-dot{
width:10px;
height:10px;
background:#ff0000;
border-radius:50%;
display:inline-block;
margin-right:8px;
animation:blink 1s infinite;
box-shadow:0 0 15px red;
}

@keyframes blink{

0%{
opacity:1;
}

50%{
opacity:.2;
}

100%{
opacity:1;
}

}

.top-right{
font-size:14px;
font-weight:500;
color:#ffe600;
}

/* =========================================================
NAVBAR
========================================================= */

.custom-navbar{
background:rgba(0,0,0,.92);
backdrop-filter:blur(15px);
padding:18px 0;
border-bottom:1px solid rgba(255,255,255,.05);
z-index:999;
}

.navbar-brand{
display:flex;
align-items:center;
gap:15px;
font-weight:800;
font-size:28px;
color:#fff !important;
}

.site-logo{
/*width:60px;*/
height:60px;
/*object-fit:contain;*/
/*border-radius:50%;*/
/*background:#ffe600;*/
/*padding:5px;*/
/*box-shadow:0 0 25px rgba(255,230,0,.5);*/
}

.logo-text{
font-size:28px;
font-weight:900;
letter-spacing:1px;
}

.logo-text span{
color:#ffe600;
}

.nav-link{
color:#fff !important;
margin-left:18px;
font-weight:600;
position:relative;
transition:.4s;
}

.nav-link:hover,
.nav-link.active{
color:#ffe600 !important;
}

.nav-link::after{
content:'';
position:absolute;
left:0;
bottom:-5px;
width:0%;
height:2px;
background:#ffe600;
transition:.4s;
}

.nav-link:hover::after{
width:100%;
}

/* =========================================================
HERO SECTION
========================================================= */

.hero-section{
padding:110px 0;
background:
linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
url('https://images.unsplash.com/photo-1511512578047-dfb367046420?q=80&w=1920');
background-size:cover;
background-position:center;
position:relative;
overflow:hidden;
}

.hero-section::before{
content:'';
position:absolute;
width:500px;
height:500px;
background:#ffe600;
filter:blur(200px);
opacity:.15;
top:-100px;
right:-100px;
border-radius:50%;
}

.hero-content h1{
font-size:75px;
font-weight:900;
line-height:1.1;
color:#fff;
}

.hero-content h1 span{
color:#ffe600;
text-shadow:0 0 25px rgba(255,230,0,.6);
}

.hero-content p{
margin-top:25px;
font-size:18px;
line-height:1.9;
color:#d8d8d8;
max-width:600px;
}

.hero-buttons{
display:flex;
gap:20px;
margin-top:35px;
flex-wrap:wrap;
}

/* =========================================================
BUTTONS
========================================================= */

.hero-btn{
border:none;
padding:15px 35px;
border-radius:50px;
font-size:16px;
font-weight:700;
background:linear-gradient(135deg,#ffe600,#ffb700);
color:#000;
transition:.4s;
box-shadow:0 0 25px rgba(255,230,0,.3);
}

.hero-btn:hover{
transform:translateY(-5px);
box-shadow:0 0 40px rgba(255,230,0,.7);
}

.refresh-btn{
/*margin-top:25px;*/
border:none;
padding:14px 35px;
border-radius:50px;
background:#fff;
font-weight:700;
transition:.4s;
}

.refresh-btn:hover{
transform:scale(1.05);
}

/* =========================================================
RESULT CARD
========================================================= */

.hero-result-card{
background:rgba(255,255,255,.05);
backdrop-filter:blur(15px);
padding:45px;
border-radius:30px;
text-align:center;
border:1px solid rgba(255,255,255,.08);
box-shadow:0 0 40px rgba(255,230,0,.15);
position:relative;
overflow:hidden;
}

.hero-result-card::before{
content:'';
position:absolute;
width:300px;
height:300px;
background:#ffe600;
filter:blur(150px);
opacity:.15;
top:-100px;
right:-100px;
border-radius:50%;
}

.result-header{
font-size:20px;
font-weight:800;
letter-spacing:2px;
margin-bottom:20px;
color:#ffe600;
}

.live-number{
font-size:100px;
font-weight:900;
line-height:1;
color:#fff;
text-shadow:0 0 30px rgba(255,230,0,.4);
animation:pulse 2s infinite;
}

@keyframes pulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.05);
}

100%{
transform:scale(1);
}

}

.update-text{
margin-top:15px;
color:#d8d8d8;
font-size:15px;
}

/* =========================================================
DISCOVER SECTION
========================================================= */

.discover-section{
padding:80px 0;
background:#0b0b0b;
}

.discover-card{
background:#111;
border-radius:25px;
overflow:hidden;
border:1px solid rgba(255,255,255,.06);
box-shadow:0 0 30px rgba(255,230,0,.08);
}

.discover-title{
padding: 20px;
    font-size: 28px;
    font-weight: 600;
    background: #151515;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    color: #ffe600;
}

.discover-item{
display:flex;
align-items:center;
justify-content:space-between;
padding:25px;
border-bottom:1px solid rgba(255,255,255,.06);
transition:.4s;
cursor:pointer;
}

.discover-item:last-child{
border-bottom:none;
}

.discover-item:hover{
background:#1877f2;
padding-left:35px;
}

.discover-left{
display:flex;
align-items:center;
gap:15px;
font-size:18px;
font-weight:600;
}

.discover-left i{
color:#ffe600;
font-size:20px;
}

.discover-right i{
font-size:20px;
color:#ffe600;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:991px){

.hero-content{
text-align:center;
margin-bottom:50px;
}

.hero-content p{
margin:auto;
margin-top:20px;
}

.hero-buttons{
justify-content:center;
}

.hero-content h1{
font-size:55px;
}

.live-number{
font-size:70px;
}

}

@media(max-width:768px){

.logo-text{
font-size:20px;
}

.site-logo{
width:100%;
height:50px;
}

.hero-section{
padding:80px 0;
}

.hero-content h1{
font-size:42px;
}

.hero-content p{
font-size:16px;
}

.hero-btn{
width:100%;
}

.live-number{
font-size:55px;
}

.discover-title{
font-size:22px;
}

.discover-left{
font-size:16px;
}

}

/* =========================================================
LIVE CHART SECTION
========================================================= */

.live-chart-section{
padding:80px 0;
background:#0b0b0b;
}

/* TITLE */

.result-title{
text-align:center;
font-size:28px;
font-weight:800;
color:#ffe600;
margin-bottom:10px;
}

.result-subtitle{
text-align:center;
font-size:20px;
font-weight:700;
color:#00ff84;
margin-bottom:35px;
}

/* LIVE CHART CARD */

.live-chart-card{
background:#111827;
border-radius:25px;
overflow:hidden;
border:1px solid rgba(255,255,255,.08);
box-shadow:0 0 30px rgba(255,230,0,.08);
margin-bottom:30px;
}

.chart-date{
background: #162133;
    padding: 10px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

/* LIVE TABLE */

.live-table{
margin:0;
color:#fff;
}

.live-table thead{
background:#19273d;
color:#fff;
}

.live-table th{
padding:18px;
text-align:center;
font-size:20px;
font-weight:700;
border-color:rgba(255,255,255,.08);
}

.live-table td{
padding:12px;
text-align:center;
font-size:18px;
font-weight:700;
background:#ece8bc;
color:#000;
border-color:#ccc;
}

.game-text{
color:#005eff !important;
font-weight:800;
font-size:24px;
}

.live-number-box{
font-size:20px !important;
font-weight:600 !important;
}

/* WARNING */

.warning-box{
background:#f1ede3;
padding:30px;
border-radius:20px;
text-align:center;
margin-bottom:25px;
color:#000;
box-shadow:0 0 20px rgba(255,255,255,.05);
}

.warning-content{
font-size:18px;
font-weight:700;
line-height:1.8;
}

.live-status{
margin-top:15px;
font-size:20px;
font-weight:800;
color:#ff0033;
}

/* REFRESH BUTTON */

.refresh-area{
margin-bottom:30px;
}

.refresh-result-btn{
border:none;
padding:14px 45px;
border-radius:12px;
background:#ff0000;
color:#fff;
font-size:18px;
font-weight:800;
transition:.4s;
box-shadow:0 0 25px rgba(255,0,0,.4);
}

.refresh-result-btn:hover{
transform:translateY(-5px);
box-shadow:0 0 40px rgba(255,0,0,.8);
}

/* SHARE BUTTON */

.share-wrapper{
display:flex;
align-items:center;
justify-content:center;
gap:15px;
flex-wrap:wrap;
margin-bottom:35px;
}

.share-count{
font-size:30px;
font-weight:800;
color:#fff;
line-height:1;
text-align:center;
}

.share-count span{
font-size:15px;
color:#aaa;
}

.share-btn{
border:none;
padding:15px 35px;
border-radius:10px;
font-weight:700;
color:#fff;
transition:.4s;
}

.share-btn i{
margin-right:8px;
}

.whatsapp-btn{
background:#25D366;
}

.facebook-btn{
background:#1877F2;
}

.messenger-btn{
background:#3b5998;
}

.share-btn:hover{
transform:translateY(-5px);
}

/* OLD RESULT */

.old-result-card{
background:#111827;
border-radius:20px;
overflow:hidden;
border:1px solid rgba(255,255,255,.08);
}

.old-date{
background:#d8d8d8;
padding:12px;
text-align:center;
font-size:22px;
font-weight:600;
color:#21324b;
}

.old-result-table{
margin:0;
}

.old-result-table td{
padding:12px;
text-align:center;
font-size:18px;
font-weight:700;
background:#f1f1f1;
border-color:#ccc;
color:#000;
}

.result-row td{
background: #ece8bc;
    font-size: 18px;
    font-weight: 600;
}

/* RESPONSIVE */

@media(max-width:768px){

.chart-date{
font-size:22px;
}

.live-table th,
.live-table td{
font-size:16px;
padding:14px;
}

.old-result-table td{
font-size:16px;
padding:14px;
}

.result-row td{
font-size:20px;
}

.share-wrapper{
flex-direction:column;
}

.share-btn{
width:100%;
}

}

/* =========================================================
RED MENU SECTION
========================================================= */

.red-menu-section{
padding:50px 0 30px;
background:#0b0b0b;
}

.menu-buttons-wrapper{
max-width:900px;
margin:auto;
}

/* RED BUTTON */

.red-menu-btn{
width:100%;
display:flex;
align-items:center;
justify-content:center;
gap:12px;
padding:18px 20px;
background:linear-gradient(135deg,#ff0000,#c40000);
border-radius:10px;
margin-bottom:14px;
text-decoration:none;
font-size:18px;
font-weight:800;
color:#fff;
transition:.4s;
box-shadow:0 0 20px rgba(255,0,0,.25);
position:relative;
overflow:hidden;
}

.red-menu-btn::before{
content:'';
position:absolute;
width:120%;
height:100%;
background:rgba(255,255,255,.08);
left:-120%;
top:0;
transform:skewX(30deg);
transition:.6s;
}

.red-menu-btn:hover::before{
left:120%;
}

.red-menu-btn:hover{
transform:translateY(-4px);
box-shadow:0 0 35px rgba(255,0,0,.6);
color:#ffe600;
}

.red-menu-btn i{
font-size:22px;
}

/* =========================================================
CONTENT SECTION
========================================================= */

.content-section{
padding:40px 0 80px;
background:#0b0b0b;
}

.content-wrapper{
max-width:1000px;
margin:auto;
text-align:center;
}

/* HEADING */

.main-heading{
font-size:65px;
font-weight:900;
line-height:1.1;
font-style:italic;
margin-bottom:30px;
color:#000;
text-transform:uppercase;
}

.main-heading span{
color:#ffe600;
text-shadow:0 0 20px rgba(255,230,0,.6);
}

/* PARAGRAPH */

.top-para,
.bottom-para{
font-size:18px;
line-height:2;
color:#000;
margin-bottom:35px;
}

.top-para strong{
color:#ffe600;
}

/* CENTER IMAGE */

.center-image-box{
margin:40px 0;
display:flex;
justify-content:center;
}

.center-logo{
width:260px;
height:260px;
object-fit:contain;
background:#ff0000;
padding:20px;
border-radius:20px;
box-shadow:0 0 40px rgba(255,0,0,.5);
animation:logoPulse 3s infinite;
}

@keyframes logoPulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.05);
}

100%{
transform:scale(1);
}

}

/* TAG LINKS */

.tag-links{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:15px;
margin-top:30px;
}

.tag-links a{
padding:12px 24px;
border-radius:50px;
background:#151515;
border:1px solid rgba(255,255,255,.08);
color:#ffe600;
text-decoration:none;
font-size:16px;
font-weight:700;
transition:.4s;
}

.tag-links a:hover{
background:#ffe600;
color:#000;
transform:translateY(-4px);
box-shadow:0 0 20px rgba(255,230,0,.4);
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:991px){

.main-heading{
font-size:48px;
}

.red-menu-btn{
font-size:20px;
}

}

@media(max-width:768px){

.main-heading{
font-size:34px;
}

.top-para,
.bottom-para{
font-size:16px;
line-height:1.9;
}

.red-menu-btn{
font-size:16px;
padding:16px;
}

.red-menu-btn i{
font-size:16px;
}

.center-logo{
width:200px;
height:200px;
}

.tag-links{
gap:10px;
}

.tag-links a{
font-size:14px;
padding:10px 18px;
}

}

/* =========================================================
DISCOVER LIST SECTION
========================================================= */

.discover-list-section{
padding:80px 0;
background:#0b0b0b;
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
}

/* MAIN BOX */

.discover-box{
background:#111;
border-radius:25px;
overflow:hidden;
border:1px solid rgba(255,255,255,.08);
box-shadow:0 0 35px rgba(255,230,0,.08);
position:relative;
}

/* GLOW */

.discover-box::before{
content:'';
position:absolute;
width:250px;
height:250px;
background:#ffe600;
filter:blur(120px);
opacity:.08;
top:-100px;
right:-100px;
border-radius:50%;
}

/* HEADER */

.discover-header{
padding:28px 30px;
background:#181818;
border-bottom:1px solid rgba(255,255,255,.06);
}

.discover-header h2{
font-size:38px;
font-weight:900;
color:#fff;
margin:0;
}

/* LINK ITEM */

.discover-link{
display:flex;
align-items:center;
justify-content:space-between;
padding:24px 30px;
text-decoration:none;
border-bottom:1px solid rgba(255,255,255,.06);
transition:.4s;
position:relative;
overflow:hidden;
}

.discover-link:last-child{
border-bottom:none;
}

/* HOVER LIGHT */

.discover-link::before{
content:'';
position:absolute;
width:120%;
height:100%;
background:rgba(255,230,0,.05);
left:-120%;
top:0;
transform:skewX(30deg);
transition:.6s;
}

.discover-link:hover::before{
left:120%;
}

/* HOVER */

.discover-link:hover{
background:#181818;
padding-left:40px;
}

/* LEFT */

.discover-left{
display:flex;
align-items:center;
gap:18px;
font-size:18px;
font-weight:700;
color:#fff;
transition:.4s;
}

.discover-left i{
font-size:24px;
color:#ffe600;
width:30px;
text-align:center;
}

/* RIGHT */

.discover-right i{
font-size:24px;
color:#999;
transition:.4s;
}

/* HOVER COLORS */

.discover-link:hover .discover-left{
color:#ffe600;
}

.discover-link:hover .discover-right i{
transform:translateX(6px);
color:#ffe600;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:991px){

.discover-header h2{
font-size:30px;
}

.discover-left{
font-size:20px;
}

}

@media(max-width:768px){

.discover-list-section{
padding:50px 0;
min-height:auto;
}

.discover-header{
padding:22px;
}

.discover-header h2{
font-size:24px;
}

.discover-link{
padding:20px;
}

.discover-left{
font-size:16px;
gap:12px;
}

.discover-left i{
font-size:18px;
}

.discover-right i{
font-size:18px;
}

}

/* =========================================================
PREMIUM CONTAINER LAYOUT FIX
========================================================= */

.old-result-table-section{
padding:80px 0;
background:
linear-gradient(rgba(8,8,8,.96),rgba(8,8,8,.96)),
url('https://images.unsplash.com/photo-1511512578047-dfb367046420?q=80&w=1920');
background-size:cover;
background-position:center;
position:relative;
overflow:hidden;
}

/* MAIN CONTAINER */

.result-container{
max-width:1450px;
margin:auto;
padding:40px;
background:rgba(18,18,18,.92);
backdrop-filter:blur(18px);
border-radius:35px;
border:1px solid rgba(255,255,255,.08);
box-shadow:
0 0 40px rgba(0,0,0,.7),
0 0 80px rgba(255,230,0,.06);
position:relative;
overflow:hidden;
}

/* GLOW EFFECT */

.result-container::before{
content:'';
position:absolute;
width:400px;
height:400px;
background:#ffe600;
filter:blur(180px);
opacity:.08;
top:-150px;
right:-120px;
border-radius:50%;
}

.result-container::after{
content:'';
position:absolute;
width:300px;
height:300px;
background:#ff0000;
filter:blur(160px);
opacity:.05;
bottom:-120px;
left:-120px;
border-radius:50%;
}

/* =========================================================
TITLE
========================================================= */

.old-result-heading{
text-align:center;
font-size:45px;
font-weight:900;
margin-bottom:45px;
color:#fff;
text-transform:uppercase;
letter-spacing:1px;
line-height:1.2;
position:relative;
z-index:2;
}

.old-result-heading span{
color:#ffe600;
text-shadow:0 0 25px rgba(255,230,0,.5);
}

/* SMALL SUBTITLE */

.result-subtitle{
text-align:center;
font-size:18px;
font-weight:600;
color:#cfcfcf;
margin-top:-20px;
margin-bottom:45px;
position:relative;
z-index:2;
}

/* =========================================================
TABLE WRAPPER
========================================================= */

.old-table-wrapper{
background:#141414;
border-radius:28px;
overflow:hidden;
border:1px solid rgba(255,255,255,.08);
position:relative;
z-index:2;
}

/* =========================================================
TABLE
========================================================= */

.old-main-table{
margin:0;
min-width:1300px;
background:#fff;
}

/* TABLE HEAD */

.old-main-table thead{
background:linear-gradient(135deg,#162334,#1d3047);
}

.old-main-table th{
padding:24px 18px;
text-align:center;
font-size:26px;
font-weight:800;
color:#fff;
border-color:rgba(255,255,255,.05);
vertical-align:middle;
}

/* TABLE BODY */

.old-main-table td{
padding:22px 18px;
text-align:center;
font-size:24px;
font-weight:800;
background:#f3f3f3;
border-color:#d8d8d8;
color:#111;
transition:.4s;
vertical-align:middle;
}

/* ROW HOVER */

.old-main-table tbody tr:hover td{
background:#fff5b5;
}

/* DATE COLUMN */

.date-column{
background:linear-gradient(135deg,#162334,#1e3248) !important;
color:#fff !important;
font-size:24px !important;
font-weight:900 !important;
min-width:180px;
letter-spacing:.5px;
}

.date-column span{
display:block;
margin-top:8px;
font-size:18px;
color:#ffe600;
font-weight:700;
}

/* SMALL NUMBER */

.old-main-table td span{
display:block;
margin-top:10px;
font-size:18px;
font-weight:800;
color:red;
}

/* X MARK */

.cross-mark{
font-size:34px !important;
font-weight:900 !important;
color:#ff0000 !important;
background:#fff0f0 !important;
}

/* =========================================================
OFF DAY ROW
========================================================= */

.off-row td{
background:#fff7d7 !important;
}

.off-date{
background:linear-gradient(135deg,#7a0000,#d00000) !important;
}

.off-cell{
padding:40px !important;
}

.off-content{
display:flex;
align-items:center;
justify-content:center;
gap:25px;
flex-wrap:wrap;
}

/* OFF ICON */

.off-icon{
width:85px;
height:85px;
border-radius:50%;
background:linear-gradient(135deg,#ff0000,#b80000);
display:flex;
align-items:center;
justify-content:center;
font-size:40px;
color:#fff;
box-shadow:0 0 25px rgba(255,0,0,.4);
animation:pulseOff 2s infinite;
}

@keyframes pulseOff{

0%{
transform:scale(1);
}

50%{
transform:scale(1.08);
}

100%{
transform:scale(1);
}

}

/* OFF TEXT */

.off-text{
font-size:34px;
font-weight:900;
color:#7c0000;
line-height:1.3;
text-transform:uppercase;
}

.off-text span{
display:block;
margin-top:10px;
font-size:24px;
color:#000;
letter-spacing:2px;
}

/* =========================================================
CUSTOM SCROLLBAR
========================================================= */

.table-responsive::-webkit-scrollbar{
height:10px;
}

.table-responsive::-webkit-scrollbar-thumb{
background:linear-gradient(135deg,#ffe600,#ffae00);
border-radius:50px;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1200px){

.result-container{
padding:25px;
}

.old-result-heading{
font-size:46px;
}

.old-main-table th{
font-size:20px;
padding:18px 14px;
}

.old-main-table td{
font-size:18px;
padding:18px 14px;
}

.date-column{
font-size:20px !important;
}

}

@media(max-width:768px){

.old-result-table-section{
padding:50px 12px;
}

.result-container{
padding:18px;
border-radius:22px;
}

.old-result-heading{
font-size:20px;
margin-bottom:25px;
}

.result-subtitle{
font-size:14px;
margin-bottom:25px;
}

.old-main-table{
min-width:1000px;
}

.old-main-table th{
font-size:15px;
padding:14px 10px;
}

.old-main-table td{
font-size:15px;
padding:14px 10px;
}

.date-column{
font-size:15px !important;
min-width:120px;
}

.date-column span{
font-size:13px;
}

.old-main-table td span{
font-size:13px;
}

.cross-mark{
font-size:22px !important;
}

.off-icon{
width:60px;
height:60px;
font-size:28px;
}

.off-text{
font-size:20px;
}

.off-text span{
font-size:16px;
}

}


/* =========================================================
YEAR CHART SECTION
========================================================= */

.year-chart-section{
padding:80px 0;
background:#0b0b0b;
position:relative;
overflow:hidden;
}

/* =========================================================
DISCOVER BOX
========================================================= */

.premium-discover-box{
background:#111;
border-radius:25px;
overflow:hidden;
border:1px solid rgba(255,255,255,.08);
margin-bottom:60px;
box-shadow:0 0 35px rgba(255,230,0,.08);
}

/* TITLE */


.premium-discover-title {
    padding: 18px 35px;
    background: #181818;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

/* ITEM */

.premium-discover-item{
display:flex;
align-items:center;
justify-content:space-between;
padding:28px 35px;
text-decoration:none;
border-bottom:1px solid rgba(255,255,255,.06);
transition:.4s;
}

.premium-discover-item:last-child{
border-bottom:none;
}

.premium-discover-item:hover{
background:#1c1c1c;
padding-left:45px;
}

/* LEFT */

.discover-left{
display:flex;
align-items:center;
gap:18px;
font-size:18px;
font-weight:700;
color:#fff;
}

.discover-left i{
font-size:24px;
color:#ffe600;
}

/* RIGHT */

.discover-arrow i{
font-size:24px;
color:#aaa;
transition:.4s;
}

.premium-discover-item:hover .discover-arrow i{
transform:translateX(8px);
color:#ffe600;
}

/* =========================================================
YEAR BUTTONS
========================================================= */

.year-chart-wrapper{
display:flex;
flex-direction:column;
gap:18px;
}

/* BUTTON */

.year-chart-btn{
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 35px;
border-radius:18px;
background:linear-gradient(135deg,#ff0000,#c40000);
text-decoration:none;
color:#fff;
font-size:18px;
font-weight:900;
transition:.4s;
position:relative;
overflow:hidden;
box-shadow:0 0 25px rgba(255,0,0,.25);
}

/* SHINE */

.year-chart-btn::before{
content:'';
position:absolute;
width:120%;
height:100%;
background:rgba(255,255,255,.08);
left:-120%;
top:0;
transform:skewX(30deg);
transition:.7s;
}

.year-chart-btn:hover::before{
left:120%;
}

/* HOVER */

.year-chart-btn:hover{
transform:translateY(-5px);
box-shadow:0 0 40px rgba(255,0,0,.5);
color:#ffe600;
}

/* LEFT */

.chart-btn-left{
display:flex;
align-items:center;
gap:16px;
}

.chart-btn-left i{
font-size:28px;
}

/* RIGHT */

.chart-btn-right i{
font-size:26px;
transition:.4s;
}

.year-chart-btn:hover .chart-btn-right i{
transform:translateX(8px);
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:768px){

.year-chart-section{
padding:50px 12px;
}

.premium-discover-title{
font-size:24px;
padding:22px;
}

.premium-discover-item{
padding:22px;
}

.premium-discover-item:hover{
padding-left:28px;
}

.discover-left{
font-size:16px;
gap:12px;
}

.discover-left i{
font-size:18px;
}

.discover-arrow i{
font-size:18px;
}

.year-chart-btn{
padding:18px 22px;
font-size:18px;
border-radius:12px;
}

.chart-btn-left{
gap:10px;
}

.chart-btn-left i{
font-size:18px;
}

.chart-btn-right i{
font-size:18px;
}

}

.ff-result-section{
    background:#f4f7fb;
    position:relative;
    overflow:hidden;
}

.ff-wrapper{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

/* heading */

.ff-heading{
    background:linear-gradient(135deg,#081b29,#16344c);
    padding:45px 20px 35px;
    color:#fff;
}

.ff-heading .mini-title{
    display:inline-block;
    background:#ffcc00;
    color:#000;
    font-size:13px;
    font-weight:700;
    padding:6px 16px;
    border-radius:30px;
    margin-bottom:15px;
}

.ff-heading h2{
    font-size:40px;
    font-weight:800;
    margin-bottom:10px;
}

.ff-heading p{
    margin:0;
    opacity:.85;
    font-size:16px;
}

/* table */

.ff-table{
    margin:0;
}

.ff-table thead{
    background:#eaf1f8;
}

.ff-table thead th{
    padding:18px 25px;
    border:none;
    font-size:18px;
    font-weight:700;
    color:#0b2239;
}

.ff-table tbody tr{
    transition:.3s;
    border-bottom:1px solid #edf2f7;
}

.ff-table tbody tr:hover{
    background:#f8fbff;
    transform:scale(1.01);
}

.ff-table tbody td{
    padding:22px 25px;
    border:none;
    font-size:17px;
    font-weight:600;
    color:#222;
}

.ff-table tbody td span{
    background:linear-gradient(135deg,#0b2239,#1d4c72);
    color:#fff;
    padding:10px 18px;
    border-radius:10px;
    display:inline-block;
    min-width:170px;
    text-align:center;
}

.ff-table tbody td:last-child{
    color:#d40000;
    font-weight:800;
    font-size:18px;
}

/* mobile */

@media(max-width:768px){

    .ff-heading h2{
        font-size:28px;
    }

    .ff-table tbody td,
    .ff-table thead th{
        padding:16px 12px;
        font-size:15px;
    }

    .ff-table tbody td span{
        min-width:auto;
        width:100%;
        font-size:14px;
    }

}

.ff-info-section{
    background:#f4f7fb;
}

.ff-info-wrapper{
    background:#ffffff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

/* header */

.ff-info-header{
    background:linear-gradient(135deg,#081b29,#18364f);
    padding:45px 20px 35px;
    color:#fff;
}

.ff-info-header .info-badge{
    display:inline-block;
    background:#ffcc00;
    color:#000;
    font-size:13px;
    font-weight:700;
    padding:7px 16px;
    border-radius:30px;
    margin-bottom:15px;
}

.ff-info-header h2{
    font-size:40px;
    font-weight:800;
    margin-bottom:10px;
}

.ff-info-header p{
    margin:0;
    opacity:.85;
    font-size:16px;
}

/* table */

.ff-info-table{
    margin:0;
}

.ff-info-table tr{
    transition:.3s;
    border-bottom:1px solid #edf1f5;
}

.ff-info-table tr:hover{
    background:#f8fbff;
}

.ff-info-table td{
    padding:22px 25px;
    vertical-align:middle;
    border:none;
    font-size:16px;
}

/* left side */

.ff-info-table .label{
    width:30%;
    background:linear-gradient(135deg,#102232,#1e3b54);
    color:#fff;
    font-weight:700;
    text-align:center;
    letter-spacing:.3px;
}

/* right side */

.ff-info-table .value{
    background:#fff;
    color:#1d1d1d;
    font-weight:600;
    text-align:center;
}

/* mobile */

@media(max-width:768px){

    .ff-info-header h2{
        font-size:28px;
    }

    .ff-info-table td{
        padding:15px 12px;
        font-size:14px;
    }

    .ff-info-table .label{
        width:40%;
    }

}

/* =========================
COMMON
========================= */

.section-title{
    margin-bottom:45px;
}

.section-title span{
    display:inline-block;
    background:#ffcc00;
    color:#000;
    font-size:13px;
    font-weight:700;
    padding:7px 18px;
    border-radius:30px;
    margin-bottom:15px;
}

.section-title h2{
    font-size:40px;
    font-weight:800;
    color:#081b29;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
    font-size:16px;
}

/* =========================
DISCOVER SECTION
========================= */

.discover-section{
    background:#f4f7fb;
}

.discover-wrapper{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.discover-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
    text-decoration:none;
    border-bottom:1px solid #edf1f5;
    transition:.3s;
}

.discover-item:hover{
    background:#f8fbff;
    transform:translateX(5px);
}

.discover-item:last-child{
    border-bottom:none;
}

.discover-item .left{
    display:flex;
    align-items:center;
    gap:18px;
}

.discover-item .icon{
    width:60px;
    height:60px;
    background:linear-gradient(135deg,#081b29,#204866);
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
}

.discover-item h4{
    font-size:20px;
    font-weight:700;
    color:#111;
    margin-bottom:5px;
}

.discover-item p{
    margin:0;
    color:#666;
}

.discover-item .arrow{
    font-size:24px;
    color:#081b29;
}

/* =========================
FAQ SECTION
========================= */

.faq-section{
    background:#fff;
}

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    border:1px solid #e8edf3;
    border-radius:15px;
    margin-bottom:18px;
    overflow:hidden;
    background:#fff;
}

.faq-question{
    width:100%;
    border:none;
    background:#fff;
    padding:22px 25px;
    font-size:18px;
    font-weight:700;
    color:#081b29;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.faq-question span{
    font-size:28px;
}

.faq-answer{
    padding:0 25px 22px;
    color:#666;
    line-height:1.8;
    display:none;
}

.faq-item.active .faq-answer{
    display:block;
}

/* =========================
CONTENT SECTION
========================= */

.content-section{
    background:#f4f7fb;
}

.content-box{
    background:#fff;
    border-radius:20px;
    padding:50px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.content-block{
    margin-bottom:45px;
}

.content-block:last-child{
    margin-bottom:0;
}

.content-block h2{
    font-size:22px;
    font-weight:600;
    color:#081b29;
    margin-bottom:18px;
    line-height:1.4;
}

.content-block p{
    color:#555;
    line-height:2;
    font-size:17px;
}

/* =========================
TABLE OF CONTENT
========================= */

.toc-section{
    background:#f4f7fb;
}

.toc-box{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    max-width:700px;
}

.toc-header{
    background:linear-gradient(135deg,#081b29,#1c405d);
    padding:22px 30px;
}

.toc-header h3{
    color:#fff;
    font-size:22px;
    font-weight:800;
    margin:0;
}

.toc-list{
    list-style:none;
    padding:30px;
    margin:0;
}

.toc-list li{
    margin-bottom:18px;
}

.toc-list li:last-child{
    margin-bottom:0;
}

.toc-list a{
    text-decoration:none;
    color:#081b29;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.toc-list a:hover{
    color:#d40000;
    padding-left:6px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

    .section-title h2{
        font-size:28px;
    }

    .discover-item{
        padding:18px;
    }

    .discover-item .icon{
        width:50px;
        height:50px;
        font-size:18px;
    }

    .discover-item h4{
        font-size:17px;
    }

    .faq-question{
        font-size:16px;
        padding:18px;
    }

    .faq-answer{
        padding:0 18px 18px;
    }

    .content-box{
        padding:25px;
    }

    .content-block h2{
        font-size:24px;
    }

    .content-block p{
        font-size:15px;
        line-height:1.9;
    }

    .toc-header h3{
        font-size:22px;
    }

    .toc-list{
        padding:22px;
    }

    .toc-list a{
        font-size:16px;
    }

}

.main-footer{
    background:linear-gradient(135deg,#081b29,#1b3d58);
    padding:50px 0 20px;
    color:#fff;
}

.footer-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    padding-bottom:25px;
    border-bottom:1px solid rgba(255,255,255,0.1);
}

.footer-left h3{
    font-size:28px;
    font-weight:800;
    margin-bottom:8px;
}

.footer-left p{
    margin:0;
    color:rgba(255,255,255,0.75);
    font-size:15px;
}

.footer-links{
    display:flex;
    align-items:center;
    gap:25px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    transition:.3s;
}

.footer-links a:hover{
    color:#ffcc00;
}

.footer-bottom{
    text-align:center;
    padding-top:20px;
    color:rgba(255,255,255,0.7);
    font-size:14px;
}

/* mobile */

@media(max-width:768px){

    .footer-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .footer-left h3{
        font-size:24px;
    }

    .footer-links{
        gap:18px;
        flex-wrap:wrap;
        justify-content:center;
    }

}

/* =========================
LIVE RESULT AREA
========================= */

.live-result-area{
    background:#f4f6f9;
    padding-bottom:40px;
}

/* marquee */

.top-live-bar{
    background:#eb0d0d;
    display:flex;
    align-items:center;
    overflow:hidden;
    height:50px;
}

.live-label{
    background:#b80000;
    color:#fff;
    font-size:16px;
    font-weight:800;
    padding:14px 20px;
    white-space:nowrap;
}

.top-live-bar marquee{
    color:#fff;
    font-size:16px;
    font-weight:700;
}

/* date */

.result-date-box{
    background:#f4cf4a;
    color:#111;
    text-align:center;
    padding:20px;
    font-size:34px;
    font-weight:800;
    border-radius:18px 18px 0 0;
    margin-top:25px;
}

.live-dot{
    width:12px;
    height:12px;
    background:#ff9800;
    border-radius:50%;
    display:inline-block;
    margin-right:10px;
}

/* table */

.live-table-wrapper{
    background:#fff;
    border-radius:0 0 18px 18px;
    overflow-x:auto;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.live-result-table{
    min-width:1200px;
    margin:0;
    text-align:center;
}

.live-result-table td{
    border:1px solid #ececec;
    padding:35px 20px;
    width:12.5%;
    transition:.3s;
}

.live-result-table td:hover{
    background:#f8fbff;
}

.game-box h4{
    font-size:17px;
    font-weight:800;
    color:#081b29;
    margin-bottom:18px;
    white-space:nowrap;
}

/* status */

.status{
    display: inline-block;
    min-width: 75px;
    padding: 5px 18px;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}

.status.off{
    background:#444;
}

.status.live{
    background:#00b33c;
    animation:pulse 1s infinite;
}

.status.wait{
    background:#ff9800;
}

@keyframes pulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

    100%{
        transform:scale(1);
    }

}

/* buttons */

.live-btns{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:30px;
    flex-wrap:wrap;
}

.refresh-btn,
.download-btn{
    border: none;
    text-decoration: none;
    padding: 12px 38px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    transition: .3s;
    width: 90%;
    text-align: center;
}

.refresh-btn{
    background:#f4cf4a;
    color:#111;
}

.download-btn{
    background:#eb0d0d;
    color:#fff;
}

.refresh-btn:hover{
    background:#081b29;
    color:#fff;
}

.download-btn:hover{
    background:#b80000;
    color:#fff;
}

/* responsive */

@media(max-width:768px){

    .result-date-box{
        font-size:20px;
        padding:15px;
    }

    .top-live-bar marquee{
        font-size:13px;
    }

    .live-label{
        font-size:13px;
        padding:15px 12px;
    }

    .game-box h4{
        font-size:16px;
    }

    .status{
        min-width:80px;
        padding:8px 12px;
        font-size:12px;
    }

}





/* =========================
GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#f4f6f9;
    font-family:sans-serif;
}

/* =========================
PATTI SECTION
========================= */

.patti-chart-section{
    padding:50px 0;
}

.container{
    width:95%;
    max-width:1200px;
    margin:auto;
}

/* =========================
TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:35px;
}

.live-badge{
    display:inline-block;
    background:#e41212;
    color:#fff;
    padding:10px 22px;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.section-title h1{
    font-size:32px;
    font-weight:700;
    color:#111827;
    margin-bottom:15px;
    text-transform:uppercase;
}

.section-title p{
    font-size:20px;
    color:#555;
    max-width:850px;
    margin:auto;
    line-height:1.8;
}

/* =========================
DISCOVER BOX
========================= */

.discover-box{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    margin-bottom:50px;
}

.discover-title{
    padding:15px 30px;
    background:#f9fafb;
    font-size:20px;
    font-weight:800;
    color:#111827;
    border-bottom:1px solid #eee;
}

.discover-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 30px;
    text-decoration:none;
    color:#111;
    font-size:16px;
    font-weight:600;
    border-bottom:1px solid #eee;
    transition:.3s;
}

.discover-item:last-child{
    border-bottom:none;
}

.discover-item:hover{
    background:#f9fbff;
    padding-left:40px;
}

.discover-item i{
    color:#999;
    font-size:20px;
}

/* =========================
CHART
========================= */

.chart-wrapper{
    /*display:flex;*/
    justify-content:center;
    margin-bottom:50px;
}

.chart-card{
    background:#fff;
    padding:25px;
    border-radius:24px;
    box-shadow:0 12px 35px rgba(0,0,0,0.08);
    max-width:100%;
    overflow:auto;
}

.chart-card img{
    max-width:100%;
    display:block;
    border-radius:12px;
}

/* =========================
SECOND BOX
========================= */

.second-box{
    margin-bottom:0;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:992px){

    .section-title h1{
        font-size:38px;
    }

    .section-title p{
        font-size:17px;
    }

    .discover-title{
        font-size:24px;
    }

    .discover-item{
        font-size:18px;
        padding:22px 20px;
    }

}

@media(max-width:768px){

    .patti-chart-section{
        padding:30px 0;
    }

    .section-title h1{
        font-size:28px;
        line-height:1.4;
    }

    .section-title p{
        font-size:15px;
        line-height:1.8;
    }

    .discover-title{
        font-size:20px;
        padding:18px 20px;
    }

    .discover-item{
        font-size:16px;
        padding:18px 20px;
    }

    .chart-card{
        padding:12px;
        border-radius:18px;
    }

    .live-badge{
        font-size:12px;
        padding:8px 18px;
    }

}

/* =========================
GLOBAL
========================= */


/* =========================
SECTION
========================= */

.tips-page-section{
    padding:50px 0;
}

/* =========================
HEADING
========================= */

.tips-heading{
    text-align:center;
    margin-bottom:45px;
}

.live-badge{
    display:inline-block;
    background:#00d62f;
    color:#111;
    font-size:14px;
    font-weight:800;
    padding:10px 22px;
    border-radius:40px;
    margin-bottom:18px;
}

.tips-heading h1{
    font-size:52px;
    font-weight:900;
    margin-bottom:15px;
    color:#111827;
}

.tips-heading p{
    font-size:18px;
    color:#666;
}

/* =========================
CARD
========================= */

.tips-card,
.info-card,
.content-box{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    margin-bottom:40px;
}

/* =========================
CARD HEADER
========================= */

.card-header{
    background:#111827;
    color:#fff;
    text-align:center;
    padding:22px;
    font-size:30px;
    font-weight:800;
}

.card-subtitle{
    background:#24e000;
    color:#111;
    text-align:center;
    padding:18px;
    font-size:22px;
    font-weight:800;
}

/* =========================
TABLE
========================= */

.tips-table-wrapper{
    padding:35px;
}

.tips-table{
    width:100%;
    border-collapse:collapse;
}

.tips-table td{
    border:2px solid #ddd;
    padding:18px;
    text-align:center;
    font-size:20px;
    font-weight:700;
}

.tips-table tr:hover{
    background:#f9fbff;
}

.bottom-strip{
    background:#24e000;
    color:#d40000;
    text-align:center;
    padding:16px;
    font-size:22px;
    font-weight:800;
}

/* =========================
INFO TABLE
========================= */

.card-title{
    background:#24e000;
    color:#111;
    text-align:center;
    padding:20px;
    font-size:28px;
    font-weight:800;
}

.info-table,
.info-chart-table{
    width:100%;
    border-collapse:collapse;
}

.info-table td,
.info-chart-table td,
.info-chart-table th{
    border:1px solid #e5e7eb;
    padding:18px 22px;
    font-size:18px;
}

.info-table tr:hover,
.info-chart-table tr:hover{
    background:#f9fbff;
}

.info-chart-table th{
    width:35%;
    background:#111827;
    color:#fff;
    text-align:left;
}

/* =========================
CONTENT
========================= */

.content-box{
    padding:40px;
}

.content-box h2{
    font-size:34px;
    font-weight:800;
    margin-bottom:15px;
    color:#111827;
}

.content-box p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:30px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:992px){

    .tips-heading h1{
        font-size:40px;
    }

    .card-header{
        font-size:24px;
    }

    .card-subtitle{
        font-size:18px;
    }

    .tips-table td{
        font-size:16px;
    }

    .card-title{
        font-size:22px;
    }

}

@media(max-width:768px){

    .tips-page-section{
        padding:30px 0;
    }

    .tips-heading h1{
        font-size:28px;
        line-height:1.4;
    }

    .tips-heading p{
        font-size:15px;
    }

    .tips-table-wrapper{
        padding:15px;
        overflow:auto;
    }

    .tips-table{
        min-width:auto;
    }

    .tips-table td{
        padding:14px;
        font-size:16px;
    }

    .bottom-strip{
        font-size:16px;
    }

    .info-table td,
    .info-chart-table td,
    .info-chart-table th{
        padding:14px;
        font-size:14px;
    }

    .content-box{
        padding:25px;
    }

    .content-box h2{
        font-size:24px;
    }

    .content-box p{
        font-size:15px;
        line-height:1.8;
    }

}
.chart-wrapper{
    max-width:1400px;
    margin:auto;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.chart-title{
    background:linear-gradient(45deg,#0f172a,#1e293b);
    color:#fff;
    text-align:center;
    padding:18px;
}

.chart-title h1{
    font-size:30px;
    font-weight:700;
}

.chart-title p{
    margin-top:5px;
    font-size:14px;
    opacity:.8;
}

.table-responsive{
    overflow-x:auto;
}

table{
    width:100%;
    border-collapse:collapse;
    /*min-width:1200px;*/
}

thead th{
    background:#06b6d4;
    color:#fff;
    padding:16px 10px;
    border:1px solid rgba(255,255,255,0.2);
    font-size:18px;
    font-weight:600;
}

tbody td{
    text-align:center;
    padding:16px 10px;
    border:1px solid #e2e8f0;
    font-size:18px;
    font-weight:600;
    color:#111827;
}

tbody tr:nth-child(even){
    background:#f8fafc;
}

tbody tr:hover{
    background:#ecfeff;
    transition:.3s;
}

.date{
    min-width:180px;
    font-weight:700;
    color:#0f172a;
}

.result{
    line-height:1.5;
}

.star{
    color:#dc2626;
}

.footer-btn{
    display:flex;
    justify-content:center;
    gap:15px;
    padding:20px;
    flex-wrap:wrap;
}

.footer-btn a{
    text-decoration:none;
    background:#0f172a;
    color:#fff;
    padding:12px 25px;
    border-radius:8px;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.footer-btn a:hover{
    transform:translateY(-2px);
    background:#06b6d4;
}



.live-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
    width:100%;
}

.game-box{
    background:#fff;
    border-radius:12px;
    padding:14px 6px;
    text-align:center;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
}
.game-box h5{
    font-size:15px !important;
}

.game-box h4{
    font-size:11px;
    font-weight:700;
    margin-bottom:10px;
    line-height:1.4;
}

.status{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:45px;
    height:28px;
    padding:0 10px;
    border-radius:7px;
    color:#fff;
    font-size:11px;
    font-weight:700;
}

.status.live{
    background: #f4cf4a;
    color: #000;
}

.status.wait{
    background:#ff9800;
}

/* mobile */
@media(max-width:575px){

    .live-grid{
        grid-template-columns:repeat(4,1fr);
        gap:8px;
    }

    .game-box{
        padding:12px 4px;
    }

    .game-box h4{
        font-size:12px;
    }

    .status{
        min-width:38px;
        height:24px;
        font-size:12px;
    }

}

/* =========================
   LIVE CHART CARD
========================= */

.live-chart-card{
    background:#fff;
    border-radius:18px;
    padding:18px;
    box-shadow:0 3px 14px rgba(0,0,0,0.08);
    width:100%;
    overflow:hidden;
}

.chart-date{
    background:#f4cc45;
    color:#000;
    text-align:center;
    padding:14px;
    border-radius:12px;
    font-size:20px;
    font-weight:700;
    margin-bottom:18px;
}

/* =========================
   GRID
========================= */

.live-chart-grid{
    display:grid;
    grid-template-columns:repeat(8,1fr);
    gap:12px;
}

/* =========================
   BOX
========================= */

.chart-box{
    background:#f8f9fb;
    border-radius:14px;
    padding:14px 8px;
    text-align:center;
    border:1px solid #ececec;
}

.chart-top{
    margin-bottom:10px;
}

.chart-id{
    display:inline-block;
    background:#000;
    color:#fff;
    font-size:11px;
    font-weight:700;
    padding:4px 8px;
    border-radius:6px;
    margin-bottom:8px;
}

.chart-game{
    display:block;
    font-size:13px;
    font-weight:700;
    color:#111;
    line-height:1.4;
}

.chart-patti{
    font-size:15px;
    font-weight:700;
    color:#222;
    margin-bottom:12px;
}

.live-number-box{
    width:44px;
    height:44px;
    margin:auto;
    border-radius:10px;
    background:#00b339;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:700;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .live-chart-grid{
        grid-template-columns:repeat(8,1fr);
        gap:8px;
    }

    .chart-box{
        padding:12px 5px;
    }

    .chart-game{
        font-size:11px;
    }

    .chart-patti{
        font-size:14px;
    }

    .live-number-box{
        width:34px;
        height:34px;
        font-size:14px;
        border-radius:8px;
    }

}

@media(max-width:480px){

    .live-chart-card{
        padding:12px;
    }

    .chart-date{
        font-size:16px;
        padding:10px;
    }

    .live-chart-grid{
        grid-template-columns:repeat(8,1fr);
        gap:6px;
    }

    .chart-game{
        font-size:10px;
    }

    .chart-patti{
        font-size:11px;
    }

    .live-number-box{
        width:28px;
        height:28px;
        font-size:12px;
    }

}

/* =========================
   OLD RESULT CARD
========================= */

.old-result-card{
    background:#fff;
    border-radius:18px;
    padding:18px;
    margin-bottom:20px;
    box-shadow:0 3px 14px rgba(0,0,0,0.08);
    overflow:hidden;
}

/* =========================
   DATE
========================= */

.old-date{
    background:#111;
    color:#fff;
    text-align:center;
    padding:14px;
    border-radius:12px;
    font-size:20px;
    font-weight:700;
    margin-bottom:18px;
}

/* =========================
   GRID
========================= */

.old-result-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}

/* =========================
   BOX
========================= */

.old-result-box{
    background:#f8f9fb;
    border:1px solid #ececec;
    border-radius:14px;
    padding:14px 8px;
    text-align:center;
}

.old-session-name{
    font-size:13px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
    line-height:1.4;
}

.old-patti{
    font-size:15px;
    font-weight:700;
    color:#222;
    margin-bottom:12px;
}

.old-number{
    width:42px;
    height:42px;
    margin:auto;
    border-radius:10px;
    background:#ff0000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:700;
}

/* =========================
   TABLET
========================= */

@media(max-width:768px){

    .old-result-grid{
        grid-template-columns:repeat(4,1fr);
        gap:8px;
    }

    .old-result-box{
        padding:12px 5px;
    }

    .old-session-name{
        font-size:11px;
    }

    .old-patti{
        font-size:12px;
    }

    .old-number{
        width:34px;
        height:34px;
        font-size:14px;
        border-radius:8px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:480px){

    .old-result-card{
        padding:12px;
    }

    .old-date{
        font-size:16px;
        padding:10px;
    }

    .old-result-grid{
        grid-template-columns:repeat(4,1fr);
        gap:6px;
    }

    .old-session-name{
        font-size:10px;
    }

    .old-patti{
        font-size:11px;
    }

    .old-number{
        width:auto;
        height:28px;
        font-size:12px;
    }

}

/* =========================
   FF INFO SECTION
========================= */

.ff-info-section{
    background:#f4f6f9;
}

.ff-info-wrapper{
    background:#fff;
    border-radius:22px;
    padding:24px;
    box-shadow:0 4px 18px rgba(0,0,0,0.08);
    overflow:hidden;
}

/* =========================
   HEADER
========================= */

.ff-info-header{
    margin-bottom:24px;
}

.info-badge{
    display:inline-block;
    background:#ffcc00;
    color:#000;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    margin-bottom:14px;
}

.ff-info-header h2{
    font-size:34px;
    font-weight:800;
    margin-bottom:10px;
    color:#111;
}

.ff-info-header p{
    font-size:16px;
    color:#666;
}

/* =========================
   GRID
========================= */

.ff-info-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

/* =========================
   CARD
========================= */

.info-card{
    background:#f8f9fb;
    border:1px solid #ececec;
    border-radius:18px;
    padding:18px;
    transition:0.3s;
}

.info-card:hover{
    transform:translateY(-3px);
}

.info-label{
    display:block;
    font-size:14px;
    font-weight:700;
    color:#ff0000;
    margin-bottom:8px;
}

.info-value{
    display:block;
    font-size:16px;
    font-weight:600;
    color:#111;
    line-height:1.6;
}

/* =========================
   TABLET
========================= */

@media(max-width:768px){

    .ff-info-wrapper{
        padding:18px;
    }

    .ff-info-header h2{
        font-size:26px;
    }

    .ff-info-grid{
        gap:12px;
    }

    .info-card{
        padding:14px;
    }

    .info-label{
        font-size:12px;
    }

    .info-value{
        font-size:14px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:480px){

    .ff-info-grid{
        grid-template-columns:1fr;
        gap:10px;
    }

    .ff-info-wrapper{
        padding:14px;
        border-radius:18px;
    }

    .ff-info-header{
        margin-bottom:18px;
    }

    .ff-info-header h2{
        font-size:22px;
        line-height:1.4;
        color:#fff;
    }

    .ff-info-header p{
        font-size:13px;
    }

    .info-card{
        border-radius:14px;
        padding:12px;
    }

    .info-label{
        font-size:11px;
        margin-bottom:6px;
    }

    .info-value{
        font-size:13px;
        line-height:1.5;
    }

}


/* =========================
   RESULT TIME TABLE
========================= */

.ff-result-section{
    background:#f4f6f9;
}

.ff-wrapper{
    background:#fff;
    border-radius:22px;
    padding:24px;
    box-shadow:0 4px 18px rgba(0,0,0,0.08);
    overflow:hidden;
}

/* =========================
   HEADER
========================= */

.ff-heading{
    margin-bottom:24px;
}

.mini-title{
    display:inline-block;
    background:#ffcc00;
    color:#000;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    margin-bottom:14px;
}

.ff-heading h2{
    font-size:34px;
    font-weight:800;
    color:#111;
    margin-bottom:10px;
}

.ff-heading p{
    font-size:16px;
    color:#666;
}

/* =========================
   GRID
========================= */

.ff-time-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

/* =========================
   CARD
========================= */

.time-card{
    background:#f8f9fb;
    border:1px solid #ececec;
    border-radius:18px;
    padding:20px 12px;
    text-align:center;
    transition:0.3s;
}

.time-card:hover{
    transform:translateY(-4px);
}

.time-icon{
    width:54px;
    height:54px;
    margin:auto;
    margin-bottom:14px;
    border-radius:50%;
    background:#ff0000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.draw-name{
    font-size:15px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
    line-height:1.5;
}

.draw-time{
    display:inline-block;
    background:#ffcc00;
    color:#000;
    padding:8px 14px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
}

/* =========================
   TABLET
========================= */

@media(max-width:768px){

    .ff-wrapper{
        padding:18px;
    }

    .ff-heading h2{
        font-size:26px;
    }

    .ff-time-grid{
        grid-template-columns:repeat(4,1fr);
        gap:10px;
    }

    .time-card{
        padding:14px 6px;
        border-radius:14px;
    }

    .time-icon{
        width:42px;
        height:42px;
        font-size:18px;
        margin-bottom:10px;
    }

    .draw-name{
        font-size:11px;
    }

    .draw-time{
        font-size:11px;
        padding:6px 10px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:480px){

    .ff-wrapper{
        padding:14px;
        border-radius:18px;
    }

    .ff-heading{
        margin-bottom:18px;
    }

    .ff-heading h2{
        font-size:22px;
        line-height:1.4;
    }

    .ff-heading p{
        font-size:13px;
    }

    .ff-time-grid{
        grid-template-columns:repeat(4,1fr);
        gap:8px;
    }

    .time-card{
        padding:12px 4px;
    }

    .time-icon{
        width:34px;
        height:34px;
        font-size:15px;
    }

    .draw-name{
        font-size:10px;
        margin-bottom:8px;
    }

    .draw-time{
        font-size:10px;
        padding:5px 8px;
        border-radius:20px;
    }

}


/* =========================
   OLD RESULT SECTION
========================= */

.old-result-table-section{
    background:#f4f6f9;
    padding:40px 0;
    overflow:hidden;
}

.container-fluid{
    width:100%;
    padding:0 12px;
}

/* =========================
   TITLE
========================= */

.old-result-heading{
    text-align:center;
    font-size:34px;
    font-weight:800;
    color:#111;
    margin-bottom:30px;
}

.old-result-heading span{
    color:#ff0000;
}

/* =========================
   MAIN GRID
========================= */

.old-result-grid{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 6px;
}

/* =========================
   DAY CARD
========================= */

.result-day-card{
    background:#fff;
    border-radius:18px;
    padding:18px;
    box-shadow:0 3px 14px rgba(0,0,0,0.08);
}

/* =========================
   DATE BOX
========================= */

.date-box{
    background: #f4cf4a;
    color: #000;
    border-radius:14px;
    padding:14px;
    text-align:center;
    margin-bottom:16px;
}

.day-name{
    font-size:20px;
    font-weight:800;
    margin-bottom:4px;
}

.day-date{
    font-size:14px;
    opacity:0.9;
}

/* =========================
   RESULT ITEMS
========================= */

.result-items{
    display:grid;
    grid-template-columns:repeat(8,1fr);
    gap:1px;
}

/* =========================
   ITEM
========================= */

.result-item{
    background:#f8f9fb;
    border:1px solid #ececec;
    border-radius:14px;
    padding:14px 8px;
    text-align:center;
}

.session-id{
    width:28px;
    height:28px;
    margin:auto;
    margin-bottom:10px;
    border-radius:50%;
    background:#ff0000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700;
}

.patti-number{
    font-size:15px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
}

.single-number{
    width:38px;
    height:38px;
    margin:auto;
    border-radius:10px;
    background:#00b339;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:700;
}

/* =========================
   TABLET
========================= */

@media(max-width:768px){

    .old-result-heading{
        font-size:18px;
    }

    .result-day-card{
        padding:14px;
        border-radius:16px;
    }

    .result-items{
        grid-template-columns:repeat(8,1fr);
        gap:1px;
    }

    .result-item{
        padding:10px 4px;
    }

    .patti-number{
        font-size:12px;
    }

    .single-number{
        width:30px;
        height:30px;
        font-size:13px;
        border-radius:8px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:480px){

    .container-fluid{
        padding:0 8px;
    }

    .old-result-heading{
        font-size:18px;
        margin-bottom:20px;
    }

    .result-day-card{
        padding:12px;
    }

    .date-box{
        padding:10px;
        border-radius:10px;
        margin-bottom:12px;
        background: #f4cf4a;
    color: #000;
    }

    .day-name{
        font-size:16px;
    }

    .day-date{
        font-size:12px;
    }

    .result-items{
        grid-template-columns:repeat(8,1fr);
        gap:1px;
    }

    .result-item{
        padding:8px 2px;
        border-radius:10px;
    }

    .session-id{
        width:22px;
        height:22px;
        font-size:10px;
        margin-bottom:8px;
    }

    .patti-number{
        font-size:12px;
        margin-bottom:8px;
    }

    .single-number{
        width:auto;
        height:24px;
        font-size:11px;
        border-radius:6px;
    }

}

/* =========================
   CHART WRAPPER
========================= */

.chart-wrapper{
    width:100%;
    padding:20px 10px;
    background:#f4f6f9;
    overflow:hidden;
}

/* =========================
   TITLE
========================= */

.chart-title{
    text-align:center;
    margin-bottom:25px;
}

.chart-title h1{
    font-size:34px;
    font-weight:800;
    color:#111;
    margin-bottom:10px;
}

.chart-title p{
    font-size:16px;
    color:#666;
}

/* =========================
   CARD
========================= */

.chart-day-card{
    background:#fff;
    border-radius:18px;
    padding:16px;
    margin-bottom:20px;
    box-shadow:0 3px 14px rgba(0,0,0,0.08);
}

/* =========================
   DATE BOX
========================= */

.chart-date-box{
    background:#111;
    color:#fff;
    text-align:center;
    padding:14px;
    border-radius:12px;
    font-size:20px;
    font-weight:700;
    margin-bottom:16px;
}

/* =========================
   GRID
========================= */

.chart-grid{
    display:grid;
    grid-template-columns:repeat(8,1fr);
    gap:10px;
}

/* =========================
   BOX
========================= */

.chart-box{
    background:#f8f9fb;
    border:1px solid #ececec;
    border-radius:14px;
    padding:14px 6px;
    text-align:center;
}

.chart-time{
    font-size:11px;
    font-weight:700;
    color:#ff0000;
    margin-bottom:10px;
}

.chart-patti{
    font-size:15px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
}

.chart-number{
    width:36px;
    height:36px;
    margin:auto;
    border-radius:10px;
    background:#00b339;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    font-weight:700;
}

/* =========================
   FOOTER BUTTONS
========================= */

.footer-btn{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:20px;
    flex-wrap:wrap;
}

.footer-btn a{
    background:#111;
    color:#fff;
    text-decoration:none;
    padding:12px 22px;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
    transition:0.3s;
}

.footer-btn a:hover{
    background:#ff0000;
}

/* =========================
   TABLET
========================= */

@media(max-width:768px){

    .chart-title h1{
        font-size:24px;
    }

    .chart-grid{
        grid-template-columns:repeat(8,1fr);
        gap:8px;
    }

    .chart-box{
        padding:10px 4px;
    }

    .chart-time{
        font-size:9px;
    }

    .chart-patti{
        font-size:11px;
    }

    .chart-number{
        width:28px;
        height:28px;
        font-size:14px;
        border-radius:7px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:480px){

    .chart-wrapper{
        padding:14px 8px;
    }

    .chart-title{
        margin-bottom:18px;
    }

    .chart-title h1{
        font-size:18px;
        line-height:1.5;
        color:#fff;
    }

    .chart-title p{
        font-size:12px;
    }

    .chart-day-card{
        padding:12px;
        border-radius:14px;
    }

    .chart-date-box{
        font-size:15px;
        padding:10px;
        border-radius:10px;
        margin-bottom:12px;
    }

    .chart-grid{
        grid-template-columns:repeat(8,1fr);
        gap:6px;
    }

    .chart-box{
        padding:8px 2px;
        border-radius:10px;
    }

    .chart-time{
        font-size:10px;
        margin-bottom:8px;
    }

    .chart-patti{
        font-size:14px;
        margin-bottom:8px;
    }

    .chart-number{
        width:25px;
        height:25px;
        font-size:14px;
        border-radius:5px;
    }

    .footer-btn a{
        padding:10px 18px;
        font-size:12px;
    }

}