/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.kyc-body-wrapper{
    width: 1156px!important;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /*background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);*/
    background: url(../images/bg.jpg) repeat !important;
    background-size: 100% auto !important;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}
/* Top Header */
.top-header {
    background: linear-gradient(90deg, #13181f 0%, #202934 100%) !important;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo h1 {
    color: #e94560;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-login-register {
    display: flex;
    gap: 15px;
}

.login-btn, .register-btn {
    padding: 10px 25px;
    border: 2px solid #e94560;
    border-radius: 25px;
    color: #eddba9 !important;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2s infinite;
}

.login-btn i, .register-btn i {
    font-size: 16px;
    transition: all 0.3s ease;
    color: #eddba9!important;
}

.login-btn {
    background: linear-gradient(to bottom, #c99a1c 0%, #322f29 45%, #383322 50%, #c18e12 100%);
    border-color: #bf9b3b;
    border: 3px solid #ebc96e;
}

.login-btn:hover {
    background: linear-gradient(to bottom, #c99a1c 0%, #322f29 45%, #383322 50%, #c18e12 100%);
    border-color: #bf9b3b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #bf9b3b, 0 0 20px #bf9b3b;
}

.login-btn:hover i {
    transform: scale(1.1);
    color: #eddba9;
}

.register-btn {
    background: linear-gradient(to bottom, #c99a1c 0%, #322f29 45%, #383322 50%, #c18e12 100%);
    border-color: #bf9b3b;
    border: 3px solid #ebc96e;
}

.register-btn:hover {
    background: linear-gradient(to bottom, #c99a1c 0%, #322f29 45%, #383322 50%, #c18e12 100%);
    border-color: #bf9b3b;
    border: 3px solid #ebc96e;
}

.register-btn:hover i {
    transform: scale(1.1);
    color: #bf9b3b;
}

/* Main Navigation */


.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(to bottom, #36e6e0 0%, #126e73 45%, #14585d 50%, #32e3de 100%);
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    border-radius: 5px;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 99;
    pointer-events: auto;
    user-select: none;
}

.mobile-menu-btn:hover {
    background: linear-gradient(to bottom, #36e6e0 0%, #126e73 45%, #14585d 50%, #32e3de 100%);
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    transform: scale(1.05);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: white;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* Mobile Menu Button Animation */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Close Button - Hidden on Desktop */
.mobile-menu-close {
    display: none;
}

/* Mobile Language Section - Hidden on Desktop */
.mobile-language-section {
    display: none;
}

.nav-menu {
    width: 100%;
    display: flex;
    list-style: none;
    background: linear-gradient(to bottom, #3c4148 0%, #373c42 45%, #2d333a 50%, #363d46 100%);
    padding: 0px 0;
    border-radius: 10px;
}
.nav-menu li{
    flex: 1;
    padding: 0;
    text-align: center;
    margin: 0 auto;
    display: block;
}
.nav-menu li a{
    display: block;
}
.nav-link {
    color: #eddba9;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: -2px;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(to bottom, #c99a1c 0%, #322f29 45%, #383322 50%, #c18e12 100%);
    border-color: #bf9b3b;
    box-shadow: 0 0 10px #bf9b3b;
    transform: translateY(-2px);
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #eddba9;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-user:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Main Layout */
.main-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Sidebar */
.sidebar {
   /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);*/
    border-radius: 15px;
    padding: 0;
    height: fit-content;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

/* .sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    opacity: 0.4;
    filter: blur(0.5px);
} */

.sidebar-section {
    /*background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);*/
    background: url(../images/sidebar-bg.png) repeat;
    background-size: 100% 100%;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #d5caae73;
    position: relative;
}
.sidebar-menu::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffcc33 15%, #fef09f 30%, #fef09f 50%, #fef09f 70%, #ffcc33 85%, transparent);
    box-shadow: 0 0 6px rgba(255, 200, 50, 0.8), 0 0 14px rgba(255, 180, 0, 0.6);
}
.sidebar-menu::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffcc33 15%, #fef09f 30%, #fef09f 50%, #fef09f 70%, #ffcc33 85%, transparent);
    box-shadow: 0 0 6px rgba(255, 200, 50, 0.8), 0 0 14px rgba(255, 180, 0, 0.6);
}
.sidebar-section h3 {
    color: #eddba9;
    padding: 5px 15px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 2px solid #524c3c;
    padding-bottom: 5px;
    position: relative;
    z-index: 1;
}
.sidebar-menu a i.fas {
    color: #eddba9 !important;
}
.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    border-bottom: 1px solid #382f16;
}

.sidebar-menu a {
    color: #eddba9;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    font-weight: 700;
}

.sidebar-menu a:hover {
    background: linear-gradient(to bottom, #fed93a 0%, #7c6c15 45%, #816d16 50%, #fed829 100%);
    color: #0d1017;
    /*transform: translateX(5px);*/
}
.sidebar-menu a:hover i.fas {
    color: #0d1017 !important;
}
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #232d38;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.checkbox-label:hover {
    background: rgba(233, 69, 96, 0.05);
    color: #e94560;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e94560;
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #e94560;
}


#header .dropdown-body {
    position: absolute;
    background: #282828;
    width: 132px;
    list-style: none;
    display: none;
    -webkit-backdrop-filter: blur(22px) brightness(1.15);
    backdrop-filter: blur(22px) brightness(1.15);
    padding: 0;
    top: 76%;
    right: 44px;
    border-radius: 10px;
  }
  #header .dropdown-body.show{display: block;}
  #header .dropdown-body ul {
    padding: 10px 0px;
    list-style: none;
  }
  
  #header .dropdown-body ul li {
    padding: 0px 10px;
  }
  
  #header .dropdown-body ul li a {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    -webkit-text-fill-color: #fff;
    font-weight: 300;
    position: relative;
    border-radius: 10px;
    padding: 0px 15px;
  }
  #header .dropdown-body ul li a p{
    white-space: nowrap;  
  }
  #header .dropdown-body ul li a.active,
  #header .dropdown-body ul li a:hover {
    /* background: #393319; */
    -webkit-backdrop-filter: blur(22px) brightness(1.15);
    backdrop-filter: blur(22px) brightness(1.15);
    color: #fff;
    -webkit-text-fill-color: #fff;
  }
  
  #header .dropdown-body ul li a.red-dot p {
    position: relative;
  }
  
  #header .dropdown-body ul li a.red-dot p:after {
    content: "";
    position: absolute;
    background: red;
    top: 0px;
    right: -20px;
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 50%;
  }
  
  #header .dropdown-body ul li a .total-notification {
    padding: 5px;
    background: red;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #header .dropdown-body ul li a .total-notification span {
    color: #fff;
    -webkit-text-fill-color: #fff;
    font-size: 12px;
  }
  
  #header .dropdown-body ul li a img {
    width: 30px;
    aspect-ratio: 1/1;
  }

/* Hero Section */
.hero-section {
    background:url(../images/banner.png) no-repeat;
    background-size: 100% 100%;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: rgb(19, 19, 19);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 0px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgb(255 255 255 / 90%);
    margin-bottom: 10px;
    line-height: 1.6;
    font-weight: bold;
}

