
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');


:root {
    --primary-color: #FF7E07;
    --secondary-color: #1a1a1a;
    --text-color: #ffffff;
    --text-primary-color: #333333;
    --text-secondary-color: #eec982;
    --text-gray: #b3b5be;
    --background-dark: #20222a;
    --nav-link-background-color: #2b2d38;
    --header-background-color: #201f1f;
    --card-featured-background-color: #515567;
    --site-rank-background-color: #fead00;
    --site-rank-border-color: #ffff65;
    --card-background-color: #2c3039;
    --border-radius-lg: 12px;
    --border-radius-md: 8px;
    --border-radius-sm: 8px;
    --container-max-width: 1300px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Mulish";
    background-color: #ffffff;
    color: var(--text-color);
    line-height: 1.6;
}

a {
    display: inline-block;
    line-height: 1;
    text-decoration: none;
    color: var(--primary-color);
}

.custom-scroll h2,
.custom-scroll h3,
.custom-archive-content {
    color: #000;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.d-flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: 0.5rem;
}

.mt-3 {
    margin-top: 24px !important;
}

.mt-4 {
    margin-top: 32px !important;
}

.mt-7 {
    margin-top: 56px !important;
}

.mt-8 {
    margin-top: 64px !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--text-secondary-color) !important;
}

.font-bold {
    font-weight: bold;
}

.btn {
    padding: 8px 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    min-width: 108px;
    width: 100%;
    font-size: 13px;
    color: white;
    background-color: #D66F10;
}

/* Navbar */
.navbar {
    background-color: #FF7E07;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 25px 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin: 0 auto;
    max-width: var(--container-max-width);
}

.navbar-left,
.navbar-right {
    display: flex;
    align-items: center;
}

.navbar-right {
    gap: 0.5rem;
    align-items: flex-start;
}

.navbar-right .menu-toggle {
    margin-top: 0.5rem;
}

.navbar-right a {
    flex: 1;
}

.navbar-right a button {
    width: 100%;
    display: flex;
    gap: 6px;
    justify-content: center;
}

.nav-text {
    display: none;
}

.navbar-right .icon {
    background-color: #D66F10;
    width: 30px;
    height: 30px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;

}

.logo {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;

}

.logo a {
    display: inline-block;
    line-height: 1;
}

.logo img {
    width: 100%;
}

.logo .highlight {
    color: var(--primary-color);
}

.auth-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 198px;
    gap: 15px
}




.nav-links {

    padding: 0.5rem 0;
    font-weight: bold;
    display: none;
    list-style: none;

    z-index: 9999;
}

.nav-links a {
    padding: 0.5rem 0;
    color: var(--text-color);
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 14px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links .active {
    color: var(--primary-color);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: 0.3s;
}

/* Mobile Menu */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 112px;
    left: 0;
    right: 0;
    background-color: var(--nav-link-background-color);
    padding: 1rem;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    padding-left: 1rem;
    list-style-type: none;
    display: none;
}

.dropdown svg {
    margin-left: 0.5rem;
}


#banner {
    margin-top: 90px;
}

#promotion {
    display: flex;
    flex-direction: column;
    background: #000;
    padding: 32px 0;
    align-items: center;
    margin-top: -10px;
}
#promotion  img{
    width: max-content;
}
#promotion .img-register{
    margin: 32px 0 42px ;
}
.list-promotion{
    display: grid
;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
}
.promotion-item{

    position: relative;
}
.promotion-item a{
    display: block;
}
.overlay{
      position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(45, 45, 45, 1), rgba(45, 45, 45, 0));
  border-radius: 10px;
}
.promotion-item .meta{
    bottom: 16px;
    position: absolute;
    width: 100%;
    display: flex;
    gap: 5px;
    color: #fff;
    flex-direction: column;
    text-align: center;
}
.promotion-item .meta .name{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
}
.promotion-item .meta .description{
    font-size: 14px;
    
}



@media (min-width: 463px) {
    #scrollTopBtn {
        bottom: 120px;
    }
}

@media (min-width: 576px) {


    .auth-buttons {
        max-width: unset;
    }

    .hero {
        margin-top: 69px;
    }

    .nav-links.active {
        top: 69px;
    }

    .site-footer-item div {
        flex-direction: row;
        justify-content: flex-start;
    }

    .site-footer-item>div>* {
        flex: 1;
    }
}

/* Desktop Styles */
@media (min-width: 768px) {



    .navbar {}

    .navbar-container {
        display: flex;
        max-width: var(--container-max-width);
        flex-wrap: wrap;
        margin: auto;
        padding: 1rem 0;
    }



    .hero {
        margin-top: 73px;
        height: 400px;
    }

    .hero-title {
        font-size: 1.685rem;
        padding: 0;
        margin: 0 auto;
    }

    .betting-sites {
        padding: 0;
    }

    .site-header .premium-container {
        transform: translateX(-32px);
        width: 30%;
        margin-right: -30%;
    }






    .site-info .site-image {
        margin-top: 0;
        width: 164px;
    }

    .site-info::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 100%;
        width: 1px;
        background: rgba(255, 255, 255, 0.1);
    }

    .site-rating {
        margin-top: 0;
        width: auto;
    }

    .site-features {
        grid-area: 1 / 2 / 2 / 4;
        margin-top: 0;
    }

    .site-actions {
        grid-area: 2 / 2 / 3 / 4;
        margin-top: 0;
        align-items: center;
    }

    /* Game categories */
    .game-categories {
        grid-template-columns: repeat(6, 1fr);
    }

    /* Game grid */

    .game-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .intro-section {
        padding: 2rem 2rem;
    }



    .footer-section {
        text-align: left;
    }

    .footer-section:nth-child(3) {
        grid-area: 2 / 2 / 3 / 3;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fit,
                minmax(calc((1100px - 3 * 1.5rem - 64px) / 4), 1fr));
    }

    #scrollTopBtn {
        bottom: 88px;
    }
}

