/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.font-semibold, #menu-btn, #sidebar-nav ul li a{color: #e3c26a!important;}
.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;}
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;
}
.footer-nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.footer-nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-nav-links .separator {
    color: #fff;
    margin: 0 5px;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.link_qr canvas{
    margin: 0 auto;
    border-radius: 5px !important;
    border: 1px solid #e3c26a !important;
    padding: 5px !important;
}
 a.text-red-600{ color: rgb(254 240 159);}
.flex-grow.p-6 div a, div.max-w-7xl a{color: #e3c26a;}
.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-radius: 7px;
    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;
}

.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: #00ffff;
}

/* 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: white;
    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;
    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?v=1) 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 {
    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 i.fas{
    color: #eddba9!important;
}
.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: #eddba9;
    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;
}
/* Hero Section */
.hero-section {
    background:url(../images/banner.png) no-repeat;
    background-size: 100% 100%;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid rgb(170 165 144);
    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 #00ffff;
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    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-radius: 8px;
    border: 1px solid #e3c26a !important;
    color: #e3c26a !important;
    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, #c99a1c 0%, #322f29 45%, #383322 50%, #c18e12 100%);
    border: 2px solid #c99a1c;
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px #c99a1c;
}

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

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

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

.login-submit-btn:hover {
    background: linear-gradient(135deg, #c18e12 0%, #c99a1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px #c99a1c, 0 0 25px #c99a1c;
}

.login-submit-btn i {
    margin-right: 8px;
    color: #000 !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-radius: 8px;
    color: white;
    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;
    }
    .games-tabs-header{
        gap: 10px!important;;
    }
}

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

    }
    .sport-thumbnail .game-image {
        height: 150px;
        padding: 10px;
    } 
    .tab-item span {
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .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);
    }
    .games-tabs-header{
        gap: 10px!important;
    }

}
.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-top: 3px solid #fef09f;
    border-bottom: 3px solid #fef09f;
    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%;
    animation: pulse 2s infinite;
}
.tab-item i.icon-sport{
    background: url(../images/icon/sport.png) no-repeat;
    background-size: 100% 100%;
    animation: pulse 2s infinite;
}
.tab-item i.icon-fishing{
    background: url(../images/icon/fishing.png) no-repeat;
    background-size: 100% 100%;
    animation: pulse 2s infinite;
}
.tab-item i.icon-lottery{
    background: url(../images/icon/lottery.png) no-repeat;
    background-size: 100% 100%;
    animation: pulse 2s infinite;
}
.tab-item i.icon-poker{
    background: url(../images/icon/poker.png) no-repeat;
    background-size: 100% 100%;
    animation: pulse 2s infinite;
}
.tab-item i.icon-keno{
    background: url(../images/icon/keno.png) no-repeat;
    background-size: 100% 100%;
    animation: pulse 2s infinite;
}
/*  */
.tab-item i.icon-hot{
    background: url(../images/icon/hot.png) no-repeat;
    background-size: 100% 100%;
    animation: pulse 2s infinite;
}
.tab-item i.icon-slot{
    background: url(../images/icon/slot.png) no-repeat;
    background-size: 100% 100%;
    animation: pulse 2s infinite;
}
.tab-item i.icon-crash{
    background: url(../images/icon/crash.png) no-repeat;
    background-size: 100% 100%;
    animation: pulse 2s infinite;
}
.tab-item i.icon-arcade{
    background: url(../images/icon/arcade.png) no-repeat;
    background-size: 100% 100%;
    animation: pulse 2s infinite;
}
.tab-item i.icon-cocks{
    background: url(../images/icon/cocks.png) no-repeat;
    background-size: 100% 100%;
    animation: pulse 2s infinite;
}
.tab-item i.icon-horse{
    background: url(../images/icon/horse.png) no-repeat;
    background-size: 100% 100%;
    animation: pulse 2s infinite;
}
.tab-item i.icon-cricket{
    background: url(../images/icon/cricket.png) no-repeat;
    background-size: 100% 100%;
    animation: pulse 2s infinite;
}
/*  */
/* .tab-item:last-child {
    border-right: none;
} */

.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 {
    color: #333;
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(180deg, rgb(124 86 12) 0%, rgb(253 218 102) 100%);
    border: 2px solid #fef09f;
}

.tab-item.active:hover {
    color: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    background: linear-gradient(180deg, rgb(124 86 12) 0%, rgb(253 218 102) 100%);
    border: 2px solid #fef09f;
}

.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(124 86 12) 0%, rgb(253 218 102) 50%, rgb(255 215 0) 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 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;
}

.casino-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);
}

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

/* 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-color: rgba(0, 0, 0, 0.8);
    border: 2px solid #c18e12;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgb(151 114 23);
    cursor: default;
}

.promotion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px #c18e12;
    border-color: #c18e12;
}

.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(to bottom, #c99a1c 0%, #322f29 45%, #383322 50%, #c18e12 100%);
    border-color: #bf9b3b;
    border: 3px solid #ebc96e;
    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(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;
}

/* 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%;
    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: #333;
}

.game-thumbnail {
    background: #090a0c;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #fef09f;
    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: 14rem;
    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-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 13rem;
    background: rgb(0 0 0 / 52%);
    z-index: 1;
} */

