/* =========================================================
   GLOBAL
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f4f4f4;
    color:#222;
    font-family:'Poppins',Arial,sans-serif;
    font-size:13px;
    line-height:1.6;
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

a,
button{
    transition:.3s ease;
}

img{
    max-width:100%;
}

.container{
    width:95%;
    max-width:1280px;
    margin:auto;
}


/* =========================================================
   HEADER
========================================================= */

header{
    width:100%;
    background:linear-gradient(90deg,#7a0000,#d60000);
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 4px 15px rgba(0,0,0,.25);
}

.header,
.header-flex{
    width:94%;
    max-width:1300px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:15px;
}

.header{
    justify-content:space-between;
    padding:10px 0;
}

.header-flex{
    justify-content:flex-start;
    padding:10px 0;
}

.logo{
    font-size:26px;
    font-weight:700;
    color:#fff;
    text-transform:uppercase;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.logo a{
    color:#fff;
    text-decoration:none;
}

.menu-btn{
    display:none;
    font-size:26px;
    color:#fff;
    cursor:pointer;
}

.header-blog{
    margin-left:auto;
    flex-shrink:0;
}

.header-blog a{
    display:inline-block;
    background:#fff;
    color:#d00000;
    text-decoration:none;
    font-size:14px;
    font-weight:800;
    padding:7px 14px;
    border-radius:7px;
    white-space:nowrap;
}

.header-blog a:hover{
    background:#ffe5e5;
}


/* =========================================================
   NOTICE BAR - COMPACT
========================================================= */

.notice{
    width:100%;
    height:38px;
    background:#ffd500;
    border-bottom:3px solid #c40000;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.notice-text{
    width:100%;
    padding:0 12px;
    color:#111;
    font-size:13px;
    font-weight:700;
    line-height:35px;
    text-align:center;
    white-space:nowrap;
}


/* MOBILE */

@media(max-width:768px){

    .notice{
        height:34px;
    }

    .notice-text{
        padding:0 8px;
        font-size:11px;
        line-height:31px;
    }

}


/* =========================================================
   HERO
========================================================= */

.hero{
    width:100%;
    background:linear-gradient(180deg,#1a1a1a,#000);
    border-bottom:4px solid #ffd700;
    padding:20px 10px;
    text-align:center;
}

.hero h1{
    color:#fff;
    font-size:28px;
    font-weight:800;
    margin-bottom:8px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.hero p{
    color:#ddd;
    font-size:14px;
    margin-bottom:20px;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons{
    width:100%;
    max-width:1280px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:8px;
}

.hero-buttons a{
    display:flex;
    justify-content:center;
    align-items:center;
    height:42px;
    background:linear-gradient(180deg,#d60000,#980000);
    color:#fff;
    font-size:13px;
    font-weight:700;
    border-radius:8px;
    text-decoration:none;
}

.hero-buttons a:hover{
    background:#b30000;
    transform:translateY(-2px);
}


/* =========================================================
   HOMEPAGE SEO SECTION
========================================================= */

.home-seo{
    width:100%;
    background:#fff;
    padding:20px;
    margin:20px 0 15px;
    border-radius:10px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.home-seo h1{
    margin:0 0 12px;
    color:#222;
    font-size:27px;
    line-height:1.35;
    font-weight:800;
}

.home-seo p{
    margin:0 0 12px;
    color:#444;
    font-size:15px;
    line-height:1.7;
}

.home-seo p:last-child{
    margin-bottom:0;
}


/* =========================================================
   RESULT LINKS
========================================================= */

.result-links{
    width:100%;
    background:#fff;
    padding:18px;
    margin:15px 0;
    border-radius:10px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.result-links h2{
    margin:0 0 15px;
    text-align:center;
    font-size:21px;
    color:#222;
}

.result-links-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:8px;
}

.result-links a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:8px;
    background:linear-gradient(180deg,#d60000,#980000);
    color:#fff;
    text-decoration:none;
    border-radius:7px;
    font-size:13px;
    font-weight:700;
    text-align:center;
}

.result-links a:hover{
    background:#b30000;
    transform:translateY(-1px);
}

.telegram-mini{
    width:94%;
    max-width:1000px;
    margin:10px auto;
    padding:8px 10px;
    background:#fff;
    border:1px solid #229ED9;
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:13px;
}

.telegram-mini strong{
    color:#222;
}

.telegram-mini a{
    background:#229ED9;
    color:#fff;
    padding:5px 12px;
    border-radius:5px;
    text-decoration:none;
    font-size:12px;
    font-weight:700;
}

@media(max-width:600px){

    .telegram-mini{
        font-size:11px;
        gap:7px;
        padding:7px;
    }

    .telegram-mini a{
        padding:5px 9px;
        font-size:11px;
    }

}

/* =========================================================
   LIVE RESULT
========================================================= */

.live-result{
    width:100%;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    margin:20px 0;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.live-title{
    background:#b30000;
    color:#fff;
    text-align:center;
    padding:10px;
}

.live-title h2{
    font-size:20px;
    margin:0;
}

.live-title p{
    margin-top:5px;
    font-size:12px;
}
.live-time{
    margin-top:5px;
    color:#ffd700;
    font-size:13px;
    font-weight:700;
    letter-spacing:.2px;
}

.result-table{
    width:100%;
    overflow-x:auto;
}

.result-table table{
    width:100%;
    border-collapse:collapse;
}

.result-table th{
    background:#111;
    color:#fff;
    padding:9px 8px;
    font-size:13px;
}

.result-table td{
    padding:9px 8px;
    border-bottom:1px solid #eee;
    text-align:center;
}

.result-table tr:nth-child(even){
    background:#fafafa;
}

.game-name{
    font-size:15px;
    font-weight:700;
    color:#b30000;
}

.yesterday-box,
.today-box,
.old-result,
.new-result{
    display:inline-block;
    min-width:45px;
    padding:5px 10px;
    border-radius:8px;
    font-weight:700;
    color:#fff;
    font-size:12px;
}

.yesterday-box,
.old-result{
    background:#2563eb;
}

.today-box,
.new-result{
    background:#16a34a;
}


/* =========================================================
   HOMEPAGE INFORMATION
========================================================= */

.home-information{
    width:100%;
    background:#fff;
    padding:20px;
    margin:20px 0;
    border-radius:10px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.home-information h2{
    margin:0 0 12px;
    font-size:22px;
    line-height:1.4;
}

.home-information h3{
    margin:22px 0 8px;
    font-size:18px;
    line-height:1.4;
}

.home-information p{
    color:#444;
    font-size:15px;
    line-height:1.7;
    margin:0 0 12px;
}

.home-information a{
    color:#c40000;
    text-decoration:none;
    font-weight:600;
}

.home-information a:hover{
    text-decoration:underline;
}


/* =========================================================
   FAQ
========================================================= */

.home-faq{
    width:100%;
    background:#fff;
    padding:20px;
    margin:20px 0 25px;
    border-radius:10px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.home-faq h2{
    margin:0 0 10px;
    font-size:22px;
    line-height:1.4;
}

.home-faq details{
    border-bottom:1px solid #eee;
    padding:13px 0;
}

.home-faq details:last-child{
    border-bottom:0;
}

.home-faq summary{
    cursor:pointer;
    font-weight:700;
    color:#222;
    line-height:1.5;
}

.home-faq summary::marker{
    color:#c40000;
}

.home-faq p{
    margin:10px 0 0;
    color:#555;
    font-size:14px;
    line-height:1.7;
}

.home-faq a{
    color:#c40000;
    text-decoration:none;
    font-weight:600;
}


/* =========================================================
   ADS
========================================================= */

.ads-box{
    width:100%;
    background:#fff;
    padding:8px;
    margin:20px 0;
    border-radius:12px;
    border:2px solid #c40000;
    box-shadow:0 5px 15px rgba(0,0,0,.10);
}

.ads-box img{
    width:100%;
    display:block;
    border-radius:8px;
}


/* =========================================================
   CUSTOM ADS
========================================================= */

#Ads1,
#P3,
#PP2,
.custom-ad{
    width:100%;
    border:2px solid #c40000 !important;
    border-radius:14px !important;
    padding:15px !important;
    margin:20px 0 !important;
    box-shadow:none !important;
    overflow:hidden !important;
}

#Ads1,
.custom-ad:nth-of-type(1){
    background:#fff8e7 !important;
}

#P3,
.custom-ad:nth-of-type(2){
    background:#eef9ef !important;
}

#PP2,
.custom-ad:nth-of-type(3){
    background:#eef5ff !important;
}

#Ads1 p,
#P3 p,
#PP2 p,
.custom-ad .ad-title,
.custom-ad > p:first-child{
    background:transparent !important;
    color:#b30000 !important;
    border:0 !important;
    box-shadow:none !important;
    padding:5px 0 !important;
    margin:0 0 12px !important;
    text-align:center !important;
}

#Ads1 p,
#P3 p,
#PP2 p,
.custom-ad p{
    background:transparent !important;
    border:0 !important;
    box-shadow:none !important;
    color:#222 !important;
}

#Ads1 h4,
#P3 h4,
#PP2 h4,
.custom-ad .ad-game-time{
    background:transparent !important;
    border:0 !important;
    box-shadow:none !important;
    padding:5px 0 !important;
    margin:15px 0 !important;
    text-align:center !important;
}

.custom-ad .ad-game-time h3{
    background:transparent !important;
    color:#b30000 !important;
    border:0 !important;
    box-shadow:none !important;
    padding:0 !important;
    margin:0 0 12px !important;
    font-size:20px !important;
    font-weight:800 !important;
}

#Ads1 span,
#P3 span,
#PP2 span,
.custom-ad .payment-box{
    display:block;
    background:transparent !important;
    border:0 !important;
    box-shadow:none !important;
    padding:5px 0 !important;
    margin:15px 0 !important;
    color:#222 !important;
    text-align:center !important;
    font-size:17px !important;
    font-weight:700 !important;
}

#Ads1 h5,
#P3 h5,
#PP2 h5,
.custom-ad .ad-footer{
    background:transparent !important;
    border:0 !important;
    box-shadow:none !important;
    color:#222 !important;
    padding:8px 0 !important;
    margin:15px 0 !important;
    text-align:center !important;
    font-size:15px !important;
    font-weight:700 !important;
}

#Ads1 h6,
#P3 h6,
#PP2 h6,
.custom-ad h6{
    display:none !important;
}


/* =========================================================
   AD BUTTONS
========================================================= */

.custom-ad .ad-buttons{
    width:100% !important;
    display:flex !important;
    flex-direction:row !important;
    gap:0 !important;
    margin-top:15px !important;
    padding:0 !important;
}

.custom-ad .ad-buttons a{
    width:50% !important;
    flex:0 0 50% !important;
    min-height:55px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    padding:10px !important;
    margin:0 !important;
    border-radius:0 !important;
    color:#fff !important;
    text-align:center !important;
    text-decoration:none !important;
    font-size:17px !important;
    font-weight:700 !important;
}

.custom-ad .ad-buttons a:first-child{
    background:#3b8dcc !important;
}

.custom-ad .ad-buttons a:last-child{
    background:#55c963 !important;
}


/* =========================================================
   OLD AD BUTTONS
========================================================= */

#Ads1_sub1,
#Ads1_sub2,
#P3_sub1,
#P3_sub2,
#PP2_sub1,
#PP2_sub2{
    width:50%;
    float:left;
    margin:0;
}

#Ads1_sub2,
#P3_sub2,
#PP2_sub2{
    float:right;
}

#Ads1_sub1 a,
#P3_sub1 a,
#PP2_sub1 a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:55px;
    background:#3b8dcc;
    color:#fff;
    text-decoration:none;
    font-weight:700;
}

#Ads1_sub2 a,
#P3_sub2 a,
#PP2_sub2 a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:55px;
    background:#55c963;
    color:#fff;
    text-decoration:none;
    font-weight:700;
}

#Ads1_clear,
#P3_clear,
#PP2_clear{
    clear:both;
}


/* =========================================================
   FIXED FOOTER BUTTON
========================================================= */

#footer_new{
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    height:60px;
    background:#111;
    border-top:3px solid #c40000;
    display:flex;
    z-index:99999;
    box-shadow:0 -3px 10px rgba(0,0,0,.25);
}

#footer_left,
#footer_right{
    width:50%;
    height:100%;
}

#footer_left a,
#footer_right a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    text-decoration:none;
    font-size:20px;
    font-weight:700;
    color:#fff;
}

#footer_left a{
    background:#d52b1e;
}

#footer_right a{
    background:#4caf45;
}