.main-navbar {
    
    position: fixed;
    z-index: 333333333333;
        top: 67px;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (min-width: 992px) {
    .menu-toggle {
        display: none;
    }

    .main-navbar div {
        background-color: #2D2D2D;
        margin: 0 auto;

        display: flex;
        justify-content: center;
        border-radius: 5px;

        max-width: 1300px;
        z-index: 999;
        padding: 0.5rem 1rem;
    }

    .nav-links {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
        padding: 0;
        gap: 2rem;
    }

    .dropdown-content {
        padding-left: 0;
        list-style-type: none;
        display: none;
        position: absolute;
        background-color: var(--nav-link-background-color);
        min-width: 200px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .dropdown:hover .dropdown-content {
        display: block;
        top: 100%;
        padding-top: 8px;
    }

    .dropdown-content a {
        padding: 0.5rem 1rem;
        display: block;
    }

    .dropdown-content a:hover {
        background-color: #E86C00;
        color: var(--text-color);
    }

    .hero {
        margin-top: 118px;
    }
}

.footer-content {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    gap: 33px;
    margin-bottom: 40px;
}
footer{
    background-color: #000;
    padding-top: 30px;
    border-top: 1px solid #7E7E7E;
    

}
a{
    text-decoration: none;
}
.contact-section p{
    margin: 20px 0 25px;
}
.list-social{
    list-style: none;
    display: flex;
    gap: 25px;
}
.list-social li{
 display: flex;
 gap: 10px;
 color: #fff;
align-items: center;
text-decoration: none;

}
.footer-nav .title{
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
}
.footer-nav li a{
    font-size: 14px;
    color: #B0B0B0;
}
.footer-nav ul{
    display: flex;
    flex-wrap: wrap;
   list-style: none;
   row-gap: 15px;
}
.footer-nav ul li{
    width: 50%;
}
@media screen and (min-width: 1100px) {


    .navbar {
        /* padding: 0 1rem; */
    }

    .navbar-container {
        padding: 5px 0;
    }

    .navbar-left .nav-text {
        display: block;
        padding-left: 4rem;
        position: relative;
    }

    .navbar-left .nav-text::before {
        content: " ";
        position: absolute;
        top: 0;
        left: 0;
        width: 2px;
        height: 100%;
        transform: translateX(32px);
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-links {
        width: var(--container-max-width);
    }

    .betting-sites {
        padding: 0;
    }

    .site-header .premium-container {
        transform: translateX(2px);
        width: auto;
        margin-right: 0;
    }









    .site-footer {
        position: relative;
        grid-template-columns: repeat(4, 1fr);
        padding: 1.5rem 1rem;
    }

    .site-footer-item {
        position: relative;
    }

    .site-footer-item div {
        justify-content: center;
    }

    .site-footer-item::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 100%;
        width: 1px;
        background: rgba(255, 255, 255, 0.1);
    }

    .site-footer-item:last-child::after {
        display: none;
    }

    .site-footer-item>div>* {
        flex: unset;
    }

    .featured .site-actions {
        display: flex;
    }

    .featured .site-image {
        width: 218px;
    }

    /* Game grid */
    .game-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }




}

img {
    max-width: 100%;
}
.list-doitac img{
   object-fit: contain;
}
.list-doitac {
    background-color: #2d2d2d;
}
.list-doitac .wrapper{
    display: flex;
    gap: 35px;
    padding: 10px 0;
   margin: 0 auto;
   max-width: 1300px ;
}
#banner img{
    width: 100%;
}

@media (max-width:992px) {
.main-navbar{
    position: unset;
    transform: none;
}
    #banner{
        margin-top: 135px;
    }
    .footer-content, .list-doitac{
        padding: 15px;
    }

    .site-body,.list-promotion,
    .promo-banner,
    .footer-content,
    .gift-section {
        grid-template-columns: 1fr
    }

    .auth-buttons {
        gap: 5px;
    }

    .btn {
        font-size: 12px;
        align-items: center;
        padding: 5px;
    }

    .list-social {
        gap: 10px;
        justify-content: center;
    }

    .banner {
        margin-top: 125px;
    }

    .banner-item {
        padding: 0 15px;
    }

    .banner-content .h1 {
        font-size: 40px;
    }

    .banner-content .title,
    .banner-content .description {
        width: 100%;
    }

    .promo-banner {
        padding: 15px;
    }

    .center-col div {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .center-col .slogan {
        text-align: center;
    }

    .info-col ul li {
        text-align: center;
    }

    .info-col {
        text-align: center;
        padding: 0;
        align-items: center;
    }

    .gift-section {
        padding: 15px;
    }

    .policy-section {
        padding: 15px;
    }

    .policy-section .des {
        width: 100%;
    }

    .site-card,
    .site-body {
        padding: 15px;
    }

    .site-action {
        flex-direction: row;
        margin-top: 15px;
    }

    .betting-site {
        gap: 0;
    }

    .site-body {
        border: none;
    }

    .intro .custom-scroll {
        padding: 0 15px;
    }

    .footer {
       
    }
    .wrapper{
        flex-wrap: wrap;
    }

    .footer-logo {
        margin: -15px auto 0px;
    }
    .icon,.user{
        display: none  !important;
    }

    .another-footer div {

        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .main-detail {
        padding: 15px;
        grid-template-columns: 1fr
    }

    .navigations {
        padding: 15px;
    }

    .content-post h2,
    .main-detail .relative-title {
        font-size: 24px;
    }

    .featured-article a,
    .featured-article a img {
        width: 100%;
    }
}