.cta-button {
    background: linear-gradient(to bottom, #36e6e0 0%, #126e73 45%, #14585d 50%, #32e3de 100%);
    border: 2px solid #00ffff;
    padding: 10px 30px;
    border-radius: 30px;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.cta-button:hover {
    background: linear-gradient(to bottom, #32e3de 0%, #14585d 45%, #126e73 50%, #36e6e0 100%);
    border-color: #00ffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.6), 0 0 20px rgba(0, 255, 255, 0.4);
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.casino-chips {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.chip {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.red-chip {
    background: linear-gradient(45deg, #e94560, #c0392b);
}

.blue-chip {
    background: linear-gradient(45deg, #3498db, #2980b9);
}

.green-chip {
    background: linear-gradient(45deg, #27ae60, #229954);
}

.playing-cards {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.card {
    width: 50px;
    height: 70px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.ace-spades { color: #333; }
.king-hearts { color: #e94560; }
.ace-clubs { color: #333; }
.ace-diamonds { color: #e94560; }

.dealer-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #e94560, #f27121);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.hero-navigation {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Games Tabs Section */
.games-tabs-section {
    background: linear-gradient(to bottom, #0e0e10, #131416);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 40px;
    overflow: hidden;
    border: 1px solid #1e2432;
}

.games-tabs-header {
    display: flex;
}
.lobby_, .w1200{
    width: 100%;
    max-width: 1200px;
    height: auto;
    text-align: center;
    margin: 0 auto;
    display: block;
}

/* Sport Slider Styles */
.sport-slider-container {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 20px 0;
}

.sport-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sport-slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.sport-slide {
    min-width: 100%;
    position: relative;
    height: 100%;
}

.slide-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    padding: 40px;
}


/* Sport Slider Navigation */
.sport-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.sport-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.sport-nav-btn:hover {
    background: rgba(233, 69, 96, 0.8);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.sport-nav-btn.prev-btn {
    margin-left: 20px;
}

.sport-nav-btn.next-btn {
    margin-right: 20px;
}

/* Sport Slider Dots */
.sport-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.sport-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sport-dot.active {
    background: #e94560;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(233, 69, 96, 0.6);
}

.sport-dot:hover {
    background: rgba(233, 69, 96, 0.7);
    transform: scale(1.1);
}

/* Responsive Design for Sport Slider */
@media (max-width: 768px) {
    .sport-slider-container {
        height: 350px;
    }
    
    .sport-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .sport-nav-btn.prev-btn {
        margin-left: 10px;
    }
    
    .sport-nav-btn.next-btn {
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .sport-slider-container {
        height: 150px;
    }
}

/* Sport Thumbnail Styles */
.sport-thumbnail {
    background: linear-gradient(to bottom, #090a0c 0%, #090a0c 45%, #090a0c 50%, #090a0c 100%);
    border: 2px solid #fef09f;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px #fef09f;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.sport-thumbnail:hover {
    background: #090a0c;
    backdrop-filter: blur(10px);
    border-color: #fef09f;
    border: 1px solid #fef09f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #fef09f;
}

.sport-thumbnail .game-image {
    position: relative;
    height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    transition: all 0.4s ease;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
}

.sport-thumbnail .game-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.sport-thumbnail:hover .game-image {
    transform: scale(1.08) rotateY(2deg);
}

.sport-thumbnail:hover .game-image img {
    filter: brightness(1.1) contrast(1.1);
    transform: scale(1.05);
}

.sport-thumbnail .game-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(233, 69, 96, 0.1) 0%, 
        rgba(242, 113, 33, 0.1) 25%, 
        rgba(54, 230, 224, 0.1) 75%, 
        rgba(0, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sport-thumbnail:hover .game-image::before {
    opacity: 1;
}

.sport-thumbnail .game-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.sport-thumbnail:hover .game-image::after {
    width: 100px;
    height: 100px;
}

/* Sport Play Overlay */
.sport-thumbnail .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.sport-thumbnail:hover .play-overlay {
    opacity: 1;
}

.sport-thumbnail .play-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, rgb(255 215 0) 0%, rgb(253 218 102) 50%, rgb(124 86 12) 100%);
    border: 2px solid #fef09f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(254, 240, 159, 0.8), 0 6px 12px rgba(0, 0, 0, 0.4);
}

.sport-thumbnail .play-icon:hover {
    background: linear-gradient(180deg, rgb(255 215 0) 0%, rgb(253 218 102) 50%, rgb(124 86 12) 100%);
    border-color: #fef09f;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(254, 240, 159, 0.8), 0 6px 12px rgba(0, 0, 0, 0.4);
}

.sport-thumbnail .play-icon::before {
    content: '\f04b';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 3px;
}


.sport-thumbnail .game-title {
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 2;
    position: relative;
    color: white;
    font-weight: 600;
    padding: 10px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
    text-transform: uppercase;
}
/* Login Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgb(17 24 39 / var(--tw-bg-opacity, 1)) !important;
    margin: 5% auto;
    padding: 0;
    border: 2px solid #cbb04b;
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 0 10px rgb(205 179 77);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 25px;
    border-radius: 17px 17px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ffd700;
    position: relative;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.modal-header h2 {
    color: #ffd700;
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

.close {
    color: #ffd700;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.close:hover {
    color: #ffffff;
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.login-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 5px;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e3c26a ;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e3c26a ;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #36e6e0;
    box-shadow: 0 0 10px rgba(54, 230, 224, 0.3);
    background: rgba(22, 33, 62, 1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.security-code-btn {
    width: 100%;
    padding: 12px 15px;
    background: linear-gradient(to bottom, #36e6e0 0%, #126e73 45%, #14585d 50%, #32e3de 100%);
    border: 2px solid #00ffff;
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.security-code-btn:hover {
    background: linear-gradient(to bottom, #32e3de 0%, #14585d 45%, #126e73 50%, #36e6e0 100%);
    border-color: #00ffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.6), 0 0 20px rgba(0, 255, 255, 0.4);
}

.security-code-btn i {
    margin-right: 8px;
}

.login-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to bottom, #32e3de 0%, #14585d 45%, #126e73 50%, #36e6e0 100%);
    border-color: #00ffff;
    border-radius: 8px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(233, 69, 96, 0.4);
}

.login-submit-btn:hover {
    background: linear-gradient(135deg, #f27121 0%, #e94560 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.6), 0 0 25px rgba(233, 69, 96, 0.4);
}

.login-submit-btn i {
    margin-right: 8px;
    color: #fff !important;
}

/* Register Modal Styles */
.register-form {
    padding: 30px;
}



select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #16213e;
    border-radius: 8px;
    background: rgba(22, 33, 62, 0.8);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: #36e6e0;
    box-shadow: 0 0 10px rgba(54, 230, 224, 0.3);
    background: rgba(22, 33, 62, 1);
}

.form-group select option {
    background: #16213e;
    color: #ffffff;
    padding: 10px;
}

.register-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to bottom, #e1a913 0%, #322f29 45%, #383322 50%, #ddae3d 100%);
    border-color: #c99a1c;
    border: 2px solid #c99a1c;
    border-radius: 8px;
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px #c99a1c;
    text-transform: uppercase;
}

.register-submit-btn:hover {
    background: linear-gradient(to bottom, #e1a913 0%, #322f29 45%, #383322 50%, #ddae3d 100%);
    border-color: #c99a1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px #c99a1c, 0 0 25px #c99a1c;
}

.register-submit-btn i {
    margin-right: 8px;
    color: #000 !important;
}

.close-register {
    color: #ffd700;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.close-register:hover {
    color: #ffffff;
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-width: none;
        border-radius: 10px;
    }
    
    .login-form,
    .register-form {
        padding: 20px 15px;
    }
    
    .modal-header {
        padding: 15px;
        border-radius: 8px 8px 0 0;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    select {
        padding: 10px 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .security-code-btn,
    .login-submit-btn,
    .register-submit-btn {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .close,
    .close-register {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 2% auto;
        width: 98%;
        border-radius: 8px;
    }
    
    .login-form,
    .register-form {
        padding: 15px 10px;
    }
    
    .modal-header {
        padding: 12px;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .form-group input,
    select {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .security-code-btn,
    .login-submit-btn,
    .register-submit-btn {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .security-code-btn i,
    .login-submit-btn i,
    .register-submit-btn i {
        margin-right: 6px;
    }
    
    .close,
    .close-register {
        font-size: 20px;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .modal-content {
        margin: 2% auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .login-form,
    .register-form {
        padding: 15px;
    }
    
    .form-group {
        margin-bottom: 10px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .security-code-btn:hover,
    .login-submit-btn:hover,
    .register-submit-btn:hover {
        transform: none;
    }
    
    .security-code-btn:active,
    .login-submit-btn:active,
    .register-submit-btn:active {
        transform: scale(0.98);
    }
    
    .close:hover,
    .close-register:hover {
        transform: none;
    }
    
    .close:active,
    .close-register:active {
        transform: scale(1.1);
    }
}


/* Mobile user menu styles */
@media (max-width: 768px) {
    .user-menu {
        top: 60px !important;
        right: 10px !important;
        left: 10px !important;
        min-width: auto !important;
        max-width: none !important;
    }
    
    .user-menu-content {
        padding: 12px !important;
    }
    
    .user-info {
        padding: 8px !important;
        font-size: 0.9rem !important;
    }
    
    .menu-item {
        padding: 8px !important;
        font-size: 0.9rem !important;
    }
}
.sport-thumbnail .play-now-btn {
    background: linear-gradient(180deg, rgb(124 86 12) 0%, rgb(253 218 102) 50%, rgb(255 215 0) 100%);
    border: 2px solid #fef09f;
    padding: 12px 25px;
    border-radius: 25px;
    color: #333;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 15px;
    width: calc(100% - 30px);
    box-shadow: 0 0 15px rgba(254, 240, 159, 0.6), 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sport-thumbnail .play-now-btn:hover {
    background: linear-gradient(180deg, rgb(255 215 0) 0%, rgb(253 218 102) 50%, rgb(124 86 12) 100%);
    border-color: #fef09f;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(254, 240, 159, 0.8), 0 6px 12px rgba(0, 0, 0, 0.4);
}

.sport-thumbnail .play-now-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(254, 240, 159, 0.5);
}

/* Sport Thumbnail Grid */
.sport-thumbnail {
    margin-bottom: 20px;
}

/* Responsive Sport Thumbnails */
@media (max-width: 768px) {
    .sport-thumbnail .game-image {
        height: 150px;
        padding: 15px;
    }
    
    .sport-thumbnail .game-title {
        font-size: 1rem;
        padding: 8px;
    }
    
    .sport-thumbnail .play-now-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
        margin: 10px;
        width: calc(100% - 20px);
    }
    .lobby_{
        padding-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .lobby_{
        padding: 0 10px;
        padding-bottom: 50px;

    }
    .sport-thumbnail .game-image {
        height: 150px;
        padding: 10px;
    }
    
    .sport-thumbnail .game-title {
        font-size: 0.9rem;
        padding: 6px;
    }
    
    .sport-thumbnail .play-now-btn {
        padding: 8px 15px;
        font-size: 0.75rem;
        margin: 8px;
        width: calc(100% - 16px);
    }
}
.tab-item {
    flex: 1;
    padding: 5px 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    color: white;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
}
.tab-item i{
    width: 25px;
    height: 25px;
    display: block;
}
.tab-item i.icon-casino{
    background: url(../images/icon/casino.png) no-repeat;
    background-size: 100% 100%;
}
.tab-item i.icon-sport{
    background: url(../images/icon/sport.png) no-repeat;
    background-size: 100% 100%;
}
.tab-item i.icon-fishing{
    background: url(../images/icon/fishing.png) no-repeat;
    background-size: 100% 100%;
}
.tab-item i.icon-lottery{
    background: url(../images/icon/lottery.png) no-repeat;
    background-size: 100% 100%;
}
.tab-item i.icon-poker{
    background: url(../images/icon/poker.png) no-repeat;
    background-size: 100% 100%;
}
.tab-item i.icon-keno{
    background: url(../images/icon/keno.png) no-repeat;
    background-size: 100% 100%;
}
/*  */
.tab-item i.icon-hot{
    background: url(../images/icon/hot.png) no-repeat;
    background-size: 100% 100%;
}
.tab-item i.icon-slot{
    background: url(../images/icon/slot.png) no-repeat;
    background-size: 100% 100%;
}
.tab-item i.icon-crash{
    background: url(../images/icon/crash.png) no-repeat;
    background-size: 100% 100%;
}
.tab-item i.icon-arcade{
    background: url(../images/icon/arcade.png) no-repeat;
    background-size: 100% 100%;
}
.tab-item i.icon-cocks{
    background: url(../images/icon/cocks.png) no-repeat;
    background-size: 100% 100%;
}
.tab-item i.icon-horse{
    background: url(../images/icon/horse.png) no-repeat;
    background-size: 100% 100%;
}
.tab-item i.icon-cricket{
    background: url(../images/icon/cricket.png) no-repeat;
    background-size: 100% 100%;
}
/*  */

.tab-item:hover {
    background: linear-gradient(180deg, rgb(124 86 12) 0%, rgb(253 218 102) 100%);
    border: 2px solid #fef09f;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}
.tab-item:hover> i.casino, .tab-item.active i.casino{
    background: url(../images/icon/casino-hover.png) no-repeat !important;
    background-size: 100% 100%;
}
.tab-item:hover> i.sport, .tab-item.active i.sport{
    background: url(../images/icon/sport-hover.png) no-repeat !important;
    background-size: 100% 100%;
}
.tab-item:hover> i.fishing, .tab-item.active i.fishing{
    background: url(../images/icon/fishing-hover.png) no-repeat !important;
    background-size: 100% 100%;
}
.tab-item:hover> i.lottery, .tab-item.active i.lottery{
    background: url(../images/icon/lottery-hover.png) no-repeat !important;
    background-size: 100% 100%;
}
.tab-item:hover> i.poker, .tab-item.active i.poker{
    background: url(../images/icon/poker-hover.png) no-repeat !important;
    background-size: 100% 100%;
}
.tab-item:hover> i.keno, .tab-item.active i.keno{
    background: url(../images/icon/keno-hover.png) no-repeat !important;
    background-size: 100% 100%;
}
.tab-item.active {
    background: linear-gradient(180deg, rgb(124 86 12) 0%, rgb(253 218 102) 100%);
    border: 2px solid #fef09f;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.tab-item.active:hover {
    background: linear-gradient(to bottom, #a9a8aa, #cfcacb);
    color: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.tab-item.hover-active {
    background: linear-gradient(to bottom, #a9a8aa, #cfcacb);
    color: #333;
    position: relative;
}

.tab-item.hover-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e94560, #f27121);
    border-radius: 2px;
}

.tab-item i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.tab-item span {
    font-size: 0.8rem;
    font-weight: 600;
}

.games-tabs-content {
    background: linear-gradient(to bottom, #090a0c, #090a0c);
    padding: 15px;
    border: 1px solid #1e2432;
}


.tab-content {
    display: none;
}

/* Slider Section */
.slider-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 60px 0;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    padding: 40px;
    position: relative;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    flex: 1;
    padding-right: 40px;
    color: white;
}

.slide-content h2 {
    color: #e94560;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.slide-content h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content .bonus-amount_ {
    color: #f27121;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.slider-btn {
    background: linear-gradient(45deg, #e94560, #f27121);
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.slider-btn:hover {
    background: linear-gradient(45deg, #f27121, #e94560);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.5);
}

.slide-image {
    flex: 1;
    text-align: center;
}

.slide-image img {
    max-width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.nav-btn:hover {
    background: rgba(233, 69, 96, 0.8);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.prev-btn {
    margin-left: -25px;
}

.next-btn {
    margin-right: -25px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #e94560;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(233, 69, 96, 0.6);
}

.dot:hover {
    background: rgba(233, 69, 96, 0.6);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider-section {
        padding: 40px 0;
    }
    
    .slide {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }
    
    .slide-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .slide-content h3 {
        font-size: 2rem;
    }
    
    .slide-image img {
        height: 200px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        margin-left: -20px;
    }
    
    .next-btn {
        margin-right: -20px;
    }
}

.tab-content.active {
    display: block;
}

.tab-content {
    position: relative;
}

.close-tab-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(233, 69, 96, 0.8);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.close-tab-btn:hover {
    background: rgba(233, 69, 96, 1);
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 2px 8px rgba(233, 69, 96, 0.4);
}

.close-tab-btn:active {
    transform: scale(0.95);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Casino Grid */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Casino Thumbnail Styles */
.casino-thumbnail {
    background: #090a0c;
    border: 2px solid #fef09f;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px #fef09f;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    width: 100%;
    height: 400px;
}

.casino-thumbnail:hover {
    background: #090a0c;
    backdrop-filter: blur(10px);
    border-color: #fef09f;
    border: 1px solid #fef09f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #fef09f;
}

.casino-thumbnail .game-image {
    position: relative;
    height: auto;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.casino-thumbnail .game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.casino-thumbnail:hover .game-image img {
    transform: scale(1.05);
}

/* Casino Play Overlay */
.casino-thumbnail .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.casino-thumbnail:hover .play-overlay {
    opacity: 1;
}

.casino-thumbnail .play-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, rgb(255 215 0) 0%, rgb(253 218 102) 50%, rgb(124 86 12) 100%);
    border: 2px solid #fef09f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px #fef09f;
}

.casino-thumbnail .play-icon:hover {
    background: linear-gradient(180deg, rgb(255 215 0) 0%, rgb(253 218 102) 50%, rgb(124 86 12) 100%);
    border-color: #fef09f;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(254, 240, 159, 0.8), 0 6px 12px rgba(0, 0, 0, 0.4);
}

.casino-thumbnail .play-icon::before {
    content: '\f04b';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 3px;
}

/* Casino Info Section */
.casino-info {
    width: 100%;
    padding: 15px;
    text-align: center;
    position: absolute;
    margin: 0 auto;
    left: 0;
    bottom: 0px;
}

.casino-title {
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 15px;
}

.star-rating i {
    color: #ffd700 !important;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.casino-thumbnail .play-now-btn {
    background: linear-gradient(180deg, rgb(255 215 0) 0%, rgb(253 218 102) 50%, rgb(124 86 12) 100%);
    border: 2px solid #fef09f;
    padding: 10px 20px;
    border-radius: 20px;
    color: #333;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.casino-thumbnail .play-now-btn:hover {
    background: linear-gradient(to bottom, #32e3de 0%, #14585d 45%, #126e73 50%, #36e6e0 100%);
    border-color: #00ffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.6), 0 0 20px rgba(0, 255, 255, 0.4);
}

.casino-thumbnail .play-now-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 255, 255, 0.4);
}

/* Slots Grid */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Cocks Grid */
.cocks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Promotion Grid */
.grid-promotion {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.promotion-item {
    background: linear-gradient(to bottom, #36e6e0 0%, #126e73 45%, #14585d 50%, #32e3de 100%);
    border: 2px solid #00ffff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    cursor: default;
}

.promotion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.8);
    border-color: #00ffff;
}

.promotion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(242, 113, 33, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promotion-item:hover::before {
    opacity: 1;
}

.promotion-title {
    color: #e94560;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.promotion-description {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.promotion-amount {
    color: #f27121;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.promotion-btn {
    background: linear-gradient(45deg, #3498db, #2980b9);
    border: 2px solid #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    padding: 12px 25px;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    display: inline-block;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.promotion-btn:hover {
    background: linear-gradient(45deg, #2980b9, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.8);
    border-color: #00ffff;
}

/* Promotion Section Header */
.promotion-section {
    margin: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    color: #e94560;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
}

.section-title i {
    font-size: 2rem;
    color: #f27121 !important;
}

.section-subtitle {
    color: #ffffff;
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Promotion Badge */
.promotion-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

/* Promotion Icon */
.promotion-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.promotion-icon i {
    font-size: 1.5rem;
    color: white !important;
}
.promotion-btn .fas{
    color: #fff !important;
}

/* Promotion Terms */
.promotion-terms {
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 15px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* Promotion Image */
.promotion-image {
    width: 100%;
    height: 220px;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 2px solid rgba(233, 69, 96, 0.3);
}

.promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.promotion-item:hover .promotion-image img {
    transform: scale(1.05);
}

/* Slot Image Styles */
.slot-image {
    position: relative;
    border: 2px solid #fef09f;
    box-shadow: 0 0 10px #fef09f;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}
.slot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slot-image:hover {
    box-shadow: 0 0 20px #fef09f;
    transform: scale(1.02);
}

.slot-title {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(to top, #000000, #14585d14);
    color: white;
    padding: 10px;
    width: 100%;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    z-index: 2;
}

.play-now-btn {
    background: linear-gradient(180deg, rgb(124 86 12) 0%, rgb(253 218 102) 50%, rgb(255 215 0) 100%);
    border: 2px solid #fef09f;
    box-shadow: 0 0 15px rgba(254, 240, 159, 0.6), 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    color: #333;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
}

.play-now-btn:hover {
    background: linear-gradient(180deg, rgb(255 215 0) 0%, rgb(253 218 102) 50%, rgb(124 86 12) 100%);
    border-color: #fef09f;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(254, 240, 159, 0.8), 0 6px 12px rgba(0, 0, 0, 0.4);
}

.play-now-btn:hover i {
    transform: scale(1.1);
    color: #00ffff;
}

.game-thumbnail {
    background: #090a0c;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    height: auto;
}

.game-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.game-thumbnail .game-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.game-thumbnail .game-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgb(0 0 0), transparent);
    color: white;
    padding: 10px;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    z-index: 2;
}


.game-thumbnail .play-now-btn {
    color: #eddba9;
    font-size: 0.8rem;
    background: linear-gradient(to bottom, #c99a1c 0%, #322f29 45%, #383322 50%, #c18e12 100%);
    border-color: #bf9b3b;
    border: 3px solid #ebc96e;
    padding: 4px 20px;
    line-height: 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px auto;
    box-shadow: 0 0 15px rgba(254, 240, 159, 0.6), 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* .game-thumbnail .play-now-btn:hover {
    background: linear-gradient(180deg, rgb(255 215 0) 0%, rgb(253 218 102) 50%, rgb(124 86 12) 100%);
    border-color: #fef09f;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(254, 240, 159, 0.8), 0 6px 12px rgba(0, 0, 0, 0.4);
} */

/* Games Section */
.games-section {
    margin-bottom: 40px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.game-image {
    height: auto;
    position: relative;
    overflow: hidden;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    background: linear-gradient(45deg, #e94560, #f27121);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.game-card h3 {
    padding: 15px;
    text-align: center;
    font-size: 1.1rem;
    color: white;
}

/* Game Image Backgrounds */
.casino-okie {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.poker-cards {
    background: linear-gradient(45deg, #3498db, #5dade2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.roulette-table {
    background: linear-gradient(45deg, #e94560, #f27121);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.blackjack-cards {
    background: linear-gradient(45deg, #9b59b6, #bb8fce);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.slot-machine {
    background: linear-gradient(45deg, #f39c12, #f7dc6f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.baccarat-table {
    background: linear-gradient(45deg, #16a085, #48c9b0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.craps-table {
    background: linear-gradient(45deg, #e74c3c, #f1948a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.roulette-wheel {
    background: linear-gradient(45deg, #8e44ad, #a569bd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

/* Promotional Section */
.promo-section {
    background: #090a0c;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.promo-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}
.promo-left p{
    color: #fff  !important;
}

.promo-left h2 {
    font-size: 2.5rem;
    color: #e94560;
    margin-bottom: 15px;
}

.promo-left h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
}

.bonus-amount_ {
    color: #f27121;
    font-weight: bold;
    font-size: 1.8rem !important;
}

.bonus-features {
    list-style: none;
    margin: 20px 0;
}

.bonus-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.bonus-features i {
    color: #27ae60 !important;
    font-size: 1.2rem;
}

.claim-btn {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    margin-top: 20px;
}

.promo-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.slot-machine-promo {
    width: 150px;
    height: 100px;
    background: linear-gradient(45deg, #f39c12, #f7dc6f);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slot-reels {
    display: flex;
    gap: 5px;
}

.reel {
    width: 30px;
    height: 40px;
    background: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: #333;
}

.roulette-promo {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #e94560, #f27121);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.roulette-wheel-small {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel-numbers {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e94560;
}
.wheel-numbers .number{
    font-size: 1.5rem;
    font-weight: bold;
    color: #e94560;
}
/* Mobile Bottom Menu - Hidden on Desktop */
.mobile-bottom-menu {
    display: none;
}

/* Footer */
.footer {
    /*background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 2px solid #e94560;*/
    padding: 40px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px;
}

.footer-column h4 {
    color: #e94560;
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: #e94560;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sidebar {
        order: 2;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .casino-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-bar {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
        gap: 0;
    }
    
    .logo a img {
        width: 200px;
        height: auto;
    }
    
    .btn-login-register {
        gap: 8px;
        flex-shrink: 0;
    }
    
    .login-btn, .register-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        min-width: auto;
    }
    
    .login-btn i, .register-btn i {
        margin-right: 4px;
        font-size: 0.8rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    .nav-link{
        border-radius: 0 !important;
    }
    .hero-description {
        font-size: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .promo-section {
        display: none;
    }
    .promo-section-betting {
        display: block ;
    }
    
    .sidebar {
        display: none;
    }
    
    
    .casino-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cocks-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-promotion {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .section-title i {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .promotion-icon {
        width: 40px;
        height: 40px;
    }
    
    .promotion-icon i {
        font-size: 1.2rem;
    }
    
    .promotion-badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .promotion-image {
        /* height: 100px; */
        margin-bottom: 12px;
    }
    
    .casino-thumbnail .game-image {
        height: auto;
    }
    
    .casino-title {
        font-size: 1rem;
    }
    
    .star-rating i {
        font-size: 0.9rem;
    }
    
    .casino-thumbnail .play-now-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    /* Mobile Bottom Menu */
    .mobile-bottom-menu {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        border-top: 1px solid #fef09f;
        border-bottom: 2px solid #fef09f;
        background: rgb(20 19 25);
        justify-content: space-around;
        align-items: center;
        padding: 8px 0;
        z-index: 1000;
        height: 60px;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .mobile-bottom-menu::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
      
        background: linear-gradient(
          90deg,
          transparent,
          #ffcc33 15%,
          #7a5400 30%,
          #2b1400 50%,
          #7a5400 70%,
          #ffcc33 85%,
          transparent
        );
      
        box-shadow:
          0 0 6px rgba(255, 200, 50, 0.8),
          0 0 14px rgba(255, 180, 0, 0.6);
      }
      .mobile-bottom-menu::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 2px;
      
        background: linear-gradient(90deg, transparent, #ffcc33 15%, #fef09f 30%, #fef09f 50%, #fef09f 70%, #ffcc33 85%, transparent);
        box-shadow: 0 0 6px rgba(255, 200, 50, 0.8), 0 0 14px rgba(255, 180, 0, 0.6);
      }
    .mobile-menu-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #fef09f;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 5px;
        border-radius: 8px;
        min-width: 50px;
    }
    
    .mobile-menu-item i {
        font-size: 1.2rem;
        margin-bottom: 2px;
        background: linear-gradient(180deg, rgb(255 215 0) 0%, rgb(253 218 102) 50%, rgb(124 86 12) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 1px 2px rgba(254, 240, 159, 0.3);
    }
    
    .mobile-menu-item span {
        font-size: 0.7rem;
        font-weight: 500;
        text-align: center;
        background: linear-gradient(180deg, rgb(255 215 0) 0%, rgb(253 218 102) 50%, rgb(124 86 12) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 1px 2px rgba(254, 240, 159, 0.3);
    }
    .popup-box a.deposit {
        background: #d1c92a !important;
    }
    .mobile-menu-item:hover {
        background: rgba(254, 240, 159, 0.2);
        transform: translateY(-2px);
    }
    
    .mobile-menu-item:active {
        transform: translateY(0);
    }
    
    /* Add bottom padding to prevent content overlap */
    .lobby_ {
        padding-bottom: 80px;
    }
    
    /* Add bottom padding to main content to account for fixed bottom menu */
    .main-layout {
        padding-bottom: 70px;
    }
    
    .mobile-language-section {
        display: block !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100%;
        background: url(../images/sidebar-bg.png?v=1) repeat;
        background-size: 100% 100%;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        transition: left 0.3s ease;
        z-index: 999;
        padding: 0;
        margin: 0;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        overflow-y: scroll;
    }
    .nav-menu:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #ffcc33 15%, #fef09f 30%, #fef09f 50%, #fef09f 70%, #ffcc33 85%, transparent);
        box-shadow: 0 0 6px rgba(255, 200, 50, 0.8), 0 0 14px rgba(255, 180, 0, 0.6);
    }
    .nav-menu:after {
        content: "";
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #ffcc33 15%, #fef09f 30%, #fef09f 50%, #fef09f 70%, #ffcc33 85%, transparent);
        box-shadow: 0 0 6px rgba(255, 200, 50, 0.8), 0 0 14px rgba(255, 180, 0, 0.6);
    }
    .nav-menu.active {
        left: 0;
        z-index: 99999;
    }
    .nav-menu {
         border-radius: 0 !important;
    }
    /* Mobile Menu Header */
    .mobile-menu-header {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 5px 2px;
    }
    
    .mobile-menu-header h3 {
        color: white;
        margin: 0;
        font-size: 1.2rem;
        font-weight: 600;
    }
    
    .mobile-menu-close {
        background: none;
        border: none;
        color: #eddba9;
        font-size: 24px;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }
    
    .nav-menu li {
        width: 100%;
        height: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0 auto;
        flex: none !important;

    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 20px 25px;
        transition: all 0.3s ease;
        display: block;
        text-align: left;
        color: #eddba9;
        text-decoration: none;
        position: relative;
    }
    
    .nav-link:hover {
        background: linear-gradient(180deg, rgb(124 86 12) 0%, rgb(253 218 102) 100%);
        color: #1a1a2e;
        padding-left: 35px;
    }
    
    .nav-link.active {
        background: linear-gradient(180deg, rgb(124 86 12) 0%, rgb(253 218 102) 100%);
        color: #1a1a2e;
        font-weight: 600;
    }
    
    /* Language Dropdown in Mobile Menu */
    .mobile-language-section {
        padding: 20px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: auto;
    }
    
    .mobile-language-label {
        background: linear-gradient(180deg, #ddce90, #e7c462, #b78512, #9b6f13);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 0.9rem;
        margin-bottom: 10px;
        font-weight: 600;
    }
    
    .mobile-language-select {
        width: 100%;
        padding: 10px 15px;
        background: rgb(0 0 0);
        border: 2px solid #253459;
        border-radius: 8px;
        color: #eddba9;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .mobile-language-select:focus {
        outline: none;
    }
    
    .mobile-language-select option {
        background: #16213e;
        color: #ffffff;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .tab-item span{
        font-size: 0.6rem;
        font-weight: 600;
    }
    .logo a img {
        width: 130px;
        max-width: max-content;
    }
    
    .btn-login-register {
        gap: 1px;
    }
    
    .login-btn, .register-btn {
        padding: 6px 5px;
        font-size: 0.6rem;
        border-radius: 5px;
        margin-left: 5px;
        height: 2rem;
        animation: pulse 2s infinite;
    }
    .game-thumbnail .play-now-btn{
        font-size: 0.6rem;
    }
    .login-btn i, .register-btn i {
        margin-right: 3px;
        font-size: 0.75rem;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .mobile-menu-btn {
        width: 35px;
        height: 35px;
        display: flex;
        z-index: 1000;
        position: absolute;
        top: 12px;
    }
    
    .hamburger-line {
        width: 18px;
        height: 2px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 12px 25px;
        min-width: 180px;
    }
    
    .mobile-language-section {
        padding: 15px 20px;
    }
    
    .mobile-language-label {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .mobile-language-select {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        max-width: 200px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .casino-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cocks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-promotion {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .promotion-item {
        padding: 15px;
    }
    
    .promotion-title {
        font-size: 1.3rem;
    }
    
    .promotion-amount {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-title i {
        font-size: 1.3rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .promotion-icon {
        width: 35px;
        height: 35px;
    }
    
    .promotion-icon i {
        font-size: 1rem;
    }
    
    .promotion-badge {
        font-size: 0.6rem;
        padding: 3px 6px;
        top: 10px;
        right: 10px;
    }
    
    .promotion-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .promotion-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .promotion-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .promotion-image {
        /* height: 80px; */
        margin-bottom: 10px;
    }
    
    .casino-thumbnail .game-image {
        height: auto;
    }
    .casino-thumbnail{
        height: 261px;
    }
    .casino-title {
        font-size: 0.9rem;
    }
    
    .star-rating i {
        font-size: 0.8rem;
    }
    
    .casino-thumbnail .play-now-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .features-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ui-widget.ui-dialog{
        width: 100%!important;
        margin-left: 0!important;
        left: 0!important;
    }
    .main-layout {
        padding: 15px;
    }
    
    .hero-section {
        padding: 20px;
    }
    
    .hero-title {
        font-size: 1.3rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-bar {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.cta-button {
    animation: pulse 2s infinite;
}

.game-card {
    animation: fadeInUp 0.6s ease-out;
}


@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(to bottom, #36e6e0 0%, #126e73 45%, #14585d 50%, #32e3de 100%);
    border-radius: 20px;
    padding: 0;
    max-width: 400px;
    width: 90%;
    border: 2px solid #cbb04b;
    box-shadow: 0 0 10px rgb(205 179 77);
    animation: slideInUp 0.3s ease;
}

.modal-header {
    padding: 0 20px;
    border-radius: 18px 18px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #e3c26a;
    margin: 0;
    font-size: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #e3c26a;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input {
    padding: 12px 15px;
    border: 1px solid #e3c26a !important;
    color: #e3c26a !important;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #e94560;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(233, 69, 96, 0.3);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
    background: linear-gradient(45deg, #e94560, #f27121);
    border: none;
    padding: 15px;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Member Center Styles */
.member-center-lobby {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    position: relative;
}

/* Member Profile Section */
.member-profile-section {
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 30px;
}

.profile-avatar {
    font-size: 4rem;
    color: #36e6e0;
    text-shadow: 0 0 20px rgba(54, 230, 224, 0.5);
}

.profile-info {
    flex: 1;
}

.profile-info h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 10px;
}

.username {
    color: #36e6e0;
    text-shadow: 0 0 10px rgba(54, 230, 224, 0.5);
}

.member-level {
    color: #f27121;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.profile-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.stat-value {
    display: block;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-btn {
    padding: 12px 25px;
    border: 2px solid #36e6e0;
    border-radius: 25px;
    background: linear-gradient(45deg, #36e6e0, #00ffff);
    color: #1a1a2e;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(54, 230, 224, 0.3);
}

.action-btn:hover {
    background: linear-gradient(45deg, #00ffff, #36e6e0);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(54, 230, 224, 0.5);
}

.withdraw-btn {
    background: linear-gradient(45deg, #e94560, #f27121);
    border-color: #e94560;
    color: #ffffff;
}

.withdraw-btn:hover {
    background: linear-gradient(45deg, #f27121, #e94560);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.5);
}

/* Member Tabs Section */
.member-tabs-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);

.member-tabs-container {
    display: flex;
    min-height: 600px;
    background: linear-gradient(45deg, #3498db, #2980b9);
}

/* Left Sidebar */
.member-tabs-sidebar {
    width: 300px;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    border-right: 2px solid rgba(54, 230, 224, 0.3);
}

.tab-buttons {
    padding: 20px 0;
}

.tab-btn {
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    border-left: 4px solid transparent;
}

.tab-btn:hover {
    background: linear-gradient(to bottom, #36e6e0 0%, #126e73 45%, #14585d 50%, #32e3de 100%);
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    color: #36e6e0;
}

.tab-btn.active {
    background: linear-gradient(to bottom, #36e6e0 0%, #126e73 45%, #14585d 50%, #32e3de 100%);
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    font-weight: 600;
}

.tab-btn i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Right Content Area */
.member-tabs-content {
    flex: 1;
    padding: 30px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.content-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(54, 230, 224, 0.3);
}

.content-header h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-header p {
    color: #bdc3c7;
    font-size: 1rem;
}

/* Profile Form */
.profile-form {
    max-width: 600px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 500;
    text-align: left;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #00ffff;
    border-radius: 8px;
    background: linear-gradient(to bottom, #36e6e0 0%, #126e73 45%, #14585d 50%, #32e3de 100%);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00ffff;
    background: linear-gradient(to bottom, #32e3de 0%, #14585d 45%, #126e73 50%, #36e6e0 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.6), 0 0 20px rgba(0, 255, 255, 0.4);
}

.form-group input[readonly] {
    background: linear-gradient(to bottom, #36e6e0 0%, #126e73 45%, #14585d 50%, #32e3de 100%);
    color: #ffffff;
    opacity: 0.7;
    cursor: not-allowed;
}

.save-btn {
    background: linear-gradient(45deg, #36e6e0, #00ffff);
    border: 2px solid #36e6e0;
    padding: 15px 30px;
    border-radius: 25px;
    color: #1a1a2e;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(54, 230, 224, 0.3);
}

.save-btn:hover {
    background: linear-gradient(45deg, #00ffff, #36e6e0);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(54, 230, 224, 0.5);
}

/* Deposit Options */
.deposit-options {
    max-width: 800px;
}

.payment-methods h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.method-card {
    background: rgba(22, 33, 62, 0.8);
    border: 2px solid #16213e;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.method-card:hover {
    border-color: #36e6e0;
    background: rgba(54, 230, 224, 0.1);
}

.method-card.active {
    border-color: #36e6e0;
    background: rgba(54, 230, 224, 0.2);
}

.method-card i {
    font-size: 2rem;
    color: #36e6e0;
    margin-bottom: 10px;
    display: block;
}

.method-card span {
    color: #ffffff;
    font-weight: 500;
}

.deposit-form {
    background: rgba(22, 33, 62, 0.5);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(54, 230, 224, 0.3);
}

.deposit-submit-btn {
    background: linear-gradient(45deg, #36e6e0, #00ffff);
    border: 2px solid #36e6e0;
    padding: 15px 30px;
    border-radius: 25px;
    color: #1a1a2e;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 0 15px rgba(54, 230, 224, 0.3);
}

.deposit-submit-btn:hover {
    background: linear-gradient(45deg, #00ffff, #36e6e0);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(54, 230, 224, 0.5);
}

/* Responsive Design for Member Center */
@media (max-width: 768px) {
    .member-center-lobby {
        padding: 5px;
        padding-bottom: 80px; /* Space for mobile bottom menu */
        width: 100%;
        box-sizing: border-box;
    }
    .ui-widget.ui-dialog{
        width: 100%!important;
        margin-left: 0!important;
        left: 0!important;
    }
    
    /* Profile Section Mobile */
    .member-profile-section {
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 15px;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .profile-avatar {
        font-size: 3rem;
    }
    
    .profile-info h2 {
        font-size: 1.5rem;
    }
    
    .profile-stats {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
    
    .profile-actions {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    
    .action-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Tabs Container Mobile */
    .member-tabs-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .member-tabs-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid rgba(0, 255, 255, 0.3);
    }
    
    .tab-buttons {
        display: flex;
        overflow-x: auto;
        padding: 10px 0;
        gap: 5px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .tab-buttons::-webkit-scrollbar {
        display: none;
    }
    
    .tab-btn {
        min-width: 100px;
        text-align: center;
        flex-direction: column;
        gap: 5px;
        padding: 8px 12px;
        font-size: 0.8rem;
        border-radius: 8px;
        margin: 0 2px;
    }
    
    .tab-btn i {
        font-size: 1.2rem;
    }
    
    .member-tabs-content {
        padding: 15px;
    }
    
    /* Form Mobile */
    .profile-form {
        max-width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .save-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 100%;
    }
    
    /* Deposit Options Mobile */
    .method-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .method-card {
        padding: 15px;
    }
    
    .method-card i {
        font-size: 1.5rem;
    }
    
    .deposit-form {
        padding: 20px;
    }
    
    .deposit-submit-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .member-center-lobby {
        padding: 5px;
        padding-bottom: 80px; /* Space for mobile bottom menu */
    }
    
    .member-profile-section {
        padding: 15px;
        border-radius: 10px;
    }
    
    .profile-avatar {
        font-size: 2.5rem;
    }
    
    .profile-info h2 {
        font-size: 1.3rem;
    }
    
    .profile-stats {
        gap: 10px;
    }
    
    .stat-item {
        min-width: 70px;
    }
    
    .stat-value {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .action-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .tab-btn {
        min-width: 80px;
        padding: 6px 8px;
        font-size: 0.7rem;
    }
    
    .tab-btn i {
        font-size: 1rem;
    }
    
    .member-tabs-content {
        padding: 10px;
    }
    
    .content-header h3 {
        font-size: 1.4rem;
    }
    
    .content-header p {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .save-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .method-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .method-card {
        padding: 12px;
    }
    
    .method-card i {
        font-size: 1.3rem;
    }
    
    .deposit-form {
        padding: 15px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .profile-header {
        flex-direction: row;
        text-align: left;
    }
    
    .profile-stats {
        justify-content: flex-start;
    }
    
    .profile-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .member-tabs-container {
        flex-direction: row;
    }
    
    .member-tabs-sidebar {
        width: 250px;
        border-right: 2px solid rgba(0, 255, 255, 0.3);
        border-bottom: none;
    }
    
    .tab-buttons {
        flex-direction: column;
        overflow-x: visible;
        overflow-y: auto;
        max-height: 400px;
    }
    
    .tab-btn {
        min-width: auto;
        flex-direction: row;
        text-align: left;
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .tab-btn i {
        font-size: 1rem;
        margin-right: 8px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .tab-btn {
        min-height: 44px;
        padding: 12px 15px;
    }
    
    .action-btn {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    .save-btn {
        min-height: 44px;
        padding: 12px 25px;
    }
    
    .method-card {
        min-height: 60px;
        padding: 15px;
    }
    
    .form-group input,
    .form-group select {
        min-height: 44px;
        padding: 12px 15px;
    }
    
    /* Force mobile bottom menu to be visible on touch devices */
    .mobile-bottom-menu {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}
}
.fas {
        color: #232d38 !important;
} 
.err_div{
    color: red;
}

/* lang */
 #header .icon-btn {
  background-color: #434343;
  backdrop-filter: blur(22px) brightness(1.15);
  border: none;
  padding: 5px 8px;
  height: 100%;
  margin-left: 5px;
  border-radius: 30px;
  transition: transform 0.3s ease-in-out;
  padding-right: 40px;
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 3px;
  height: 45px;
  border: 1px solid #fef09f;
}
 #header .icon-btn_ {
  background-color: #434343;
  backdrop-filter: blur(22px) brightness(1.15);
  border: none;
  padding: 5px 8px;
  height: 100%;
  margin-left: 5px;
  border-radius: 30px;
  transition: transform 0.3s ease-in-out;
  padding-right: 40px;
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 3px;
  height: 45px;
}
button[type="button"], button[type="submit"], .referral-btn a {
    animation: pulse 2s infinite;
    background: linear-gradient(to bottom, #f4dc8f 0%, #b28211 50%, #8b6914 100%) !important;
    background-size: 20px 90px;
    color: #000 !important;
}
@media (max-width: 1024px) {
  #header .icon-btn {
    padding: 5px;
    justify-content: center;
    width: 30px;
    height: 30px;
    display: none;
  }
  #header .icon-btn_ {
    padding: 5px;
    justify-content: center;
    width: 30px;
    height: 30px;
  }
}

#header .icon-btn span {
  color: #fff;
  -webkit-text-fill-color: #fff;
}
#header .icon-btn_ span {
  color: #fff;
  -webkit-text-fill-color: #fff;
}


@media (max-width: 1024px) {
  #header .icon-btn span {
    display: none;
  }
   #header .icon-btn_ span {
    display: none;
  }
  #header .d-md-block{
    display: block;
}
}

#header .icon-btn img {
  max-width: 30px;
  aspect-ratio: 1/1;
}
#header .icon-btn_ img {
  max-width: 30px;
  aspect-ratio: 1/1;
}

@media (max-width: 1024px) {
  #header .icon-btn img {
    max-width: 18px;
  }
   #header .icon-btn_ img {
    max-width: 18px;
  }
}

#header .icon-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  background: url("../images/arrow-down-white.png") no-repeat center center;
  background-size: contain;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
#header .icon-btn_:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  background: url("../images/arrow-down-white.png") no-repeat center center;
  background-size: contain;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

@media (max-width: 1199px) {
  #header .icon-btn:after {
    display: none;
  }
    #header .icon-btn_:after {
    display: none;
  }
}

#header .icon-btn:focus:after {
  transform: translateY(-50%) rotate(180deg);
}
#header .icon-btn_:focus:after {
  transform: translateY(-50%) rotate(180deg);
}

#header .header-dropdown {
  position: relative;
}

@media (max-width: 1024px) {
  #header .header-dropdown {
    aspect-ratio: 1/1;
  }
}

#header .header-dropdown .show{
display: block!important;
}
.fa-home-footer-icon{
    background: url("../images/h.png"); 
    width: 21px;
    height: 21px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}
#header .header-dropdown .dropdown-body {
  position: absolute;
  background: #282828;
  width: 230px;
  list-style: none;
  display: none;
  -webkit-backdrop-filter: blur(22px) brightness(1.15);
  backdrop-filter: blur(22px) brightness(1.15);
  padding: 0;
  top: 76%;
  right: 0px;
  margin-top: 11px;
  border-radius: 10px;
}

#header .header-dropdown .dropdown-body ul {
  padding: 10px 0px;
  list-style: none;
}

#header .header-dropdown .dropdown-body ul li {
  padding: 0px 10px;
}

#header .header-dropdown .dropdown-body ul li a {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  font-size: 14px;
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-weight: 300;
  position: relative;
  border-radius: 10px;
  padding: 10px 20px;
}

#header .header-dropdown .dropdown-body ul li a.active,
#header .header-dropdown .dropdown-body ul li a:hover {
  /* background: #393319; */
  -webkit-backdrop-filter: blur(22px) brightness(1.15);
  backdrop-filter: blur(22px) brightness(1.15);
  color: #fff;
  -webkit-text-fill-color: #fff;
}

#header .header-dropdown .dropdown-body ul li a.red-dot p {
  position: relative;
}

#header .header-dropdown .dropdown-body ul li a.red-dot p:after {
  content: "";
  position: absolute;
  background: red;
  top: 0px;
  right: -20px;
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
}

#header .header-dropdown .dropdown-body ul li a .total-notification {
  padding: 5px;
  background: red;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#header .header-dropdown .dropdown-body ul li a .total-notification span {
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-size: 12px;
}

#header .header-dropdown .dropdown-body ul li a img {
  width: 30px;
  aspect-ratio: 1/1;
}
/* acc */
.header-dropdown .dropdown-body .icon-dropdown {
  width: 30px;
  height: 30px;
}

.header-dropdown .dropdown-body .icon-profile {
  background: url(../images/auth/my-profile.png) center no-repeat;
  background-size: 100%;
}

.header-dropdown .dropdown-body .icon-deposit {
  background: url(../images/auth/deposit.png) center no-repeat;
  background-size: 100%;
}

.header-dropdown .dropdown-body .icon-withdraw {
  background: url(../images/auth/withdraw.png) center no-repeat;
  background-size: 100%;
}

.header-dropdown .dropdown-body .icon-history {
  background: url(../images/auth/history.png) center no-repeat;
  background-size: 100%;
}

.header-dropdown .dropdown-body .icon-top-vip {
  background: url(../img/header/auth/profile-menu/vip.png) center no-repeat;
  background-size: 100%;
}

.header-dropdown .dropdown-body .icon-referral {
  background: url(../img/header/auth/profile-menu/referral.png) center no-repeat;
  background-size: 100%;
}

.header-dropdown .dropdown-body .icon-inbox {
  background: url(../img/header/auth/profile-menu/inbox.png) center no-repeat;
  background-size: 100%;
}

.header-dropdown .dropdown-body .icon-logout {
  background: url(../images/auth/logout.png) center no-repeat;
  background-size: 100%;
}
.header-dropdown .dropdown-body .icon-password {
  background: url(../images/auth/password.png) center no-repeat;
  background-size: 100%;
}
.header-dropdown .dropdown-body .icon-transfer {
  background: url(../images/auth/transfer.png) center no-repeat;
  background-size: 100%;
}
.header-dropdown .dropdown-body .icon-turnover {
  background: url(../images/auth/turnover.png) center no-repeat;
  background-size: 100%;
}
#header .header-actions>* {
  flex: 1;
}

#header .user-wallet-actions {
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
  max-width: 300px;
  align-items: center;
  padding-right: 50px;
  margin-right: 10px;
  position: relative;
}
@media (max-width: 767px) {
  .user-wallet-actions .btn-theme{
    padding: 9px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  

  #header .dropdown-body {
    position: absolute;
    background: #282828;
    width: 132px;
    list-style: none;
    display: none;
    -webkit-backdrop-filter: blur(22px) brightness(1.15);
    backdrop-filter: blur(22px) brightness(1.15);
    padding: 0;
    top: 76%;
    right: 44px;
    border-radius: 10px;
  }
  #header .dropdown-body.show{display: block;}
  #header .dropdown-body ul {
    padding: 10px 0px;
    list-style: none;
  }
  
  #header .dropdown-body ul li {
    padding: 0px 10px;
  }
  
  #header .dropdown-body ul li a {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    -webkit-text-fill-color: #fff;
    font-weight: 300;
    position: relative;
    border-radius: 10px;
    padding: 0px 15px;
  }
  
  #header .dropdown-body ul li a.active,
  #header .dropdown-body ul li a:hover {
    /* background: #393319; */
    -webkit-backdrop-filter: blur(22px) brightness(1.15);
    backdrop-filter: blur(22px) brightness(1.15);
    color: #fff;
    -webkit-text-fill-color: #fff;
  }
  
  #header .dropdown-body ul li a.red-dot p {
    position: relative;
  }
  
  #header .dropdown-body ul li a.red-dot p:after {
    content: "";
    position: absolute;
    background: red;
    top: 0px;
    right: -20px;
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 50%;
  }
  
  #header .dropdown-body ul li a .total-notification {
    padding: 5px;
    background: red;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #header .dropdown-body ul li a .total-notification span {
    color: #fff;
    -webkit-text-fill-color: #fff;
    font-size: 12px;
  }
  
  #header .dropdown-body ul li a img {
    width: 30px;
    aspect-ratio: 1/1;
  }
}

@media (max-width: 1024px) {
  #header .user-wallet-actions {
    padding-right: 0px;
    margin-right: 0px;
  }
}

#header .user-wallet-actions::after {
  content: "";
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 50%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  height: 100%;
  width: 1px;
  right: 0;
  top: 0;
}

@media (max-width: 1024px) {
  #header .user-wallet-actions::after {
    display: none;
  }
}

#header .user-wallet-actions .header-wallet {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  font-size: 14px;
  color: #fff;
  -webkit-text-fill-color: #fff;
  width: 250px;
  text-wrap: nowrap;
  background: linear-gradient(to bottom, #0a2f28 0%, #0c4937 100%);
  background: #434343;
  border: 1px solid #434343;
  border-radius: 8px;
  padding: 4px 10px;
  flex: 2;
  height: 100%;
}

@media (max-width: 1024px) {
  #header .user-wallet-actions .header-wallet {
    max-width: 200px;
    width: 100%;
    gap: 5px;
    font-size: 12px;
  }
}

#header .user-wallet-actions .header-wallet .icon {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#header .user-wallet-actions .header-wallet .icon img {
  width: 20px;
  height: 20px;
}

@media (max-width: 1024px) {
  #header .user-wallet-actions .header-wallet .icon img {
    width: 15px;
    height: 15px;
  }
}

#header .user-wallet-actions button {
  flex: 1;
}
.btn-theme {
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  padding: 18px 24px;
  line-height: 15px;
  text-align: center;
  width: 100%;
  outline: unset;
  box-shadow: unset;
  text-decoration: none;
  display: block;
  color: var(--btn-color);
  -webkit-text-fill-color: var(--btn-color);
  --btn-color: #fff;
  /* background: linear-gradient(to right, #fadd56, #feb80c); */
  background: linear-gradient(0deg,rgba(220, 61, 5, 1) 20%, rgba(240, 137, 7, 1) 100%);
  border: 1px solid rgba(240, 137, 7, 1);
  white-space: nowrap;
  box-shadow: 0 0 5px 1px rgba(240, 137, 7, 1);
}
p.mb-0 {
    color: #fff;
    -webkit-text-fill-color: #fff;
}
input[type=checkbox] {
    width: 20px;
    height: 14px !important;
}
.center_responsive .flex-grow{
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1)) !important;
}
.center_responsive select, .shadow-sm{
    background: #666 !important;
}
.capch-text{
background: #4f4f4f !important;
}
.bg-white{
      background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1))!important;
}
.bg-gray-50{
    background: none  !important;
}
.ui-datepicker{
  background: #000 !important;
}
input#amount {
    background: #666 !important;
}
.bg-gray-200{
    background: none !important;
}
.duration-200,.text-gray-800,.text-gray-700{
    color: #e3c26a !important;
}
.play-now-btn .fas {
    color: #e3c26a !important;
}
.footer-bottom p{
    color: rgba(255, 255, 255, 0.6);
}
input#refUrl {
    background: transparent;
    color: #e3c26a !important;
}
i.fas.fa-chevron-right,i.fas.fa-chevron-left{
    color: #e3c26a !important;
    font-size: 20px;
}
#copy-btn{
    background-color: #d63031!important;
    width: 50px;
    height: 30px;
    line-height: 30px;
    float: left;
    text-align: center;
    color: #838383;
    border-radius: 15px;
    cursor: pointer;
}
.mobile-btn{
    padding: 2px 3px!important; 
}
a.text-red-600{ color: rgb(254 240 159);}
.flex-grow.p-6 div a, div.max-w-7xl a{color: #e3c26a;}
.border-red-600 {
    --tw-border-opacity: 1;
    border-color: rgb(227 194 106)!important;
}
/* meun scroll */
 .games-tabs-header {
    display: flex;
    gap: 10px;
    padding: 10px;
    overflow-x: auto;              /* horizontal scroll */
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch; /* smooth scroll iOS */
    scrollbar-width: none;         /* hide scrollbar (Firefox) */
}
.games-tabs-header::-webkit-scrollbar {
    display: none;                 /* hide scrollbar (Chrome) */
}
.tab-item {
    /* flex: 0 0 auto;                prevent wrap */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 70px;
    border-radius: 12px;
    background: #1e1e2f;
    color: #fff;
    border: none;
    font-size: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    background: linear-gradient(#000, #000) padding-box, linear-gradient(90deg, #fff1a8, #ffb300, #fff1a8) border-box;
}
.tab-item i {
    font-size: 20px;
    margin-bottom: 5px;
}
.tab-item span{
    background: linear-gradient(180deg, rgb(255 215 0) 0%, rgb(253 218 102) 50%, rgb(124 86 12) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.tab-item.active span, .tab-item:hover span{
    color: #000;
    -webkit-text-fill-color: #000;
}
/* pop up chat and payment */
/* FLOAT BUTTONS */
.float-btn{
  position:fixed;
  right:20px;
  padding:14px 22px;
  border-radius:50px;
  border:none;
  color:#fff;
  cursor:pointer;
  font-size:16px;
  z-index:1000;
}

.chat-btn{bottom:20px;background:#007bff;}
.pay-btn{bottom:80px;background:#28a745;}

/* POPUP OVERLAY */
.popup{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  justify-content:center;
  align-items:center;
  z-index:9;
}

/* POPUP BOX */
.popup-box{
  background:#fff;
  width:90%;
  max-width:360px;
  padding:22px;
  border-radius:14px;
  text-align:center;
  position:relative;
  animation:zoom .3s ease;
}

@keyframes zoom{
  from{transform:scale(.8);opacity:0}
  to{transform:scale(1);opacity:1}
}

/* CLOSE */
.close{
  position:absolute;
  top:0px;
  right:14px;
  font-size:22px;
  cursor:pointer;
}

/* LOGO */
.popup-logo{
  width:60px;
  margin:0 auto 10px;
}
.popup-logo img{width:100%;}

/* ACTION LINKS */
.action-link{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px;
  margin-top:12px;
  color:#fff;
  text-decoration:none;
  border-radius:10px;
  font-size:16px;
}

.action-link i{font-size:20px;}

/* COLORS */
.livechat{background:#ff9800;}
.whatsapp{background:#25D366;}
.telegram{background:#0088cc;}
.deposit{background:#28a745;}
.withdraw{background:#dc3545;}

@media(max-width:600px){
  .float-btn{
    font-size:14px;
    padding:12px 18px;
  }
  .mobile-btn span{
    font-size: 0.8rem; 
  }
}
/* Footer */
.footer {
    background: #000;
    padding: 40px 0 20px;
}

.footer-providers {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 30px;
}

.footer-providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.footer-provider-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    text-align: center;
}

.footer-provider-logo:hover {
    opacity: 1;
}

.footer-provider-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer-navigation {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 20px;
    text-align: center;
}

.footer-nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-nav-links a {
    color: #fef09f;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav-links a:hover {
    color: rgb(255, 215, 0);
}

.footer-nav-links .separator {
    color: #fef09f;
    margin: 0 5px;
}

.footer-description {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 20px;
    text-align: center;
    color: #fef09f;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-container {
    display: none; /* Hide old footer columns */
}

.footer-column h4 {
    color: #e94560;
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: #e94560;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    color: #fef09f;
    font-size: 0.9rem;
}
/*sign*/
.sign {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
    margin: 20px 0;
 }

 .sign li {
    list-style: none;
 }

 .sign li:last-child {
    grid-column: span 2;
 }

 .sign li i {
    background-color: #ccc;
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 10px;
    text-transform: capitalize;
    font-weight: bold;
    height: 70px;
    background-position:center;
    background-repeat: no-repeat;
    background-size: contain;
    text-decoration: none;
 }
 .sign li:nth-child(1) i {
    background-image: url(../images/removebg-preview.png);
 }

 .sign li:nth-child(2) i {
    background-image: url(../images/removebg-preview.png);
 }

 .sign li:nth-child(3) i {
    background-image: url(../images/removebg-preview.png);
 }

 .sign li:nth-child(4) i {
    background-image: url(../images/removebg-preview.png);
 }

 .sign li:nth-child(5) i {
    background-image: url(../images/removebg-preview.png);
 }

 .sign li:nth-child(6) i {
    background-image: url(../images/removebg-preview.png);
 }

 .sign li:nth-child(7) i {
    background-image: url(../images/removebg-preview.png);
 }

 .sign li a.lost,.sign li a.done,.sign li a.wait {
    pointer-events: none;
 }
 p.angpao{color: #fff;font-size: 15px;font-weight: 600;}

.signin-bonus-pop {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.7);
   z-index: 10000;
   overflow-y: auto;
   padding: 20px;
   box-sizing: border-box;
   align-items: center;
   justify-content: center;
}

.signin-bonus-pop.active {
   display: flex;
}

 .signin-bonus-pop .title {
    padding: 20px 0;
 }

 .signin-bonus-pop .title h4 {
    color: #333;
 }

 .cliam-bonus {
    text-transform: capitalize;
    margin: 5px;
    height: 35px;
    padding-left: 10px;
    border-radius: 5px;
    white-space: nowrap;
    padding: 10px;
    background: linear-gradient(180deg, rgb(124 86 12) 0%, rgb(253 218 102) 50%, rgb(255 215 0) 100%);
    border: 2px solid #fef09f;
    color: #816d26;
    text-align: center;
    border-radius: 8px;
    width: 80%;
    transition: transform .2s;
    line-height: 12px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
 }

 .signin-bonus-pop .cliam-bonus.disabled {
    pointer-events: none;
    background: #ccc;
 }

 .signin-bonus-pop article h5,.signin-bonus-pop article h6,.signin-bonus-pop article p {
    color: #333;
    text-align: left;
 }

 .signin-bonus-pop article li {
    padding: 5px 0;
    list-style: none;
    color: #333;
    text-align: left;
 }

 .signin-bonus-pop .amount {
    padding: 20px 50px
 }

 .signin-bonus-pop .amount-list li {
    border-bottom: 1px solid;

    padding: 10px 0;
    line-height: 200%;
    display: flex;
    align-items: center;
    border-color: #f1f1f1;
 }

 .signin-bonus-pop .amount-list li h6 {
    flex: 1;
    color: #333;
    text-align: left;
 }

 .signin-bonus-pop .amount-list li span {
    font-weight: 700
 }

 .signin-bonus-pop .amount-list li b {
    font-size: 30px;
    color: var(--orange)
 }

 .signin-bonus-pop .amount-list .depo-claim-bonus {
    line-height: 32px;
 }

 article,
 article h1,
 article h2,
 article h3,
 article h4,
 article h5,
 article h6,
 article p {
    padding: 10px 0;
 }

 .signin-bonus-pop .center {
    margin-top: 15px;
    width: 100%;
    overflow: hidden;
    padding: 15px;
    border-radius: 10px;
 }

.signin-bonus-pop pop-main {
   width: 90%;
   max-width: 900px;
   overflow: hidden;
   position: relative;
   z-index: 1;
   background: white;
   border-radius: 15px;
   max-height: 90vh;
   overflow-y: auto;
   box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
   margin: auto;
 }

.signin-bonus-pop pop-title {
   background-color: white;
   border-bottom-width: 1px;
   overflow: hidden;
   display: flex;
   align-items: center;
   border-bottom: 1px solid black;
   position: sticky;
   top: 0;
   z-index: 10;
 }

 .signin-bonus-pop pop-title h3 {
    width: 100%;
    line-height: 50px;
    padding: 0 20px;
    flex: 1;
    min-width: 0;
    font-size: 18px;
    color: #333;
    text-align: left;
 }

 .signin-bonus-pop pop-title h3:nth-child(2) {
    padding: 0;
 }

 .signin-bonus-pop pop-title .ico {
    line-height: 50px;
    width: 50px;
    height: 50px;
    font-size: 22px;
    text-align: center;
 }

 .signin-bonus-pop pop-title .close:after {
    content: '';
    display: none;
 }

 .signin-bonus-pop pop-cont {
    background-color: white;
    display: block;
    border-radius: 0px 0px 10px 10px;
    border: none !important;
 }

 .signin-bonus-pop pop-cont .title h4 {
    color: #333;
 }

.signin-bonus-pop pop-main {
   border-radius: 15px;
 }

/* Responsive Styles for Signin Bonus Popup */
@media (max-width: 768px) {
   .signin-bonus-pop {
      padding: 10px;
   }
   
   .signin-bonus-pop pop-main {
      max-width: 100%;
      max-height: 95vh;
      border-radius: 10px;
   }
   
   .signin-bonus-pop .amount {
      padding: 15px 20px !important;
   }
   
   .signin-bonus-pop pop-title h3 {
      font-size: 16px !important;
      padding: 0 15px !important;
   }
   
   .signin-bonus-pop pop-title .close {
      font-size: 20px !important;
      padding: 5px 10px !important;
   }
   
   #form_bonus .title h4 {
      font-size: 20px !important;
   }
   
   .att-bonus .text-p {
      font-size: 16px !important;
   }
   
   .att-bonus .text-p2 {
      font-size: 14px !important;
   }
   
   .amount-table {
      overflow-x: auto;
   }
   
   .amount-table table {
      font-size: 12px;
   }
   
   .amount-table table th,
   .amount-table table td {
      padding: 8px !important;
   }
}

@media (max-width: 480px) {
   .signin-bonus-pop {
      padding: 5px;
   }
   
   .signin-bonus-pop pop-main {
      max-height: 98vh;
      border-radius: 8px;
   }
   
   .signin-bonus-pop .amount {
      padding: 10px 15px !important;
   }
   
   .att-bonus {
      padding: 8px !important;
   }
   
   .att-bonus .text-p {
      font-size: 14px !important;
   }
   
   .att-bonus .text-p2 {
      font-size: 12px !important;
   }
   
   .cliam-bonus {
      font-size: 12px !important;
      padding: 8px !important;
      height: 35px !important;
   }
   
   .amount-table table {
      font-size: 11px;
   }
   
   .amount-table table th,
   .amount-table table td {
      padding: 6px 4px !important;
   }
   
   .signin-bonus-pop pop-title h3 {
      font-size: 14px !important;
      line-height: 40px !important;
   }
   
   .signin-bonus-pop pop-title .close {
      font-size: 18px !important;
      padding: 5px 8px !important;
   }
   
#header .dropdown-body {
    position: absolute;
    background: #282828;
    width: 132px;
    list-style: none;
    display: none;
    -webkit-backdrop-filter: blur(22px) brightness(1.15);
    backdrop-filter: blur(22px) brightness(1.15);
    padding: 0;
    top: 76%;
    right: 44px;
    border-radius: 10px;
  }
  #header .dropdown-body.show{display: block;}
  #header .dropdown-body ul {
    padding: 10px 0px;
    list-style: none;
  }
  
  #header .dropdown-body ul li {
    padding: 0px 10px;
  }
  
  #header .dropdown-body ul li a {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    -webkit-text-fill-color: #fff;
    font-weight: 300;
    position: relative;
    border-radius: 10px;
    padding: 0px;
  }
  
  #header .dropdown-body ul li a.active,
  #header .dropdown-body ul li a:hover {
    /* background: #393319; */
    -webkit-backdrop-filter: blur(22px) brightness(1.15);
    backdrop-filter: blur(22px) brightness(1.15);
    color: #fff;
    -webkit-text-fill-color: #fff;
  }
  
  #header .dropdown-body ul li a.red-dot p {
    position: relative;
  }
  
  #header .dropdown-body ul li a.red-dot p:after {
    content: "";
    position: absolute;
    background: red;
    top: 0px;
    right: -20px;
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 50%;
  }
  
  #header .dropdown-body ul li a .total-notification {
    padding: 5px;
    background: red;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #header .dropdown-body ul li a .total-notification span {
    color: #fff;
    -webkit-text-fill-color: #fff;
    font-size: 12px;
  }
  
  #header .dropdown-body ul li a img {
    width: 30px;
    aspect-ratio: 1/1;
  }
}

 .sign li a p {
    width: 78px;
    text-align: center;
 }

 .amount-list li h6 {
    font-size: 13px;
 }

 .depo-claim-bonus.disabled {
    pointer-events: none;
    background: #ccc;
 }

 .sweet-alert .sa-icon {
    width: 100px !important;
    height: 100px !important;
 }

 .signin-bonus-pop .modal__content {
    background: #fff;
    border-radius: 10px;
    position: relative;
 }

.btnCose,
.signin-bonus-pop pop-title .close {
   color: #000 !important;
   position: relative;
   right: 0;
   font-weight: normal;
   font-size: 24px;
   font-family: cursive;
   cursor: pointer;
   padding: 10px 15px;
   line-height: 1;
   transition: color 0.3s;
}

.signin-bonus-pop pop-title .close:hover,
.btnCose:hover {
   color: #e94560;
}
 #form_bonus .title h4{
font-size: 25px;
color: #ffd930;
}
.att-bonus{
background-color: #ccc;
border-radius: 10px;
padding: 5px;
display: flex;
flex-direction: column;
justify-content: center;
}
.att-bonus .text-p {
font-size: 20px;
color:var(--color);
text-align: center;
text-transform: uppercase;
font-weight: 600;
}   
.att-bonus .text-p2{
text-align: center;
color: #000;
font-size: 18px;
font-weight: 600;
}
.att-bonus .att-btn{
text-align: center;
padding-bottom: 10px;
}
.att-bonus .att-btn button:hover{
opacity: 0.7;
transform: scale(1.05);
}
.text-table-bonus{
color: #000;
padding: 10px;
}
.amount-table .table-cell table {
border-collapse: collapse;
width: 100%;
background-color:var(--lg);
color: white;
font-family: Arial, sans-serif;
border-radius: 10px;
border: 2px solid var(--color);
}
.amount-table .table-cell table th,
.amount-table .table-cell table td {
border: 1px solid black;
padding: 15px;
text-align: center;
}

.amount-table .table-cell table th {
border:none !important;
font-weight: bold;
background-color: var(--color);
color: #fff;
}

.table-cell td{
color: #000 !important;
}
.right-info marquee{color: #fff !important;}
.signin-bonus-pop article .new-term li{
list-style: disc !important;
}
.right-info{width: 97%;}
.signin-bonus-pop article .new-term{
padding-left: 50px !important;
}.toggle_text{
position: relative;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 5; /* Show only 2 lines */
-webkit-box-orient: vertical;
}.expanded {
-webkit-line-clamp: unset; /* Remove line limit */
}#toggleBtn{
float: right;
}
.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 14px;
    background: rgba(0,0,0,0.3);
  }
  
  /* MAIN */
  .main-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    gap: 20px;
  }
  
  /* BOXES */
 .main-wrapper .box {
    background: linear-gradient(#7a5400, #3b2500);
    border-radius: 8px;
    padding: 15px;
    height: 230px
  }
  
  .box-title {
    text-align: center;
    font-weight: bold;
    background: linear-gradient(#ffd77a, #c38a00);
    color: #3a2300;
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 15px;
  }
  
  /* PROMO */
  .promo-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  
  .promo-item {
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    text-align: center;
    padding: 0px 10px;
    font-size: 22px;
    height: 64px;
    cursor: pointer;
  }
  
  .promo-item span {
    display: block;
    font-size: 12px;
    margin-top: 5px;
    color: #fff;
  }
  
  /* JACKPOT */
  .jackpot {
    text-align: center;
    flex: 1;
  }
  
  .jackpot-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffd966;
  }
  
  .jackpot-number {
    display: flex;
    justify-content: center;
    gap: 6px;
  }
  
  .jackpot-number span {
    background: linear-gradient(#fff4cc, #ffcc33);
    color: #3b2300;
    font-size: 18px;
    font-weight: bold;
    padding: 2px 7px;
    border-radius: 6px;
    min-width: 27px;
  }
  
  /* DEPOSIT */
  .deposit-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .deposit-item {
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
    text-align: center;
    padding: 6px 12px;
    font-size: 13px;
    color: #fff;
  }
  .lobby_{   padding: 30px 20px;}

/* Deposit Page Styles - Black Background with Gold Text */
.vc-v2-container {
    overflow-x: hidden;
    position: relative;
    border-radius: 8px;
}
.inputBase{    text-indent: 10px;}
.vc-v2-container .pd-btm-20 {
    padding-bottom: 0.2rem;
}

.ranndom-container {
    margin-bottom: 20px;
}

.vc-v2-title {
    color: #d4af37;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vc-v2-title::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
    display: inline-block;
}

/* Payment Method Cards */
.vc-v2-method ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.vc-v2-method li {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
    min-height: 80px;
    max-height: 80px;
    overflow: hidden;
}

.vc-v2-method li:hover {
    border-color: #d4af37;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.vc-v2-method li.ck {
    border-color: #d4af37;
    border-width: 2px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transform: none !important;
    width: auto !important;
    height: auto !important;
    min-height: 80px !important;
    max-height: 80px !important;
    padding: 15px !important;
    flex: 1 1 auto !important;
}

.vc-v2-method li .deposit-list-ck {
    display: none;
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    color: #d4af37;
    flex-shrink: 0;
    pointer-events: none;
}

.vc-v2-method li.ck .deposit-list-ck {
    display: block;
}

.deposit-img-new {
    flex-shrink: 0;
}

.deposit-img-new img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.desc-content {
    flex: 1;
}

.vcn-list-text p {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.vcn-list-desc {
    margin-top: 4px;
}

.vcn-list-desc span {
    color: #ffd700;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Payment Channel Buttons */
.vc-v2-method-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.vc-v2-method-list li {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 6px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.1s ease;
    position: relative;
    transform: scale(1);
}

.vc-v2-method-list li:hover {
    border-color: #d4af37;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px) scale(1.02);
}

.vc-v2-method-list li:active {
    transform: scale(0.95);
}

.vc-v2-method-list li.ck {
    border-color: #d4af37;
    border-width: 2px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1);
}

/* Payment Type List Items */
#paymentType li.recommendation {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 6px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.1s ease;
    position: relative;
    transform: scale(1);
    list-style: none;
    margin: 5px 0;
}

#paymentType li.recommendation:hover {
    border-color: #d4af37;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px) scale(1.02);
}

#paymentType li.recommendation:active {
    transform: scale(0.95);
}

#paymentType li.recommendation.ck {
    border-color: #d4af37;
    border-width: 2px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1);
}

.method-list-info {
    color: #d4af37;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Deposit Amount Section */
.fixed-money {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.fixed-money-item {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 6px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 500;
}

.fixed-money-item:hover {
    border-color: #d4af37;
    background: #2a2a2a;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.fixed-money-item.number-mc.active,
.fixed-money-item.number-mc.selected {
    border-color: #d4af37;
    background: #2a2a2a;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Input Field */
.deposit-amount-con {
    margin-top: 10px;
}

.inputCon {
    position: relative;
    display: flex;
    align-items: center;
}

.inputCon i {
    position: absolute;
    left: 12px;
    color: #d4af37;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    z-index: 1;
}

.inputCon .inputBase {
    width: 100%;
    padding: 12px 12px 12px 35px;
    border: 2px solid #333;
    border-radius: 6px;
    background: #1a1a1a;
    color: #d4af37;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.inputCon .inputBase:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.inputCon .inputBase::placeholder {
    color: #666;
}

.vc-v2-input {
    margin-top: 10px;
}

.vc-v2-input .inputCon input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #333;
    border-radius: 6px;
    background: #1a1a1a;
    color: #d4af37;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.vc-v2-input .inputCon input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.vc-v2-input .inputCon input::placeholder {
    color: #666;
}

/* Deposit Info */
.deposit-info {
    margin-top: 20px;
    padding: 15px;
    background: #1a1a1a;
    border-radius: 6px;
    color: #ffd700;
    font-size: 0.85rem;
    line-height: 1.6;
    border: 1px solid #333;
}

/* Promotions Section */
.vc-v2-active-container {
    background: #1a1a1a;
    border-radius: 6px;
    padding: 15px;
}

.act-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.act-item {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 6px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.act-item:hover {
    border-color: #d4af37;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.act-item.on {
    border-color: #d4af37;
    background: #2a2a2a;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.act-name {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.act-mount {
    color: #999;
    font-size: 0.85rem;
}

.act-mount i {
    color: #d4af37;
    font-weight: 600;
}

.act-prom-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #d4af37;
}

/* Responsive */
@media (max-width: 768px) {
    .fixed-money {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
  
    .vc-v2-method-list ul {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .deposit-img-new img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .fixed-money {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .vc-v2-method-list ul {
        grid-template-columns: 1fr;
    }
    #paymentType li.recommendation{
        width: calc(45% - .1rem);
        white-space: nowrap;
    }
}
.sidebar-item.active{
    background: linear-gradient(180deg, rgb(124 86 12) 0%, rgb(253 218 102) 100%);
    }
    .lobby_ {
        padding: 30px 20px;
    }
    #sidebar-nav ul li a.sidebar-item.active{color: #000!important;}
    #imgTemp{
        background-color: #111827!important;
        border: 1px solid #e3c26a !important;
        color: #e3c26a !important;
    }
    .file-input-wrapper>.btn-file-input{
        margin-top: 12px!important;
    }
    input#amount {
        border: 1px solid #e3c26a!important;
        background: #111827 !important;
        color: #e3c26a !important;
    }
    .depositfr .text-gray-500{
        color: #e3c26a !important;
    }
    .border-red-600{border-color:#fef09f!important;}
    .border-gray-300{
        border: 1px solid #e3c26a !important;
        color: #e3c26a !important;
    }
    .popup-box a.deposit {
        background: #d1c92a!important;
    }
    .bg-gray-200{
        background: none !important;
    }
    .duration-200,.text-gray-800,.text-gray-700{
        color: #e3c26a !important;
    }
    .center_responsive select{
        border: 1px solid #e3c26a!important;
        color: #e3c26a !important;
    }
    .play-now-btn .fas {
        color: #fff !important;
    }
    .footer-bottom p{
        color: rgba(255, 255, 255, 0.6);
    }
    input#refUrl {
        background: transparent;
        color: #fff !important;
    }
    i.fas.fa-chevron-right,i.fas.fa-chevron-left{
        color: #fff !important;
        font-size: 20px;
    }
    #copy-btn{
        background-color: #d63031!important;
        width: 50px;
        height: 30px;
        line-height: 30px;
        float: left;
        text-align: center;
        color: #838383;
        border-radius: 15px;
        cursor: pointer;
    }
    .center_responsive select, .shadow-sm {
        background: #111827 !important;
    }
    .text-gray-900,.text-gray-500{
        color: #e3c26a !important;
    }
/* WRAPPER */
.steps-wrapper {
    display: flex;
    gap: 6px;
    justify-content: center;
  }
  
  /* CARD */
  .step-card {
    width: 260px;
    padding: 24px;
    background: #000;
    border-radius: 14px;
    position: relative;
    border: 1px solid #3a2b00;
    box-shadow:
      0 0 18px rgba(255, 200, 50, 0.3),
      inset 0 0 20px rgba(255, 200, 50, 0.08);
  }
  .step-card-betting {
    width: 200px;
    padding: 24px;
    background: #000;
    border-radius: 14px;
    position: relative;
    border: 1px solid #3a2b00;
    box-shadow:
      0 0 18px rgba(255, 200, 50, 0.3),
      inset 0 0 20px rgba(255, 200, 50, 0.08);
  }
  
  /* NUMBER */
  .step-no {
    font-size: 28px;
    font-weight: bold;
    color: #ffcc33;
    margin-bottom: 10px;
  }
  .step-no-text{
    font-size: 28px;
    font-weight: bold;
    color: #ffcc33;
    margin-bottom: 10px;
    text-align: center;
  }
  .step-no-text img{width: 60px;}
  /* TITLE */
  .step-card h3, .step-card-betting h3 {
    font-size: 16px;
    margin-bottom: 14px;
    color: #ffcc33;
  }
  
  /* LINE */
  .step-card hr,  .step-card-betting hr {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.25);
    margin-bottom: 14px;
  }
  
  /* LIST */
  .step-card ul, .step-card-betting ul {
    list-style: none;
  }
  
  .step-card li, .step-card-betting li {
    position: relative;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #fff;
  }
  
  /* PINK DOT */
  
  .step-card:hover {
    box-shadow:
      0 0 26px rgba(255, 200, 50, 0.6),
      inset 0 0 22px rgba(255, 200, 50, 0.12);
  }
   /* ========== Responsive Styles for Promo Section ========== */
  
  /* Large Tablets and Small Laptops (769px - 1024px) */
  @media (max-width: 1024px) {
    .promo-section {
        padding: 30px 25px;
    }
    
    .promo-left h2 {
        font-size: 2rem;
    }
    
    .promo-left h3 {
        font-size: 1.5rem;
    }
    
    .steps-wrapper {
        gap: 10px;
    }
    
    .step-card {
        width: 220px;
        padding: 20px;
    }
    
    .step-card-betting {
        width: 180px;
        padding: 20px;
    }
    .kyc-body-wrapper{
        width: 100%!important;
    }
}

/* Tablets (641px - 768px) */
@media (max-width: 768px) {
    .kyc-body-wrapper{
        width: 100%!important;
    }
    .promo-section {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .promo-left h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .promo-left h3 {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }
    
    .bonus-amount_ {
        font-size: 1.3rem !important;
    }
    
    .steps-wrapper {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
    
    .step-card {
        width: calc(50% - 6px);
        min-width: 200px;
        padding: 18px;
    }
    
    .step-card-betting {
        width: calc(50% - 6px);
        min-width: 180px;
        padding: 18px;
    }
    
    .step-no {
        font-size: 24px;
    }
    
    .step-card h3,
    .step-card-betting h3 {
        font-size: 15px;
    }
    
    .step-card li,
    .step-card-betting li {
        font-size: 12px;
    }
}

/* Large Phones (481px - 640px) */
@media (max-width: 640px) {
    .promo-section {
        padding: 20px 15px;
    }
    .kyc-body-wrapper{
        width: 100%!important;
    }
    .promo-left h2 {
        font-size: 1.5rem;
    }
    
    .promo-left h3 {
        font-size: 1.2rem;
    }
    
    .steps-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    
    .step-card,
    .step-card-betting {
        width: 100%;
        max-width: 100%;
    }
}

/* Small Phones (320px - 480px) */
@media (max-width: 480px) {
    .promo-section {
        padding: 15px 10px;
        border-radius: 12px;
        margin-bottom: 15px;
    }
    
    .promo-left h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .promo-left h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .bonus-amount_ {
        font-size: 1.1rem !important;
    }
    
    .steps-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .step-card,
    .step-card-betting {
        width: 100%;
        padding: 15px;
        border-radius: 12px;
    }
    
    .step-no {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .step-no-text {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .step-no-text img {
        width: 45px;
    }
    
    .step-card h3,
    .step-card-betting h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .step-card hr,
    .step-card-betting hr {
        margin-bottom: 10px;
    }
    
    .step-card li,
    .step-card-betting li {
        font-size: 11px;
        line-height: 1.5;
        margin-bottom: 8px;
        padding-left: 15px;
    }
}

/* Extra Small Phones (max-width: 360px) */
@media (max-width: 360px) {
    .promo-section {
        padding: 12px 8px;
    }
    
    .promo-left h2 {
        font-size: 1.1rem;
    }
    
    .promo-left h3 {
        font-size: 1rem;
    }
    
    .step-card,
    .step-card-betting {
        padding: 12px;
    }
    
    .step-no {
        font-size: 18px;
    }
    
    .step-card h3,
    .step-card-betting h3 {
        font-size: 13px;
    }
    
    .step-card li,
    .step-card-betting li {
        font-size: 10px;
    }
}

/* Landscape Orientation for Tablets and Phones */
@media (max-width: 768px) and (orientation: landscape) {
    .steps-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .step-card {
        width: calc(33.333% - 8px);
        min-width: 180px;
    }
    
    .step-card-betting {
        width: calc(25% - 6px);
        min-width: 150px;
    }
}
.angpao-min-max{
    display: flex;
}
.toggle-text {flex: 1;}
.toggle-text p{font-size: 14px;font-weight: 600;color: #fff;}
.search_box{
    z-index: 999 !important;
}
/* new slot modal */
.slots-place__field {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	box-sizing: border-box;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	height: 100%
}
.slots-wrapper #wrapper_game_area {
	display: inherit;
	position: relative;
	-webkit-flex-wrap: inherit;
	-ms-flex-wrap: inherit;
	flex-wrap: inherit;
	-webkit-align-items: inherit;
	-ms-flex-align: inherit;
	align-items: inherit;
	width: 100%
}
.slots-wrapper #wrapper_game_area {
	display: inherit;
	position: relative;
	-webkit-flex-wrap: inherit;
	-ms-flex-wrap: inherit;
	flex-wrap: inherit;
	-webkit-align-items: inherit;
	-ms-flex-align: inherit;
	align-items: inherit;
	-webkit-justify-content: inherit;
	-ms-flex-pack: inherit;
	justify-content: inherit;
	width: 100%
}
.slots-place__place {
    width: 80%;
    height: calc(96vh - 100px);
	position: fixed;
	border: 1px solid rgba(255,255,255,0.1);
	box-shadow: 0 0 2.5em rgb(0 0 0 / 50%);
	background-color: rgba(0,0,0,.5);
	z-index: 9999;
	bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
}
.LogoShine {
	border: 12px solid #f3f3f3;
	border-radius: 50%;
	border-top: 12px solid #3498db;
	width: 120px;
	height: 120px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	margin-left: -60px
}
@keyframes rotation {
0% {
transform:rotate(0deg)
}
100% {
transform:rotate(360deg)
}
}
#preloader_slots {
	position: absolute;
	border: 4px solid transparent;
	border-top-color: transparent;
	border-bottom-color: #ffffff;
	border-radius: 100%;
	width: 120px;
	height: 120px;
	-webkit-animation: animate-preloader .9s linear infinite;
	animation: animate-preloader .9s linear infinite;
	margin-left: -30.333px;
	margin-top: -91.333px;
	background: transparent;
	border: none;
	opacity: .1
}
.LogoShine.small {
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFMAAABTCAYAAADjsjsAAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkQ0NjZCNUExMTE2MTExRUM4QTUwQTM0MjE1RDk2NzdCIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkQ0NjZCNUEyMTE2MTExRUM4QTUwQTM0MjE1RDk2NzdCIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RDQ2NkI1OUYxMTYxMTFFQzhBNTBBMzQyMTVEOTY3N0IiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6RDQ2NkI1QTAxMTYxMTFFQzhBNTBBMzQyMTVEOTY3N0IiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4XESmSAAAEe0lEQVR42uydv2/TQBTHXyPEVNGqEoKlJAMLAqmZKVLSqTARxAJTnIWVTMz5E1KxsDVh6kYysrkDjJAIEAtIrVhASFUqMXUp98hzZNLYvl92fOf7Slaklp6TD9/33t3l7rxyfn4OedPVPlTZy3rMP5n8bsIob+97ZZkwGbQKe6mzqxq61gSaOGXXKHT5DPJRYWAygA0CiK/lFG5xzK4BgR1YB5Mc2E4RYJxze+zqZuHYVGEyiOhAj13NHKS0IUH1jYJJTkRH1CB/OsQoSaOAaYXJIGIF7rDrOeRfe/heGdRJ7mBSYelmnBN15FRPV6FShmmYG6PUp9CfLA0m5Ub8X90C8zUml44yh0mjFF+wk21C2NdlgZYkQXoWggT6PB/p86XvTLrRPtivFnNoLzVnFggkal/UodzOtDRH8miHd9TEBZOq9qiAIIWKUokD5Dp1f4oIMihKPeKgnDM7lvQjVbRFozv5MKch4hueuz25CXBjFeDdz+V/8s8nLDbPUmn6UdzQMxIm2XrEO9Ye3ge4ey0/VvrCgL76CnDwTXv+rEQNO0sJ4V02NS5vbwC83Ab48HgaNRrzZ1coZ1L1NnniYqbN1SlUjJy1y1qabNKkN7cze2CZMAWhS+9saGmuwwWTqNfAQl1hzhzuagFaW+TORc70wGIh0Nc7WkK+EwuTcmUTLNe/PHpPizsrcc70oCB6sAmwfV25mbaDSXpRVW7CWwiTZoXKRYKJFR5DXqXfSaPEC84slCsDPVXv0M9gXlr0w7R18F1+mBeX57BCP7ulrz1O1f+DSVUpsxD/8Ud+QiTp7z6dTEc8IqGuqDKmSJzvLM3TNV3o+Pe/Mr9tNZwzq2CRljANWLcW5hJUCRegXMDEYjDYFSijb/MxGR3MZQTOXHPmUhNOppeos+6koQihM9cdBz0qOQSGw9Q02+1gBsM+B9PJwXQwDYU5cRg0wczj7lhDNZuCO3Us1ITrjwKYzp1qOgwXIAdTTUcOpsZ8GYbpOx5K8mcwaWP7sWMipeOgRxTutA8cF3lXzsN0oS6nwQWYtPDdhbqYTsMbBkpRlJ3EXLkIZtfxEVInEiZV9aFjxDfqmT/eZ9EUnHOnhCsXwqQdrIeOVaIr/USYJM/xEnNlJEzKBXumftKUv7DrR+0/T9ruZ+Q8Z4pfJSOPdtQvte/qvXD3s+ku26SfBY4SARG1exfbEHGnwOIvuV29IaA9KMDeIA4NGcjYpeo8306irccFBznmKcrujA6+PKnnjI5Qda8X1JUN3m9wuRchUIOtgoFsiRxeKrSig06gahUIZE/kD4SXxxQEqDBI7gIUUZRsPaWwIXsusfTCLcqhdYu6TWOq2r5sA0qr4EJA+6Z3yEHh3EzlMI8YevYMC3utZw5rW59Jbwg796bMNmE0VXQ+ZSCtc9qxOOGMfV7Pae+kcfh9Fk8QwLH9Q5shZgJzbmzfpsmCLHOqPc+2iClUwZNX0nrqCrpvYOVTVxIci1CDZwHVJMP3iACOlrmsfCWnT6qqc/Qe/Ly9778CDACEZJMaQxFHvwAAAABJRU5ErkJggg==');
	background-repeat: no-repeat;
	background-position: center;
	-webkit-animation: lightAnimation .3s ease-in-out infinite;
	animation: lightAnimation .3s ease-in-out infinite;
	left: 0;
	position: relative;
	border: 3px solid #fff;
	z-index: 99999;
	top: 50%;
	height: 60px;
	width: 60px;
	margin-left: -50px;
	box-shadow: 0 0 15px 0 #ffffff;
	border-radius: 50%;
	background-size: 50px 50px;
	margin-left: -30px;
	background-color: #fff;
	height: 50px;
	width: 50px
}
#preloader_logo_small {
	position: absolute;
	border: 2px solid transparent;
	border-top-color: #17b8ff;
	border-bottom-color: #ffffff;
	border-radius: 100%;
	width: 80px;
	height: 80px;
	-webkit-animation: animate-preloader .9s linear infinite;
	animation: animate-preloader .9s linear infinite;
	margin-left: -45.222px;
	margin-top: -65.222px
}
@-webkit-keyframes lightAnimation {
    0% {
    -webkit-filter:brightness(1);
    filter:brightness(1)
    }
    50% {
    -webkit-filter:brightness(1.2);
    filter:brightness(1.2)
    }
    to {
        -webkit-filter: brightness(1);
        filter: brightness(1)
    }
}
.slots-place__controls {
	display: block;
	display: block;
	display: block;
	position: absolute;
	top: 0px;
	right: -27px
}
.slots-place__action {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 1.875em;
	height: 1.875em;
	background-color: #2d333a;
	transition: background-color 0.2s ease;
	margin-left: .125em
}
.slots-place__action_popup::before {
	content: '\f08e'
}
.slots-place__action::before {
	font-family: FontAwesome;
	font-size: .875em;
	color: #ddd
}
.slots-place__action_fullscreen::before {
	content: '\f0b2'
}
.slots-place__action::before {
	font-family: FontAwesome;
	font-size: .875em;
	color: #ddd
}
.slots-place__action_fav::before {
	content: '\f006'
}
.slots-place__action::before {
	font-family: FontAwesome;
	font-size: .875em;
	color: #ddd
}
.slots-place__action_real::before {
	content: '\f204'
}
.slots-place__action::before {
	font-family: FontAwesome;
	font-size: .875em;
	color: #ddd
}
.slots-place__action_real::before {
	content: '\f204'
}
.slots-place__action::before {
	font-family: FontAwesome;
	font-size: .875em;
	color: #ddd
}
.slots-place__action_close::before {
	content: '\f00d'
}
.slots-place__action::before {
	font-family: FontAwesome;
	font-size: .875em;
	color: #ddd
}
.slots-place__action_reload::before {
	content: '\f01e'
}
.slots-bottom.is-fixed {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999
}
.slots-bottom {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 3.0625em;
	border-top: 1px solid rgba(255,255,255,0.1);
	background-color: #262b31
}
.slots-bottom__panel {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%
}
.slots-bottom__games.active {
	display: block
}
.slots-bottom__games {
	display: none;
	position: absolute;
	bottom: 100%;
	width: 100%;
	overflow: hidden;
	background-color: #22282e;
	left: 0
}
.slots-bottom__search-wrap {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0em .9375em;
	height: 100%;
	border-right: 1px solid rgba(255,255,255,0.1)
}
.slots-bottom__search-wrap::before {
	content: '\f002';
	position: absolute;
	font-family: FontAwesome;
	color: #ddd;
	left: 10.75em
}.slots-bottom__search-wrap .slots-bottom__search{
    height: 25px;
    padding: 5px;
}
.slots-search__games {
	display: none;
	position: absolute;
	bottom: 100%;
	z-index: 1;
	width: 100%;
	border: 1px solid rgba(255,255,255,0.1);
	border-bottom: 0;
	background-color: #262b31;
	left: -1px
}
.slots-bottom__view {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0em .9375em;
	height: 100%;
	border-right: 1px solid rgba(255,255,255,0.1)
}
.slots-bottom__switch.active, .slots-bottom__switch:hover {
	opacity: 1
}
.slots-bottom__switch:not(:last-child) {
	margin-right: .625em
}
.slots-bottom__switch {
	opacity: 0.3;
	position: relative;
	box-sizing: border-box;
	width: 2.0625em;
	height: 1.4375em;
	border: 1px solid #fff;
	border-radius: .125em;
	transition: opacity 0.2s ease
}
.slots-bottom__switch::before {
	content: '';
	display: block;
	position: absolute;
	top: 1px;
	left: 1px;
	width: 1.8125em;
	height: 1.1875em;
	background: #fff
}
.slots-bottom__switch:not(:last-child) {
	margin-right: .625em
}
.slots-bottom__switch {
	opacity: 0.3;
	position: relative;
	box-sizing: border-box;
	width: 2.0625em;
	height: 1.4375em;
	border: 1px solid #fff;
	border-radius: .125em;
	transition: opacity 0.2s ease
}
.slots-bottom__switch::before {
	content: '';
	display: block;
	position: absolute;
	top: 1px;
	left: 1px;
	width: 1.8125em;
	height: 1.1875em;
	background: #fff
}
.slots-bottom__switch:nth-child(2)::before {
	width: .875em;
	box-shadow: 0.9375em 0 0 #fff
}
.slots-bottom__switch {
	opacity: 0.3;
	position: relative;
	box-sizing: border-box;
	width: 2.0625em;
	height: 1.4375em;
	border: 1px solid #fff;
	border-radius: .125em;
	transition: opacity 0.2s ease
}
.slots-bottom__switch:nth-child(3)::before {
	width: .875em;
	height: .5625em;
	box-shadow: 0.9375em 0 0 #fff, 0 0.625em 0 #fff, 0.9375em 0.625em 0 #fff
}
.slots-bottom__switch::before {
	content: '';
	display: block;
	position: absolute;
	top: 1px;
	left: 1px;
	width: 1.8125em;
	height: 1.1875em;
	background: #fff
}
.slots-place__place iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}
.slots-bottom {
	display: none
}
.slots-bottom__menu {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%
}
.slots-bottom__item {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0em 1.07143em;
	height: 100%;
	text-transform: uppercase;
	font-size: .875em;
	color: #ddd;
	transition: background-color 0.2s ease;
	border-right: 1px solid rgba(255,255,255,0.1)
}
.slots-bottom__item_last::before {
	content: '\f253';
	font-size: 1.25em
}
.slots-bottom__item.active, .slots-bottom__item:hover {
	background-color: rgba(255,255,255,0.1);
	color: #fff
}
.slots-bottom__item::before {
	font-family: FontAwesome;
	font-size: 1.5em;
	color: #ddd;
	margin-right: .41667em
}
.swiper-slide .slots-games__item-wrap {
	width: 100%;
	min-width: 100%
}
.swiper-slide {
	max-width: 153.222px;
	width: 153px!important
}
.slots-bottom__list .slots-games__item-wrap {
	padding: .15385em;
	min-width: 14.61538em;
	font-size: .8125em;
	padding-right: 5px;
	margin: 3px;
	padding-left: 36px
}
.slots-bottom__item_popular::before {
	content: '';
	width: .83333em;
	height: .83333em;
	background: url(../images/ico-popular.png) center no-repeat;
	background-size: contain
}
.slots-bottom__item_news::before {
	content: '';
	width: .83333em;
	height: .83333em;
	background: url(../images/ico-news.png) center no-repeat;
	background-size: contain
}
.slots-games__fast_title {
	color: #fff;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 150px;
	padding-bottom: 5px;
	font-size: 12px;
	position: relative;
	margin-left: 40px
}
.slots-games__fast_title_provider {
	color: #fff;
	text-align: center;
	width: 150px;
	padding-bottom: 5px;
	font-size: 12px;
	margin-left: 40px
}
.swiper-notification {
	padding-left: 10px;
	color: #fff;
	display: none;
	height: 30px;
	line-height: 30px
}
.swiper-slide {
	display: table-cell
}
.owl-carousel .item:hover {
	transform: scale(.95)!important
}
.slots-games__item-wrap {
	min-width: 20%;
	width: 20%;
	padding: .125em;
	box-sizing: border-box
}
.slots-games__item {
	box-sizing: border-box;
	border: 1px solid #30353b;
	position: relative;
	text-align: center;
	height: 100px;
	background-size: 100% 100%!important;
	max-width: 150.222px;
	width: 150.222px;
	background-size: cover!important;
	background-position: center!important
}
.slots-games__ribbons {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
	position: absolute;
	right: 0;
	top: .3125em
}
.swiper-wrapper {
	display: none
}
.swiper-wrapper.open {
	display: block
}
.swiper-wrapper.close {
	display: none
}
.slots-games__play.playbtnhvr {
	line-height: 35px;
	color: #fff;
	position: absolute;
	width: 120px;
	left: 50%;
	top: 0;
	margin-left: -60px;
	margin-top: 40px;
	display: none;
	background: #3b4146;
	border-radius: 10px
}
.slots-games__item-wrap:hover .slots-games__play.playbtnhvr {
	display: block
}
.slots-bottom__arrow_back {
	left: 0
}
.slots-bottom__arrow_next {
	right: 0
}
.slots-bottom__arrow {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	top: 0;
	z-index: 2;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 2.5em;
	height: 100%;
	outline: none;
	background-color: #32383d;
	transition: background-color 0.2s ease
}
.slots-bottom__arrow_back::before {
	content: '\f104'
}
.slots-bottom__arrow_next::before {
	content: '\f105'
}
.slots-bottom__arrow::before {
	font-family: FontAwesome;
	color: #ddd
}
.slots-bottom__item_hot {
	width: 20px;
	height: 20px;
	background: url(../images/ico-popular.png) center no-repeat;
	background-size: contain;
	position: relative;
	display: inline-block;
	top: 5px
}
.banner-slots {
	position: inherit!important;
	height: auto;
}
.loading_gift {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 999;
	display: block;
	margin-top: -50px
}
#preloader_pagin_old {
	position: absolute;
	border: 2px solid #ffffff;
	border-top-color: #186fae;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
	margin-left: -10px;
	margin-top: 35px
}
#LoadSlotsContent iframe {
	background: url('https://s3.ap-east-1.amazonaws.com/hcgames-pc/content/images/slots-place.jpg');
	width: 100%;
	height: 100%
}
/* new slot modal end */
  /* Overlay */
  .age-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.age-popup-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Modal */
.age-popup-modal {
   background: rgb(17 24 39 / var(--tw-bg-opacity, 1)) !important;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 10px rgb(205 179 77);
    border: 2px solid #cbb04b;
    animation: slideInUp 0.3s ease;
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Close Button */
.age-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #e3c26a;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.age-popup-close:hover {
    color: #ffffff;
    transform: rotate(90deg);
}

/* Logo */
.age-popup-logo {
    margin-bottom: 30px;
}

.age-popup-logo img {
    max-width: 200px;
    height: auto;
}

/* Content */
.age-popup-content {
    margin-bottom: 25px;
}

.age-popup-text {
    color: #e3c26a;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0 0 8px 0;
    line-height: 1.6;
    text-transform: uppercase;
}

.age-popup-terms {
    color: #FFD700;
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.age-popup-terms:hover {
    color: #FFF176;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Accept Button */
.age-popup-accept {
   background: linear-gradient(to bottom, #f4dc8f 0%, #b28211 50%, #8b6914 100%) !important;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 16px 80px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin: 20px 0 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5),
                inset 0 1px 0 rgba(255, 215, 0, 0.5);
    text-transform: capitalize;
}

.age-popup-accept:hover {
   background: linear-gradient(to bottom, #f4dc8f 0%, #b28211 50%, #8b6914 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5),
                inset 0 1px 0 rgba(255, 215, 0, 0.5);
}

.age-popup-accept:active {
    transform: translateY(0);
}

/* Badges */
.age-popup-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.age-popup-badges img {
    height: 50px;
    width: auto;
}

.badge-pagcor {
    height: 55px !important;
}

.badge-21 {
    height: 50px !important;
}

/* Copyright */
.age-popup-copyright {
    color: #e3c26a;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 480px) {
    .age-popup-modal {
        padding: 30px 20px;
        margin: 15px;
    }
    .kyc-body-wrapper{
        width: 100%!important;
    }
    .age-popup-text {
        font-size: 12px;
    }
    
    .age-popup-terms {
        font-size: 14px;
    }
    
    .age-popup-accept {
        padding: 14px 60px;
        font-size: 16px;
    }
    
    .age-popup-badges img {
        height: 40px;
    }
    
    .age-popup-copyright {
        font-size: 11px;
    }
}
input#datepicker1, input#datepicker2{
    background: #111827 !important;
}