.game-thumbnail .game-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #ddce90, #e7c462, #b78512, #9b6f13);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: bold;
    padding: 10px;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    z-index: 2;
    display: none;
}


.game-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: 4px 20px;
    line-height: 20px;
    border-radius: 30px;
    color: #816d26;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px auto;
    display: none;
    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);
}
@media (max-width: 600px) {
    .mobile-btn span {
        font-size: 0.55rem;
    }
}
/* 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: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(242, 113, 33, 0.1) 100%);
    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: 2rem;
    color: #e94560;
    margin-bottom: 15px;
    text-align: center;
}

.promo-left h3 {
    font-size: 1.5rem;
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.bonus-amount_ {
    color: #f27121;
    font-weight: bold;
    font-size: 1.5rem !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: #000;
    padding: 40px 20px 20px;
    color: #ffffff;
}

/* Payment Method Section */
.footer-payment-section {
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: center;
}

.footer-section-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    min-width: 100px;
}

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

/* Game Providers Section */
.footer-providers-section {
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: center;
}

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

.footer-provider-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

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

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

/* Regulatory Section */
.footer-regulatory-section {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-regulatory-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-pagcor-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-pagcor-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-regulatory-text {
    color: #ffffff;
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 800px;
    text-align: left;
}

.footer-certifications {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-cert-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.footer-cert-logo img {
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.age-restriction {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: #000000;
    font-weight: bold;
    font-size: 0.9rem;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    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;
    }
    
    
    .sidebar {
        display: none;
    }
    
    /* Footer remains visible on mobile */
    
    .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;
        color: #fef09f !important;
    }
    
    .mobile-menu-item span {
        font-size: 0.7rem;
        font-weight: bold;
        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);
    }
    
    .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;
        border: 1px solid #d5caae73;
    }
    
    .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;
    }
    .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);
    }
    .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 #382f16;
        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: #eddba9;
        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;
        /* border-color: #36e6e0; */
        box-shadow: 0 0 10px rgba(54, 230, 224, 0.3);
    }
    
    .mobile-language-select option {
        background: #16213e;
        color: #ffffff;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    
    .logo a img {
        width: 130px;
        max-width: max-content;
    }
    
    .btn-login-register {
        gap: 1px;
    }
    .tab-item span {
        font-size: 0.6rem;
        font-weight: 600;
    }
    
    .login-btn, .register-btn {
        padding: 6px 5px;
        font-size: 0.6rem;
        border-radius: 5px;
        margin-left: 5px;
        height: 2rem;
        animation: pulse 2s infinite;

    }
    
    .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-tabs-content .tab-content .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }
    .games-tabs-content #popular .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3px;
    }
    .games-tabs-content #popular .games-grid .game-title {display: none;}
    #popular .game-thumbnail .play-now-btn{display: none;}
    
    .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) {
    .main-layout {
        padding: 15px;
    }
    
    .hero-section {
        padding: 20px;
    }
    
    .hero-title {
        font-size: 1.3rem;
    }
    
    
    .games-tabs-content{padding: 0;}
    .game-thumbnail .game-image{
        height: 8rem;
    }
    .game-thumbnail .game-title{
        font-size: 0.8rem;
    }
    .features-bar {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-providers-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 15px;
    }
    
    .footer-provider-logo {
        height: 40px;
        font-size: 0.65rem;
    }
    
    .footer-nav-links {
        flex-direction: column;
        gap: 8px;
    }
    
    /* .footer-nav-links .separator {
        display: none;
    }
     */
    .footer-description {
        font-size: 0.75rem;
        padding: 0 15px;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
    
    .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, .icondds {
    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(180deg, rgb(124 86 12) 0%, rgb(253 218 102) 100%);
    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;
}

.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: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    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;
    }
    
    /* 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;
    }
    .ui-widget-content{
    width: 100%!important;
    margin-left: 0!important;
    left: 0!important;
    }
}

/* 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;
}
 #header .icon-btn_ {
  background-color: #3e2c1d;
  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;
}

@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;
  }
  .ui-widget-content{
    width: 100%!important;
    margin-left: 0!important;
    left: 0!important;
  }
}

@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: #111827 !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;
}
.file-input-wrapper{
    background-color: #111827!important;
    border: 1px solid #e3c26a !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;
}
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;
}
.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;
}
.mobile-btn{
    padding: 2px 3px!important; 
}
/* meun scroll */
 .games-tabs-header {
    display: flex;
    /* gap: 10px;  */
    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: #282014; 
    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 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;
}
.tab-item i {
    font-size: 20px;
    margin-bottom: 5px;
}

/* 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;
  }
}
.footer-navigation {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 20px;
    text-align: center;
}
span.separator{color: #0035b6;}
a[data-provider="slots_playstar"],a[data-provider="slots_live22"]{display:none!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;
    }
}

/* Tablets (641px - 768px) */
@media (max-width: 768px) {
    .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;
    }
    
    .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;
    }
}
#promoModalDesc p{color: #fff!important;}
#promoModalDesc ul li{list-style-type: square;margin-left: 20px;}
#promoModalDesc ul{margin-left: 30px;}
.promo-close{
    left: 7px!important;
    top: 10px!important;
    font-size: 13px!important; 
}
.promo-banner{
    height: 50px!important;
    background: none!important;
}
.promo-banner .download-image, .promo-banner img[src*="download_"]{
    height: 70%!important;
}
.ref_link_name,
	.ref_code_name {
		position: relative;
	}

	.ref_link_name svg,
	.ref_code_name svg {
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		cursor: pointer;
	}

	.copy {
		background-color: inherit !important;

	}

	.separator {
		align-items: center;
		display: flex;
		font-size: 14px;
		margin-bottom: 15px;
		margin-top: 20px;
		text-align: center;
		color: #e3c26a;
	}

	.separator:after,
	.separator:before {
		border-bottom: 1px solid var(--light-purple);
		content: "";
		flex: 1;
	}

	.separator:not(:empty):before {
		margin-right: .65em;
	}

	.separator:not(:empty):after {
		margin-left: .65em;
	}
	.social-container{
		align-items: center;
		display: flex;
		font-size: 10px;
		justify-content: center;
	}
	.overview-container{
		border-radius: 8px;
		padding: 10px
	}
	.flex-wrap {
		flex-wrap: wrap;
	}
	.d-flex {
		display: flex ;
	}
	.overview-subcontainer{
		background: #111827;
		border-radius: 6px;
		flex-basis: 48%;
		flex-grow: 1;
		padding: 8px;
		margin: 0 5px;
        border: 1px solid #e3c26a !important;
	}
	.overview-text {
		font-size: 12px;
		margin-bottom: 8px;
		color: #e3c26a;
	}
	.overview-value{
		font-size: 14px;
		margin-bottom: 0;
		color: #fff;
	}
	.affiliate-header{
		color: #666;
		font-size: 14px;
		font-weight: 400;
		margin-bottom: 10px;
	}
	.overview-container-2{
		border-radius: 8px;
		padding: 10px;
	}
	.report-item.primary {
		background: #e4c76d  !important;
		color: #666;
		border: 1.6px solid #e4c76d !important;
	}
	.report-item {
		background: #111827  !important;
		border-radius: 8px;
		color: #e3c26a;
		cursor: pointer;
		font-size: 14px;
		height: 44px;
		line-height: 48px;
		padding-left: 15px;
		position: relative;
		width: 100%;
		display: flex;
	}
	.gradient-outline-primary:before {
		
		border: 1.6px solid #e4c76d !important;
		border-radius: 8px!important;
		bottom: 0;
		content: "";
		left: 0;
		mask-composite: exclude;
		pointer-events: none;
		position: absolute;
		right: 0;
		top: 0
	}
	.chevron-icon{
		float: right;
		position: absolute;
		right: 12px;
		scale: 1.5;
		top: 57%;
		transform: translateY(-50%);
	}
	.report-item:hover{
		background: #b9921b!important;
	}
	.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.ref_link_name input, .ref_code_name input{
	    background: #111827  !important;
    border: #1b3c31 solid;
    border: 1px solid #e3c26a !important;
    border-radius: 1.1rem !important;
    display: block;
    width: 100%;
    color: #e3c26a!important;
    line-height: 1.5;
      padding: 0 10px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    height: 50px;
}
.center-submit{display: block!important;}
.bonus-top-update{padding: 15px 10px !important;}
p.affiliate-header, p.p-0 { color: #e3c26a;}
@media (max-width: 600px) {
	.overview-subcontainer{
		margin: 6px 5px;
	}
}
.request_ref_list_form #datepicker1, .request_ref_list_form #datepicker2{background: #2e343b!important;}
.ui-datepicker table tr th span{color: #fff!important;}
.gift_leftmenu{
    background: linear-gradient(to bottom, #3c4148 0%, #373c42 45%, #2d333a 50%, #363d46 100%)!important;
}
.gift_leftmenu h3{
    color: #eddba9!important;
    background: linear-gradient(to bottom, #f4dc8f 0%, #b28211 50%, #8b6914 100%) !important;
}
.gift_leftmenu ul li a{
    color:#eddba9!important;
}
#mainContent{
    padding: 0 20px!important;
}
ul.gift_list{background: #2d333a !important;}
#mainContent #content #left #giftList{min-width: 925px!important;}
.q_date{
    display: grid!important;
    grid-template-columns: repeat(4, 1fr)!important;
    gap: 7px!important;
}
.q_date .q {
    margin-left: 0px!important; 
    padding: 4px!important;
    background: linear-gradient(to bottom, #f4dc8f 0%, #b28211 50%, #8b6914 100%) !important;
    border-radius: 4px!important;
    text-align: center;
}
.q_date .q a{ color: #fff!important;}