/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

.login-btn, .register-btn {
    padding: 10px 25px;
    border: 2px solid #e94560;
    border-radius: 25px;
    color: white;
    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: #fff  !important;
}

.login-btn {
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.login-btn:hover {
    background: linear-gradient(45deg, #2980b9, #1f618d);
    border-color: #00ffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.6), 0 0 20px rgba(0, 255, 255, 0.4);
}

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

.register-btn {
    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);
}

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

.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: white;
    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, #36e6e0 0%, #126e73 45%, #14585d 50%, #32e3de 100%);
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    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;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.sidebar-section {
    /*background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);*/
    background: url(../images/sidebar-bg.png) repeat;
    background-size: 100% 100%;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.sidebar-section h3 {
    color: #232d38;
    padding: 5px 15px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 5px;
    position: relative;
    z-index: 1;
}

.sidebar-menu {
    list-style: none;
}

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

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

.sidebar-menu a:hover {
    background: linear-gradient(to bottom, #36e6e0 0%, #126e73 45%, #14585d 50%, #32e3de 100%);
    color: #e94560;
    /*transform: translateX(5px);*/
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

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

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

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

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
}

/* 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 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Games Tabs Section */
.games-tabs-section {
    background: linear-gradient(to bottom, #484e57, #7a818a);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 40px;
    overflow: hidden;
}

.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, #36e6e0 0%, #126e73 45%, #14585d 50%, #32e3de 100%);
    border: 2px solid #00ffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

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

.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(to bottom, #36e6e0 0%, #126e73 45%, #14585d 50%, #32e3de 100%);
    border: 2px solid #00ffff;
    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 rgba(0, 255, 255, 0.5);
}

.sport-thumbnail .play-icon:hover {
    background: linear-gradient(to bottom, #32e3de 0%, #14585d 45%, #126e73 50%, #36e6e0 100%);
    border-color: #00ffff;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.6), 0 0 20px rgba(0, 255, 255, 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: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(to bottom, #36e6e0 0%, #126e73 45%, #14585d 50%, #32e3de 100%);
    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: 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;
}

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

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

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

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

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

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

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

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

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



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

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

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

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

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

.register-submit-btn i {
    margin-right: 8px;
    color: #fff !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(to bottom, #36e6e0 0%, #126e73 45%, #14585d 50%, #32e3de 100%);
    border: 2px solid #00ffff;
    padding: 12px 25px;
    border-radius: 25px;
    color: white;
    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 10px rgba(0, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

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

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

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

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

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

.tab-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}
.tab-item:hover> i.casino, .tab-item.active i.casino{
    background: url(../images/icon/casino-hover.png) no-repeat !important;
    background-size: 100% 100%;
}
.tab-item:hover> i.sport, .tab-item.active i.sport{
    background: url(../images/icon/sport-hover.png) no-repeat !important;
    background-size: 100% 100%;
}
.tab-item:hover> i.fishing, .tab-item.active i.fishing{
    background: url(../images/icon/fishing-hover.png) no-repeat !important;
    background-size: 100% 100%;
}
.tab-item:hover> i.lottery, .tab-item.active i.lottery{
    background: url(../images/icon/lottery-hover.png) no-repeat !important;
    background-size: 100% 100%;
}
.tab-item:hover> i.poker, .tab-item.active i.poker{
    background: url(../images/icon/poker-hover.png) no-repeat !important;
    background-size: 100% 100%;
}
.tab-item:hover> i.keno, .tab-item.active i.keno{
    background: url(../images/icon/keno-hover.png) no-repeat !important;
    background-size: 100% 100%;
}
.tab-item.active {
    background: linear-gradient(to bottom, #a9a8aa, #cfcacb);
    color: #333;
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

.games-tabs-content {
    background: linear-gradient(to bottom, #a9a8aa, #cfcacb);
    padding: 15px;
}


.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: linear-gradient(to bottom, #36e6e0 0%, #126e73 45%, #14585d 50%, #32e3de 100%);
    border: 2px solid #00ffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    width: 100%;
    height: 400px;
}

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

.casino-thumbnail .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(to bottom, #36e6e0 0%, #126e73 45%, #14585d 50%, #32e3de 100%);
    border: 2px solid #00ffff;
    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 rgba(0, 255, 255, 0.5);
}

.casino-thumbnail .play-icon:hover {
    background: linear-gradient(to bottom, #32e3de 0%, #14585d 45%, #126e73 50%, #36e6e0 100%);
    border-color: #00ffff;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.6), 0 0 20px rgba(0, 255, 255, 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(to bottom, #36e6e0 0%, #126e73 45%, #14585d 50%, #32e3de 100%);
    border: 2px solid #00ffff;
    padding: 10px 20px;
    border-radius: 20px;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Slot Image Styles */
.slot-image {
    position: relative;
    border: 2px solid #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    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 rgba(0, 255, 255, 0.8);
    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(to bottom, #36e6e0 0%, #126e73 45%, #14585d 50%, #32e3de 100%);
    border: 2px solid #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    border-radius: 25px;
    color: white;
    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(to bottom, #32e3de 0%, #14585d 45%, #126e73 50%, #36e6e0 100%);
    border-color: #00ffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.6), 0 0 20px rgba(0, 255, 255, 0.4);
}

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

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

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

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

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


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

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

/* 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: 2.5rem;
    color: #e94560;
    margin-bottom: 15px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
        gap: 0;
    }
    
    .logo a img {
        width: 200px;
        height: auto;
    }
    
    .btn-login-register {
        gap: 8px;
        flex-shrink: 0;
    }
    
    .login-btn, .register-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        min-width: auto;
    }
    
    .login-btn i, .register-btn i {
        margin-right: 4px;
        font-size: 0.8rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    .nav-link{
        border-radius: 0 !important;
    }
    .hero-description {
        font-size: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .promo-section {
        display: none;
    }
    
    .sidebar {
        display: none;
    }
    
    .footer {
        display: none;
    }
    
    .casino-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cocks-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-promotion {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .section-title i {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .promotion-icon {
        width: 40px;
        height: 40px;
    }
    
    .promotion-icon i {
        font-size: 1.2rem;
    }
    
    .promotion-badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .promotion-image {
        height: 100px;
        margin-bottom: 12px;
    }
    
    .casino-thumbnail .game-image {
        height: auto;
    }
    
    .casino-title {
        font-size: 1rem;
    }
    
    .star-rating i {
        font-size: 0.9rem;
    }
    
    .casino-thumbnail .play-now-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    /* Mobile Bottom Menu */
    .mobile-bottom-menu {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to bottom, #36e6e0 0%, #126e73 45%, #14585d 50%, #32e3de 100%);
        border-top: 2px solid #00ffff;
        justify-content: space-around;
        align-items: center;
        padding: 8px 0;
        z-index: 1000;
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
        height: 60px;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .mobile-menu-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        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: #ffffff !important;
    }
    
    .mobile-menu-item span {
        font-size: 0.7rem;
        font-weight: 500;
        text-align: center;
        color: #ffffff;
    }
    
    .mobile-menu-item:hover {
        background: rgba(0, 255, 255, 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: 100vh;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 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: auto;
    }
    
    .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: white;
        font-size: 24px;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }
    
    .nav-menu li {
        width: 100%;
        height: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0 auto;
        flex: none !important;

    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 20px 25px;
        transition: all 0.3s ease;
        display: block;
        text-align: left;
        color: #ffffff;
        text-decoration: none;
        position: relative;
    }
    
    .nav-link:hover {
        background: linear-gradient(135deg, #e94560, #f27121);
        color: #ffffff;
        padding-left: 35px;
    }
    
    .nav-link.active {
        background: linear-gradient(135deg, #36e6e0, #00ffff);
        color: #1a1a2e;
        font-weight: 600;
    }
    
    /* Language Dropdown in Mobile Menu */
    .mobile-language-section {
        padding: 20px 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: auto;
    }
    
    .mobile-language-label {
        color: #36e6e0;
        font-size: 0.9rem;
        margin-bottom: 10px;
        font-weight: 600;
    }
    
    .mobile-language-select {
        width: 100%;
        padding: 10px 15px;
        background: rgba(22, 33, 62, 0.8);
        border: 2px solid #16213e;
        border-radius: 8px;
        color: #ffffff;
        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) {
    .header-container {
        padding: 0 10px;
    }
    
    .logo a img {
        width: 150px;
    }
    
    .btn-login-register {
        gap: 6px;
    }
    
    .login-btn, .register-btn {
        padding: 10px 10px;
        font-size: 0.75rem;
        border-radius: 5px;
    }
    
    .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
    }
    
    .hamburger-line {
        width: 18px;
        height: 2px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 12px 25px;
        min-width: 180px;
    }
    
    .mobile-language-section {
        padding: 15px 20px;
    }
    
    .mobile-language-label {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .mobile-language-select {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        max-width: 200px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .casino-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cocks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-promotion {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .promotion-item {
        padding: 15px;
    }
    
    .promotion-title {
        font-size: 1.3rem;
    }
    
    .promotion-amount {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-title i {
        font-size: 1.3rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .promotion-icon {
        width: 35px;
        height: 35px;
    }
    
    .promotion-icon i {
        font-size: 1rem;
    }
    
    .promotion-badge {
        font-size: 0.6rem;
        padding: 3px 6px;
        top: 10px;
        right: 10px;
    }
    
    .promotion-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .promotion-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .promotion-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .promotion-image {
        height: 80px;
        margin-bottom: 10px;
    }
    
    .casino-thumbnail .game-image {
        height: auto;
    }
    .casino-thumbnail{
        height: 261px;
    }
    .casino-title {
        font-size: 0.9rem;
    }
    
    .star-rating i {
        font-size: 0.8rem;
    }
    
    .casino-thumbnail .play-now-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .features-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

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

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

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


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

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

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

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

.modal-header h2 {
    color: white;
    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: white;
    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;
    }
}

/* 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;
}

@media (max-width: 1024px) {
  #header .icon-btn {
    padding: 5px;
    justify-content: center;
    width: 30px;
    height: 30px;
  }
}

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


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

#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: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: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:focus-within .dropdown-body {
  display: block;
}

#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;
  }
}

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

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

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

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

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

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

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

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

#header .user-wallet-actions button {
  flex: 1;
}
.btn-theme {
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  padding: 18px 24px;
  line-height: 15px;
  text-align: center;
  width: 100%;
  outline: unset;
  box-shadow: unset;
  text-decoration: none;
  display: block;
  color: var(--btn-color);
  -webkit-text-fill-color: var(--btn-color);
  --btn-color: #fff;
  /* background: linear-gradient(to right, #fadd56, #feb80c); */
  background: linear-gradient(0deg,rgba(220, 61, 5, 1) 20%, rgba(240, 137, 7, 1) 100%);
  border: 1px solid rgba(240, 137, 7, 1);
  white-space: nowrap;
  box-shadow: 0 0 5px 1px rgba(240, 137, 7, 1);
}
p.mb-0 {
    color: #fff;
    -webkit-text-fill-color: #fff;
}
input[type=checkbox] {
    width: 20px;
    height: 14px !important;
}
.center_responsive .flex-grow{
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1)) !important;
}
.center_responsive select, .shadow-sm{
    background: #666 !important;
}
.capch-text{
background: #4f4f4f !important;
}
.bg-white{
      background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1))!important;
}
.bg-gray-50{
    background: none  !important;
}
.ui-datepicker{
  background: #000 !important;
}
input#amount {
    background: #666 !important;
}
.bg-gray-200{
    background: none !important;
}
.duration-200,.text-gray-800,.text-gray-700{
    color: #fff !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; 
}