/* =========================================================
   NEW FOOTER
========================================================= */

.footer{
    width:100%;
    background:#111;
    border-top:4px solid #c40000;
    margin-top:30px;
    padding:35px 10px 20px;
    color:#fff;
}

.footer-container{
    width:95%;
    max-width:1280px;
    margin:auto;

    display:grid;

    grid-template-columns:
        1.4fr
        1fr
        1fr
        1.5fr;

    gap:30px;
}

.footer-brand h2{
    margin:0 0 10px;
    color:#fff;
    font-size:22px;
    font-weight:800;
}

.footer-brand p{
    margin:0;
    color:#ccc;
    font-size:14px;
    line-height:1.7;
}

.footer-section h3,
.footer-disclaimer h3{
    margin:0 0 13px;
    color:#fff;
    font-size:17px;
}

.footer-section ul{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-section li{
    margin-bottom:8px;
}

.footer-section a{
    color:#ddd;
    text-decoration:none;
    font-size:14px;
}

.footer-section a:hover{
    color:#fff;
    text-decoration:underline;
}

.footer-disclaimer p{
    margin:0;
    color:#ccc;
    font-size:13px;
    line-height:1.7;
}

.copyright{
    grid-column:1 / -1;
    border-top:1px solid #333;
    padding-top:18px;
    margin-top:5px;
    text-align:center;
    color:#999;
    font-size:13px;
}


/* =========================================================
   OLD FOOTER CONTENT SUPPORT
========================================================= */

.footer-logo{
    text-align:center;
    margin-bottom:20px;
}

.footer-logo h2{
    color:#fff;
    font-size:22px;
    font-weight:800;
}

.footer-logo p{
    color:#bbb;
    margin-top:5px;
}

.footer-menu,
.footer-links{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.footer-menu a,
.footer-links a{
    color:#fff;
    text-decoration:none;
    background:#b30000;
    padding:8px 14px;
    border-radius:8px;
    font-weight:600;
}

.footer-menu a:hover,
.footer-links a:hover{
    background:#e60000;
}

.footer-copy{
    text-align:center;
    color:#999;
    font-size:14px;
}


/* =========================================================
   OLD INFORMATION CONTENT
========================================================= */

.footer-content{
    margin-top:30px;
    padding:20px;
    background:#1b1b1b;
    color:#ddd;
    line-height:28px;
    border-radius:10px;
}

.footer-content h3,
.footer-content h4,
.footer-content h5{
    color:#fff;
    margin:20px 0 10px;
}

.footer-content p{
    color:#ccc;
    margin-bottom:15px;
}

.footer-content a{
    color:#ffd700;
}

.footer-content span{
    color:#ff4444;
    font-weight:bold;
}


/* =========================================================
   OLD FOOTER IDS
========================================================= */

#A4,
#A5,
#Site1,
#Disclmr,
#A6{
    background:#111;
    color:#fff;
    padding:20px;
    margin:20px 0;
    border:2px solid #c40000;
    border-radius:10px;
    line-height:28px;
}

#A4 h3,
#A4 h4,
#A4 h5,
#A5 h3,
#A5 h4,
#A5 h5,
#Site1 h3,
#Site1 h4,
#Site1 h5,
#Disclmr h3,
#Disclmr h4,
#Disclmr h5,
#A6 h3,
#A6 h4{
    color:#ffd700;
    margin-bottom:12px;
}

#A4 p,
#A5 p,
#Site1 p,
#Disclmr p{
    color:#ddd;
    font-size:15px;
}

#A4 a,
#A5 a,
#Site1 a{
    color:#00bfff;
    text-decoration:none;
}

#Warning{
    background:#2b0000;
    padding:15px;
    border-left:4px solid #ff0000;
    margin:20px 0;
}

#Warning span{
    color:#ff4444;
    font-weight:bold;
}


/* =========================================================
   BLOG LIST
========================================================= */

.blog-header{
    width:100%;
    margin:0 auto;
    padding:25px 0;
    text-align:center;
}

.blog-header h1{
    font-size:30px;
    margin-bottom:8px;
}

.blog-header p{
    font-size:15px;
    color:#666;
}

.blog-grid{
    width:100%;
    margin:0 auto;
    padding:0 0 30px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.blog-card{
    width:100%;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.blog-card img{
    display:block;
    width:100%;
    height:210px;
    object-fit:cover;
}

.blog-card-content{
    padding:18px;
}

.blog-date{
    color:#777;
    font-size:13px;
    margin-bottom:7px;
}

.blog-card h2{
    font-size:20px;
    line-height:1.4;
    margin-bottom:10px;
}

.blog-card h2 a{
    color:#222;
    text-decoration:none;
}

.blog-card p{
    color:#555;
    line-height:1.6;
    margin-bottom:15px;
}

.read-more{
    display:inline-block;
    color:#d00000;
    text-decoration:none;
    font-weight:700;
}

.no-posts{
    width:100%;
    margin:30px auto;
    padding:40px 20px;
    background:#fff;
    text-align:center;
    border-radius:10px;
}


/* =========================================================
   SINGLE BLOG
========================================================= */

.single-blogs{
    width:100%;
    max-width:1000px;
    margin:25px auto 40px;
    padding:25px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
}

.single-blogs-date{
    color:#777;
    font-size:13px;
    margin-bottom:8px;
}

.single-blogs h1{
    font-size:34px;
    line-height:1.3;
    margin:0 0 20px;
    color:#222;
}

.single-blogs-image{
    display:block;
    width:100%;
    max-width:100%;
    height:auto;
    margin:0 0 25px;
    border-radius:8px;
}

.single-blogs-content{
    width:100%;
    font-size:17px;
    line-height:1.8;
    color:#222;
    overflow-wrap:break-word;
}

.single-blogs-content p{
    margin:0 0 18px;
}

.single-blogs-content h2{
    font-size:25px;
    line-height:1.4;
    margin:28px 0 12px;
}

.single-blogs-content h3{
    font-size:21px;
    line-height:1.4;
    margin:24px 0 10px;
}

.single-blogs-content a{
    color:#0066cc;
    text-decoration:underline;
}

.single-blogs-content img{
    display:block;
    width:auto;
    max-width:100%;
    height:auto;
    margin:15px auto;
}

.single-blogs-content iframe{
    max-width:100%;
}

.back-blogs{
    margin-top:30px;
}

.back-blogs a{
    color:#0066cc;
    text-decoration:none;
    font-weight:600;
}


/* =========================================================
   RECORD CHART BUTTON
========================================================= */

.record-chart-button{
    margin-top:12px;
    text-align:center;
}

.record-chart-button a{
    display:inline-block;
    padding:10px 24px;
    background:#222;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    font-weight:700;
    font-size:15px;
}

.record-chart-button a:hover{
    background:#000;
}


/* =========================================================
   RECORD PAGE
========================================================= */

.record-page{
    padding:15px 0 30px;
}

.record-games{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:8px;
    margin-bottom:15px;
}

.record-games a{
    display:block;
    text-align:center;
    padding:11px 5px;
    background:#e53935;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    font-weight:700;
    font-size:14px;
}

.record-games a.active{
    background:#111;
}

.record-title{
    text-align:center;
    background:#fff;
    padding:15px 10px;
    margin-bottom:12px;
    border-radius:6px;
}

.record-title h1{
    margin:0;
    font-size:22px;
}

.record-title p{
    margin:6px 0 0;
    color:#777;
    font-size:13px;
}

.record-filter{
    background:#fff;
    padding:12px;
    border-radius:6px;
    margin-bottom:12px;
}

.record-filter form{
    display:flex;
    gap:8px;
}

.record-filter select,
.record-filter button{
    flex:1;
    min-width:0;
    padding:10px;
    border:1px solid #ddd;
    border-radius:5px;
    font-size:14px;
}

.record-filter button{
    background:#e53935;
    color:#fff;
    border:none;
    font-weight:bold;
}

.record-table-box{
    background:#fff;
    border-radius:6px;
    overflow:hidden;
}

.record-table{
    width:100%;
    border-collapse:collapse;
}

.record-table th{
    background:#111;
    color:#fff;
    padding:11px 7px;
    font-size:14px;
}

.record-table td{
    padding:10px 7px;
    text-align:center;
    border-bottom:1px solid #eee;
    font-size:14px;
}

.record-number{
    font-weight:700;
    font-size:17px;
}

.no-record{
    padding:25px !important;
    color:#777;
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#eee;
}

::-webkit-scrollbar-thumb{
    background:#c40000;
    border-radius:20px;
}


/* =========================================================
   DESKTOP
========================================================= */

@media(min-width:1200px){

    .hero{
        padding:35px 20px;
    }

    .hero h1{
        font-size:40px;
    }

    .hero p{
        font-size:17px;
    }

    .hero-buttons a{
        height:48px;
        font-size:15px;
    }

    #Ads1,
    #P3,
    #PP2,
    .custom-ad{
        max-width:1000px;
        margin:25px auto !important;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:992px){

    .footer-container{
        grid-template-columns:1fr 1fr;
    }

    .footer-brand,
    .footer-disclaimer{
        grid-column:1 / -1;
    }

    .hero-buttons{
        grid-template-columns:repeat(4,1fr);
    }

    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    body{
        width:100%;
        max-width:100%;
        overflow-x:hidden;
    }

    .container{
        width:100%;
        max-width:100%;
        margin:0;
        padding-left:10px;
        padding-right:10px;
    }


    /* HEADER */

    .header,
    .header-flex{
        width:100%;
        max-width:100%;
        padding:8px 10px;
    }

    .logo{
        font-size:20px;
    }

    .header-blog a{
        font-size:12px;
        padding:6px 10px;
    }


    /* HERO */

    .hero{
        padding:18px 10px;
    }

    .hero h1{
        font-size:24px;
        margin-bottom:5px;
    }

    .hero p{
        font-size:13px;
        margin-bottom:12px;
    }

    .hero-buttons{
        grid-template-columns:repeat(4,1fr);
        gap:5px;
    }

    .hero-buttons a{
        height:36px;
        font-size:10px;
        border-radius:6px;
    }


    /* HOMEPAGE */

    .home-seo,
    .result-links,
    .home-information,
    .home-faq{
        padding:16px;
        border-radius:8px;
    }

    .home-seo h1{
        font-size:22px;
    }

    .home-seo p,
    .home-information p{
        font-size:14px;
    }

    .result-links-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .result-links a{
        min-height:40px;
        font-size:12px;
    }


    /* LIVE RESULT */

    .live-result{
        margin:18px 0;
    }

    .live-title h2{
        font-size:19px;
    }

    .result-table th,
    .result-table td{
        padding:8px;
        font-size:12px;
    }

    .game-name{
        font-size:13px;
    }


    /* ADS */

    #Ads1,
    #P3,
    #PP2,
    .custom-ad{
        width:100%;
        padding:10px !important;
        margin:15px 0 !important;
    }

    .custom-ad .ad-title{
        font-size:19px !important;
    }

    .custom-ad p{
        font-size:15px !important;
        line-height:26px !important;
    }

    .custom-ad .ad-buttons{
        display:flex !important;
        flex-direction:row !important;
    }

    .custom-ad .ad-buttons a{
        width:50% !important;
        flex:0 0 50% !important;
        min-height:52px !important;
        font-size:14px !important;
    }


    /* FOOTER */

    .footer{
        padding:30px 10px 20px;
    }

    .footer-container{
        width:100%;
        grid-template-columns:1fr 1fr;
        gap:25px 15px;
    }

    .footer-brand,
    .footer-disclaimer{
        grid-column:1 / -1;
    }

    .footer-section h3,
    .footer-disclaimer h3{
        font-size:16px;
    }

    .footer-section a{
        font-size:13px;
    }


    /* BLOG */

    .blog-header{
        padding:20px 0;
    }

    .blog-header h1{
        font-size:25px;
    }

    .blog-grid{
        width:100%;
        grid-template-columns:1fr;
        padding:0 0 25px;
        gap:15px;
    }

    .blog-card img{
        height:auto;
    }

    .blog-card-content{
        padding:15px;
    }


    /* SINGLE BLOG */

    .single-blogs{
        width:100%;
        margin:15px auto 30px;
        padding:16px;
        border-radius:8px;
    }

    .single-blogs h1{
        font-size:25px;
    }

    .single-blogs-content{
        font-size:16px;
        line-height:1.75;
    }


    /* RECORD */

    .record-page{
        padding-top:10px;
    }

    .record-games{
        grid-template-columns:repeat(2,1fr);
    }

    .record-title h1{
        font-size:19px;
    }

    .record-filter form{
        flex-wrap:wrap;
    }

    .record-filter select,
    .record-filter button{
        flex:1 1 45%;
    }


    /* FIXED FOOTER */

    #footer_new{
        height:55px;
    }

    #footer_left a,
    #footer_right a{
        font-size:17px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:480px){

    .logo{
        font-size:18px;
    }

    .header-blog a{
        font-size:11px;
        padding:5px 9px;
    }

    .hero h1{
        font-size:21px;
    }

    .hero-buttons a{
        height:34px;
        font-size:9px;
    }

    .result-links-grid{
        gap:6px;
    }

    .result-links a{
        padding:8px 4px;
        font-size:11px;
    }

    .footer-container{
        grid-template-columns:1fr;
    }

    .footer-brand,
    .footer-disclaimer{
        grid-column:auto;
    }

    .footer-section{
        width:100%;
    }

}
/* =========================================================
   ADS LINE / GRID LAYOUT
========================================================= */

.ads-container,
.ads-grid{
    width:100%;
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:15px;
    margin:20px 0;
}

.ads-container > *,
.ads-grid > *{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
}


/* Individual ad boxes */

.ads-container .ads-box,
.ads-grid .ads-box,
.ads-container #Ads1,
.ads-container #P3,
.ads-container #PP2,
.ads-grid #Ads1,
.ads-grid #P3,
.ads-grid #PP2,
.ads-container .custom-ad,
.ads-grid .custom-ad{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .ads-container,
    .ads-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

}
/* =========================================================
   DESKTOP WIDTH FIX
========================================================= */

@media (min-width: 769px){

    body{
        width:100%;
        min-width:100%;
        overflow-x:hidden;
    }

    .container{
        width:94%;
        max-width:1280px;
        margin-left:auto;
        margin-right:auto;
    }

    .header-flex{
        width:94%;
        max-width:1280px;
        margin:auto;
    }

    .hero .container{
        width:94%;
        max-width:1280px;
        margin:auto;
    }

    /* LIVE RESULT FULL CONTENT WIDTH */

    .live-result{
        width:100%;
        max-width:1280px;
        margin:25px auto;
    }

    /* ADS */

    .ads-box,
    #Ads1,
    #P3,
    #PP2,
    .custom-ad{
        width:100%;
        max-width:1000px;
        margin:20px auto;
    }

    /* BLOG */

    .blog-header{
        width:94%;
        max-width:1280px;
        margin:auto;
    }

    .blog-grid{
        width:94%;
        max-width:1280px;
        margin:auto;
    }

    /* SINGLE BLOG */

    .single-blogs{
        width:94%;
        max-width:1000px;
        margin:25px auto 40px;
    }

    /* FOOTER */

    .footer > .container{
        width:94%;
        max-width:1280px;
        margin:auto;
    }

    /* FOOTER INFORMATION */

    #A4,
    #A5,
    #Site1,
    #Disclmr,
    #A6{
        width:100%;
        max-width:1280px;
        margin:20px auto;
    }

}