* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #ff6b35;
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --card-bg: #2a2a2a;
    --neon-pink: #ff00ff;
    --neon-blue: #00ffff;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(0deg,rgba(64, 26, 7, 1) 5%, rgba(152, 55, 10, 1) 30%, rgba(221, 159, 76, 1) 70%) !important;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
     
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    background: linear-gradient(323deg, rgb(68 25 8) 0%, rgb(61 26 7) 100%);
    padding: 8px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    background: linear-gradient(0deg,rgba(27, 22, 19, 1) 10%, rgba(37, 32, 28, 1) 50%, rgba(70, 51, 44, 1) 100%);
    padding: 0;
    width: 100%;
}

/* Desktop: Ensure nav-menu displays correctly with new structure */
.nav-menu .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu .mobile-menu-content {
    display: flex;
    gap: 0;
    flex-wrap: nowrap;
    width: 100%;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 8px;
    border-radius: 5px;
    transition: background 0.3s;
    flex: 1 1 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    text-transform: uppercase;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-link.active {
    background: linear-gradient(0deg, rgb(41 31 30) 10%, rgba(54, 43, 41, 1) 40%, rgb(99 81 73) 90%);
    color: #ffcf73;
}

/* Desktop: Hide mobile menu specific elements */
.mobile-menu-header,
.mobile-menu-footer,
.mobile-menu-close,
.mobile-menu-user,
.nav-menu-overlay {
    display: none;
}

/* Desktop: Hide mobile-specific children in nav-link, show text */
@media (min-width: 769px) {
    .nav-link {
        flex: 1;
        min-width: 0;
    }

    .nav-link .nav-link-icon-wrapper,
    .nav-link .nav-link-arrow,
    .nav-link .nav-link-badge {
        display: none;
    }

    /* Desktop: Show nav-link-text content inline */
    .nav-link .nav-link-text {
        display: inline;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 35px;
}

.btn-login {
    background: transparent;
    border: 2px solid #ffd98a;
    color: white;
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login:hover {
    background: white;
    color: var(--primary-orange);
}

.btn-register {
    background: linear-gradient(0deg,rgba(205, 111, 39, 1) 10%, rgba(245, 171, 76, 1) 90%);
    border: 2px solid #ffd98a;
    color: #ffd98a;
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-register:hover {
    background: transparent;
    color: white;
}

.btn-logout {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-logout:hover {
    background: white;
    color: var(--primary-orange);
}

.btn-logout i {
    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* padding: 60px 0; */
    overflow: hidden;
}

.hero .container {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1200px;
}

/* Hero Spacer */
.hero-spacer {
    height: 80px;
    width: 100%;
    background: linear-gradient(0deg, rgba(80, 40, 28, 1) 10%, rgb(115 64 45) 90%);
}

.hero-background-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    overflow: hidden;
}

.hero-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-banner-slide.active {
    opacity: 1;
}


.hero-content {
    display: block;
    width: 100%;
    text-align: left;
    
}

.hero-text {
    z-index: 1;
    text-align: left;
        margin-left: 13%;
}

span.hero-title-line1,span.hero-title-line2 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
}

.hero-title-line1 {
    background: linear-gradient(0deg, rgba(217, 144, 75, 1) 10%, rgba(240, 183, 106, 1) 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.hero-title-line2 {
    color: #f5e6d3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title-highlight {
    color: inherit;
    font-size: 1.1em;
}

.hero-description {
    font-size: 18px;
    color: #f5e6d3;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 600px;
}

.btn-primary {
    background: linear-gradient(0deg,rgba(152, 56, 8, 1) 10%, rgba(176, 76, 14, 1) 40%, rgba(250, 164, 53, 1) 80%);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 10px;
    border-bottom: 2px solid #f18c46;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(204, 85, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 85, 0, 0.6);
}

.btn-primary:active {
    transform: translateY(0);
}


/* Icon Bar */
.icon-bar {
    padding: 0;
    margin-top: -7rem;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.7rem;
}

.icon-item {
    background: linear-gradient(0deg, rgba(20, 20, 18, 1) 0%, rgba(68, 54, 45, 1) 100%);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s;
    cursor: pointer;
}

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

.icon-item.active {
    background: linear-gradient(0deg, rgb(164, 78, 16) 5%, rgb(238, 191, 127) 100%);
    border-bottom: 1px solid #bc6b2e;
}

.icon-item.active .icon-circle {
    color: black;
    border-color: black;
}

.icon-item.active .icon-title {
    color: black;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    border: 2px solid white;
    background: transparent;
    flex-shrink: 0;
    transition: color 0.3s, border-color 0.3s;
}

.icon-label {
    text-align: left;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.icon-title {
    font-weight: bold;
    color: var(--text-light);
    font-size: 14px;
    transition: color 0.3s;
}

/* Hot Promotion Slideshow */
.hot-promotion {
    padding: 1rem 0 0;
}

.hot-promotion .container {
    background: #2e160a;
    border-radius: 12px;
    padding: 0.8rem;
}

.hot-promotion-slider {
    position: relative;
}

.hot-promotion-slide {
    outline: none;
    position: relative;
}

.hot-promotion-image-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #794a2c;
}

.hot-promotion-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.hot-promotion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 2rem;
}

.hot-promotion-content {
    max-width: 500px;
    z-index: 1;
}

.hot-promotion-title1,
.hot-promotion-title2 {
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    background: linear-gradient(180deg, #ffd700 0%, #ffa500 50%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    line-height: 1.2;
}

.hot-promotion-title1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hot-promotion-title2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.hot-promotion-description1,
.hot-promotion-description2 {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.hot-promotion-description2 {
    margin-bottom: 2rem;
}

.hot-promotion-btn {
    background: linear-gradient(0deg,rgba(152, 56, 8, 1) 10%, rgba(176, 76, 14, 1) 40%, rgba(250, 164, 53, 1) 80%);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 10px;
    border-bottom: 2px solid #f18c46;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(204, 85, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.hot-promotion-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.hot-promotion-btn:hover::before {
    left: 100%;
}

.hot-promotion-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 85, 0, 0.6);
}

.hot-promotion-btn:active {
    transform: translateY(0);
}

/* Hot Game Slideshow */
.hot-game-section {
    padding: 0;
}

.hot-game-slider-wrapper {
    background: linear-gradient(323deg, rgb(204 103 66) 0%, rgb(165 100 43) 69%, rgb(234 153 86) 97%), linear-gradient(0deg, rgb(226 123 77) 10%, rgb(224 140 72) 80%);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    border-radius: 10px;
    border: 2px solid transparent;
    padding: 2px;
}

.hot-game-slider {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #2e160a;
}

.hot-game-slide {
    outline: none;
    position: relative;
}

.hot-game-image-wrapper {
    position: relative;
    overflow: hidden;
}

.hot-game-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 350px;
    object-fit: cover;
}

.hot-game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 1;
}

.hot-game-content {
    max-width: 500px;
    z-index: 2;
}

.hot-game-title {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
}

.hot-game-subtitle {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 1.5rem 0;
    background: linear-gradient(180deg, #ffd700 0%, #ffa500 50%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    line-height: 1.2;
}

.hot-game-description {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hot-game-btn {
    background: linear-gradient(0deg, rgba(152, 56, 8, 1) 10%, rgba(176, 76, 14, 1) 40%, rgba(250, 164, 53, 1) 80%);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 10px;
    border-bottom: 2px solid #f18c46;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(204, 85, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.hot-game-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 85, 0, 0.6);
}

.hot-game-btn:active {
    transform: translateY(0);
}

/* Featured Games Slideshow */
.featured-games {
    padding: 1.5rem 0;
}

.featured-games-slider {
    margin: 0 -10px;
    overflow: visible;
}

.featured-games-slider .slick-slide {
    overflow: visible;
}

.featured-game-slide {
    padding: 15px 10px 0;
    outline: none;
    overflow: visible;
}

.featured-game-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.featured-game-link:hover .featured-game-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.4);
}

.featured-game-card {
    background: 
        linear-gradient(323deg,rgba(232, 127, 36, 1) 0%, rgba(255, 180, 65, 1) 69%, rgba(255, 172, 48, 1) 97%),
        linear-gradient(0deg, rgb(255 192 102) 10%, rgb(255 232 179) 80%);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    border-radius: 18px;
    border: 3px solid transparent;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.featured-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.4);
}

.featured-game-top {
    padding: 28px 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    border-radius: 13px 13px 0 0;
}

.featured-game-bonus {
    flex: 1;
    text-align: center;
}

.featured-game-bonus-label {
    font-size: 13px;
    color: rgb(0 0 0);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.featured-game-bonus-percent {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.featured-game-text-line1 {
    font-size: 14px;
    color: #4e1c1b;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 4px;
}

.featured-game-text-line2 {
    font-size: 14px;
    color: #4e1c1b;
    font-weight: 400;
    line-height: 1.4;
}

.featured-game-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    background: rgb(176 77 12);
    border-radius: 0 0 0 10px;
}

.featured-game-image-container {
    border-radius: 0 0 13px 13px;
    overflow: hidden;
    margin: 0;
    position: relative;
    flex: 1;
    padding: 1.2rem 0.6rem 1.8rem;
    min-height: 220px;
}

.featured-game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.featured-game-card:hover .featured-game-image {
    transform: scale(1.05);
}

.featured-game-title {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 20%, #ff8c00 40%, #cc6600 60%, #ffb347 80%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    background-position-x: 0%;
    animation: shimmerText 3s ease-in-out infinite;
    margin-bottom: 8px;
    letter-spacing: 0px;
    text-transform: uppercase;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
    text-align: center;
    z-index: 2;
    transform-origin: center center;
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes shimmerText {
    0%, 100% {
        background-position-x: 0%;
    }
    50% {
        background-position-x: 100%;
    }
}

/* Featured Games Section */
.section-title {
    text-align: center;
    font-size: 36px;
    color: #000000;
    margin-bottom: 40px;
}

.profile-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.profile-card {
    background: linear-gradient(0deg,rgba(193, 101, 76, 1) 4%, rgba(231, 164, 94, 1) 40%, rgba(199, 91, 45, 1) 100%);
    padding: 3px;
    border-radius: 18px;
    overflow: visible;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
}

.profile-card-inner {
    background: var(--card-bg);
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.profile-card-link:hover .profile-card,
.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(255, 107, 53, 0.5);
}

.profile-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.profile-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 0 15px;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
}

.profile-name {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #00ffff 0%, #00ced1 20%, #00bfff 40%, #008b8b 60%, #00ced1 80%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    letter-spacing: 0px;
    text-transform: uppercase;
    position: relative;
}

.profile-top-overlay {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffefc4;
    background: linear-gradient(0deg,rgba(248, 147, 105, 1) 0%, rgba(254, 145, 88, 1) 30%, rgba(244, 99, 20, 1) 70%);
    padding: 8px 15px;
    border-radius: 4px 4px 18px 18px;
    border-bottom: 1px solid #ffffff96;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    width: 60%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.profile-subtitle {
    font-size: 14px;
    color: var(--text-gray);
}

.profile-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ff1744;
    font-size: 24px;
    background: rgba(0, 0, 0, 0.5);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--card-bg);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--primary-orange);
}

/* Sports Cards Section */
.sports-cards-section {
    padding: 3rem 0;
}

.sports-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 1rem;
}

/* Casino cards - 4 per row on desktop */
#casinoCardsGrid {
    grid-template-columns: repeat(4, 1fr);
}

/* Slots cards - 4 per row on desktop */
#slotsCardsGrid {
    grid-template-columns: repeat(4, 1fr);
}

/* Fishing cards - 4 per row on desktop */
#fishingCardsGrid {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    #casinoCardsGrid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    #slotsCardsGrid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    #fishingCardsGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    #casinoCardsGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #slotsCardsGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #fishingCardsGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    #casinoCardsGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #slotsCardsGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #fishingCardsGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sports-card {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 100%;
    background: transparent;
}

.sports-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.8) 0%, 
        rgba(255, 180, 65, 0.6) 25%,
        rgba(255, 215, 0, 0.8) 50%,
        rgba(255, 180, 65, 0.6) 75%,
        rgba(255, 107, 53, 0.8) 100%);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease, background-position 3s ease;
    animation: borderGlow 3s ease-in-out infinite;
}

.sports-card:hover::before {
    opacity: 1;
}

@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.sports-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.sports-card-inner {
    background: linear-gradient(145deg, 
        rgba(30, 30, 30, 0.95) 0%, 
        rgba(20, 20, 20, 0.98) 100%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sports-card:hover .sports-card-inner {
    box-shadow: 
        0 20px 60px rgba(255, 107, 53, 0.3),
        0 0 40px rgba(255, 180, 65, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 180, 65, 0.3);
}

.sports-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 180, 65, 0.1));
}

.sports-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.sports-card:hover .sports-card-image {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1) contrast(1.2);
}

.sports-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.sports-card:hover .sports-card-overlay {
    background: transparent;
}

.sports-card-content {
    padding: 28px 24px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    position: relative;
}

.sports-card-title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    line-height: 1.3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sports-card-title::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(255, 107, 53, 1) 0%,
        rgba(255, 180, 65, 1) 50%,
        rgba(255, 215, 0, 1) 100%);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(255, 180, 65, 0.6);
}

.sports-card:hover .sports-card-title::before {
    width: 100%;
}

.sports-card:hover .sports-card-title {
    background: linear-gradient(135deg, 
        #ffd700 0%, 
        #ffb347 30%, 
        #ff8c00 60%, 
        #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    background-position-x: 0%;
    animation: shimmerText 3s ease-in-out infinite;
    text-shadow: none;
}

.casino-card-title {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff1744 0%, #ff5252 20%, #ff4081 40%, #e91e63 60%, #ff5252 80%, #ff1744 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    background-position-x: 0%;
    animation: shimmerText 3s ease-in-out infinite;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 15px rgba(255, 23, 68, 0.3));
    transform-origin: center center;
    backface-visibility: hidden;
    perspective: 1000px;
}

.slots-card-title {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #00bcd4 0%, #00e5ff 20%, #18ffff 40%, #4dd0e1 60%, #00e5ff 80%, #00bcd4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    background-position-x: 0%;
    animation: shimmerText 3s ease-in-out infinite;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 15px rgba(0, 188, 212, 0.3));
    transform-origin: center center;
    backface-visibility: hidden;
    perspective: 1000px;
}

.poker-card-title {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 20%, #81c784 40%, #a5d6a7 60%, #66bb6a 80%, #4caf50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    background-position-x: 0%;
    animation: shimmerText 3s ease-in-out infinite;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 15px rgba(76, 175, 80, 0.3));
    transform-origin: center center;
    backface-visibility: hidden;
    perspective: 1000px;
}

.lottery-card-title {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #9c27b0 0%, #ab47bc 20%, #ba68c8 40%, #ce93d8 60%, #ab47bc 80%, #9c27b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    background-position-x: 0%;
    animation: shimmerText 3s ease-in-out infinite;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 15px rgba(156, 39, 176, 0.3));
    transform-origin: center center;
    backface-visibility: hidden;
    perspective: 1000px;
}

.number-card-title {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff9800 0%, #ffa726 20%, #ffb74d 40%, #ffcc80 60%, #ffa726 80%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    background-position-x: 0%;
    animation: shimmerText 3s ease-in-out infinite;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 15px rgba(255, 152, 0, 0.3));
    transform-origin: center center;
    backface-visibility: hidden;
    perspective: 1000px;
}

.fishing-card-title {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #00897b 0%, #009688 20%, #26a69a 40%, #4db6ac 60%, #009688 80%, #00897b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    background-position-x: 0%;
    animation: shimmerText 3s ease-in-out infinite;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 15px rgba(0, 137, 123, 0.3));
    transform-origin: center center;
    backface-visibility: hidden;
    perspective: 1000px;
}

.cockfight-card-title {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #5d4037 0%, #6d4c41 20%, #8d6e63 40%, #a1887f 60%, #6d4c41 80%, #5d4037 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    background-position-x: 0%;
    animation: shimmerText 3s ease-in-out infinite;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 15px rgba(93, 64, 55, 0.3));
    transform-origin: center center;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Promotion Cards Section - Horizontal Layout */
.promotion-cards-section {
    padding: 3rem 0;
    background: transparent;
}

.promotion-cards-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.promotion-card {
    width: 100%;
    position: relative;
    border-radius: 24px;
    overflow: visible;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: transparent;
}

.promotion-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 24px;
    padding: 3px;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.6) 0%,
        rgba(255, 180, 65, 0.4) 25%,
        rgba(255, 215, 0, 0.6) 50%,
        rgba(255, 180, 65, 0.4) 75%,
        rgba(255, 107, 53, 0.6) 100%);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: promotionBorderGlow 4s ease-in-out infinite;
    z-index: 0;
}

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

@keyframes promotionBorderGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.promotion-card:hover {
    transform: translateX(8px) scale(1.01);
}

.promotion-card-inner {
    background: linear-gradient(145deg, 
        rgba(25, 25, 30, 0.95) 0%,
        rgba(15, 15, 20, 0.98) 100%);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    position: relative;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.promotion-card:hover .promotion-card-inner {
    box-shadow: 
        0 20px 60px rgba(255, 107, 53, 0.4),
        0 0 50px rgba(255, 180, 65, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 180, 65, 0.4);
}

.promotion-card-image-wrapper {
    flex: 0 0 400px;
    height: 240px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 180, 65, 0.15));
}

.promotion-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
    filter: brightness(0.9) contrast(1.05);
}

.promotion-card:hover .promotion-card-image {
    transform: scale(1.12) translateX(5px);
    filter: brightness(1) contrast(1.15);
}

.promotion-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0) 30%,
        transparent 100%
    );
    pointer-events: none;
    transition: background 0.5s ease;
}

.promotion-card:hover .promotion-card-overlay {
    background: linear-gradient(
        to right,
        rgba(255, 107, 53, 0.15) 0%,
        rgba(0, 0, 0, 0.1) 30%,
        transparent 100%
    );
}

.promotion-card-content {
    flex: 1;
    padding: 35px 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background: linear-gradient(
        to left,
        rgba(0, 0, 0, 0.2) 0%,
        transparent 100%
    );
}

.promotion-card-title {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    line-height: 1.2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.promotion-card-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(255, 107, 53, 1) 0%,
        rgba(255, 180, 65, 1) 50%,
        rgba(255, 215, 0, 1) 100%);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(255, 180, 65, 0.7);
}

.promotion-card:hover .promotion-card-title::after {
    width: 100%;
}

.promotion-card:hover .promotion-card-title {
    background: linear-gradient(135deg, 
        #ffd700 0%, 
        #ffb347 30%, 
        #ff8c00 60%, 
        #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    background-position-x: 0%;
    animation: shimmerText 3s ease-in-out infinite;
    text-shadow: none;
}

.promotion-card-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 24px;
    transition: color 0.4s ease;
    flex-grow: 1;
}

.promotion-card:hover .promotion-card-description {
    color: rgba(255, 255, 255, 0.95);
}

.promotion-card-button {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 1) 0%,
        rgba(255, 140, 66, 1) 50%,
        rgba(255, 180, 65, 1) 100%);
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
    box-shadow: 
        0 6px 20px rgba(255, 107, 53, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

.promotion-card-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.6s ease;
}

.promotion-card-button:hover::before {
    left: 100%;
}

.promotion-card-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 30px rgba(255, 107, 53, 0.7),
        0 0 40px rgba(255, 180, 65, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, 
        rgba(255, 140, 66, 1) 0%,
        rgba(255, 180, 65, 1) 50%,
        rgba(255, 215, 0, 1) 100%);
}

.promotion-card-button:active {
    transform: translateY(-1px) scale(1.02);
}

.sports-card-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.sports-card:hover .sports-card-description {
    color: rgba(255, 255, 255, 0.9);
}

.sports-card-button {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 1) 0%,
        rgba(255, 140, 66, 1) 50%,
        rgba(255, 180, 65, 1) 100%);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    align-self: flex-start;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.sports-card-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.5s ease;
}

.sports-card-button:hover::before {
    left: 100%;
}

.sports-card-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.6),
        0 0 30px rgba(255, 180, 65, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, 
        rgba(255, 140, 66, 1) 0%,
        rgba(255, 180, 65, 1) 50%,
        rgba(255, 215, 0, 1) 100%);
}

.sports-card-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Responsive Sports Cards */
@media (max-width: 1024px) {
    .sports-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .sports-cards-section {
        padding: 2rem 0;
    }
    
    .sports-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0;
    }
    
    .sports-card-image-wrapper {
        height: 220px;
    }
    
    .sports-card-content {
        padding: 22px 20px;
    }
    
    .sports-card-title {
        font-size: 22px;
    }
    
    .sports-card-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .sports-card-button {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    .casino-card-title {
        font-size: 24px;
    }
    
    .slots-card-title {
        font-size: 24px;
    }
    
    .poker-card-title {
        font-size: 24px;
    }
    
    .lottery-card-title {
        font-size: 24px;
    }
    
    .number-card-title {
        font-size: 24px;
    }
    
    .fishing-card-title {
        font-size: 24px;
    }
    
    .cockfight-card-title {
        font-size: 24px;
    }
    
    .promotion-card-image-wrapper {
        flex: 0 0 300px;
        height: 200px;
    }
    
    .promotion-card-content {
        padding: 28px 32px;
    }
    
    .promotion-card-title {
        font-size: 28px;
        margin-bottom: 14px;
    }
    
    .promotion-card-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .promotion-card-button {
        padding: 14px 32px;
        font-size: 14px;
    }
    
    .sports-card-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .sports-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .sports-card-image-wrapper {
        height: 160px;
    }
    
    .sports-card-content {
        padding: 16px 14px;
    }
    
    .sports-card-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .sports-card-description {
        font-size: 12px;
        margin-bottom: 16px;
    }
    
    .sports-card-button {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .casino-card-title {
        font-size: 20px;
    }
    
    .slots-card-title {
        font-size: 15px;
    }
    
    .poker-card-title {
        font-size: 20px;
    }
    
    .lottery-card-title {
        font-size: 20px;
    }
    
    .number-card-title {
        font-size: 20px;
    }
    
    .fishing-card-title {
        font-size: 15px;
    }
    
    .cockfight-card-title {
        font-size: 18px;
    }
    
    .promotion-card-inner {
        flex-direction: column;
    }
    
    .promotion-card-image-wrapper {
        flex: 0 0 auto;
        width: 100%;
        height: 220px;
    }
    
    .promotion-card-content {
        padding: 24px 20px;
        text-align: left;
    }
    
    .promotion-card-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .promotion-card-title::after {
        height: 3px;
    }
    
    .promotion-card-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .promotion-card-button {
        padding: 12px 28px;
        font-size: 13px;
        align-self: flex-start;
    }
    
    .promotion-card-button {
        align-self: center;
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .sports-card-description {
        font-size: 12px;
    }
    
    .sports-card-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Promo Section */
/* Footer */
.footer {
    background: #180a09;
    padding: 60px 0 20px;
    border-top: 1px solid var(--card-bg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-left h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #f6dbba;
}

.footer-left p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #f6dbba;
    color: #f6dbba;
    padding: 10px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #f6dbba;
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    color: #f6dbba;
    margin-bottom: 15px;
    font-size: 18px;
}

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

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

.footer-column ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--card-bg);
}

.copyright p {
    color: var(--text-gray);
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: white;
    font-size: 20px;
    transition: transform 0.3s, opacity 0.3s;
    text-decoration: none;
}

/* Facebook */
.social-icons a[aria-label="Facebook"] {
    background: linear-gradient(135deg, #0d5ab8 0%, #1976d2 100%);
}

/* Telegram */
.social-icons a[aria-label="Telegram"] {
    background: linear-gradient(135deg, #006699 0%, #0077b5 100%);
}

/* WeChat */
.social-icons a[aria-label="WeChat"] {
    background: linear-gradient(135deg, #059905 0%, #06a806 100%);
}

/* Phone */
.social-icons a[aria-label="Phone"] {
    background: linear-gradient(135deg, #2d5aa0 0%, #4c63d2 100%);
}

.social-icons a:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 10px 0;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo-image {
        height: 45px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(180deg, #0a1929 0%, #1a2332 50%, #0f1419 100%);
        display: flex;
        flex-direction: column;
        padding: 0;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999999;
        box-shadow: 
            4px 0 30px rgba(0, 0, 0, 0.8),
            2px 0 15px rgba(0, 0, 0, 0.6),
            inset -1px 0 0 rgba(255, 255, 255, 0.05);
        overflow-y: auto;
        overflow-x: hidden;
        align-items: flex-start;
    }

    .nav-menu .container {
        flex-direction: column;
    }

    .mobile-menu-content {
        display: flex !important;
        flex-direction: column;
        gap: 8px;
        padding: 20px 0 8rem;
        width: 100%;
        order: 2;
        position: relative;
        z-index: 1;
        overflow-y: auto;
        flex: 1;
        min-height: 0;
    }

    /* Mobile Menu Navigation Links */
    .nav-menu .nav-link {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px 20px;
        margin: 0 12px;
        border-radius: 16px;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.85);
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex: 0 0 auto;
        text-align: left;
        min-width: 0;
    }

    .nav-menu .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 107, 53, 0.1) 50%, 
            transparent 100%);
        transition: left 0.5s ease;
    }

    .nav-menu .nav-link:hover::before {
        left: 100%;
    }

    .nav-menu .nav-link:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 107, 53, 0.3);
        transform: translateX(4px);
        color: #ffffff;
        box-shadow: 
            0 4px 12px rgba(0, 0, 0, 0.2),
            0 0 0 1px rgba(255, 107, 53, 0.2);
    }

    .nav-menu .nav-link.active {
        background: linear-gradient(135deg, 
            rgba(255, 107, 53, 0.25) 0%, 
            rgba(255, 215, 0, 0.15) 100%);
        border-color: rgba(255, 107, 53, 0.5);
        color: #ffcf73;
        box-shadow: 
            0 4px 16px rgba(255, 107, 53, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 0 1px rgba(255, 107, 53, 0.4);
    }

    .nav-menu .nav-link.active::after {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 60%;
        background: linear-gradient(180deg, 
            rgba(255, 107, 53, 1) 0%, 
            rgba(255, 215, 0, 1) 100%);
        border-radius: 0 4px 4px 0;
        box-shadow: 0 0 8px rgba(255, 107, 53, 0.6);
    }

    /* Icon Wrapper */
    .nav-link-icon-wrapper {
        position: relative;
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-link-icon {
        position: relative;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2;
        font-size: 20px;
        color: rgba(255, 255, 255, 0.7);
    }

    .nav-link-icon-shadow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 48px;
        height: 48px;
        background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
        border-radius: 14px;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
    }

    .nav-link:hover .nav-link-icon {
        background: linear-gradient(135deg, 
            rgba(255, 107, 53, 0.2) 0%, 
            rgba(255, 215, 0, 0.15) 100%);
        border-color: rgba(255, 107, 53, 0.4);
        color: #ffcf73;
        transform: scale(1.05);
        box-shadow: 
            0 4px 12px rgba(255, 107, 53, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .nav-link:hover .nav-link-icon-shadow {
        opacity: 1;
    }

    .nav-link.active .nav-link-icon {
        background: linear-gradient(135deg, 
            rgba(255, 107, 53, 0.4) 0%, 
            rgba(255, 215, 0, 0.3) 100%);
        border-color: rgba(255, 107, 53, 0.6);
        color: #ffcf73;
        box-shadow: 
            0 4px 16px rgba(255, 107, 53, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            0 0 20px rgba(255, 107, 53, 0.3);
        transform: scale(1.08);
    }

    .nav-link.active .nav-link-icon-shadow {
        opacity: 1;
        background: radial-gradient(circle, rgba(255, 107, 53, 0.5) 0%, transparent 70%);
    }

    /* Text */
    .nav-link-text {
        flex: 1;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 0.3px;
        transition: all 0.3s ease;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nav-link:hover .nav-link-text {
        color: #ffffff;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .nav-link.active .nav-link-text {
        color: #ffcf73;
        font-weight: 700;
        text-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    }

    /* Arrow */
    .nav-link-arrow {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.4);
        font-size: 12px;
        transition: all 0.3s ease;
    }

    .nav-link:hover .nav-link-arrow {
        color: rgba(255, 255, 255, 0.7);
        transform: translateX(4px);
    }

    .nav-link.active .nav-link-arrow {
        color: #ffcf73;
        transform: translateX(4px);
    }

    /* Add subtle animation delay for menu items */
    .nav-menu .nav-link:nth-child(1) { transition-delay: 0ms; }
    .nav-menu .nav-link:nth-child(2) { transition-delay: 20ms; }
    .nav-menu .nav-link:nth-child(3) { transition-delay: 40ms; }
    .nav-menu .nav-link:nth-child(4) { transition-delay: 60ms; }
    .nav-menu .nav-link:nth-child(5) { transition-delay: 80ms; }
    .nav-menu .nav-link:nth-child(6) { transition-delay: 100ms; }
    .nav-menu .nav-link:nth-child(7) { transition-delay: 120ms; }
    .nav-menu .nav-link:nth-child(8) { transition-delay: 140ms; }
    .nav-menu .nav-link:nth-child(9) { transition-delay: 160ms; }
    .nav-menu .nav-link:nth-child(10) { transition-delay: 180ms; }
    .nav-menu .nav-link:nth-child(11) { transition-delay: 200ms; }

    /* Menu item entrance animation */
    .nav-menu.active .nav-link {
        animation: slideInLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1) backwards;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-menu::-webkit-scrollbar {
        width: 6px;
    }

    .nav-menu::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.2);
    }

    .nav-menu::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, rgba(255, 107, 53, 0.6) 0%, rgba(255, 215, 0, 0.4) 100%);
        border-radius: 3px;
    }

    .nav-menu::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, rgba(255, 107, 53, 0.8) 0%, rgba(255, 215, 0, 0.6) 100%);
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-header {
        position: relative;
        padding: 20px 20px 15px;
        background: linear-gradient(180deg, rgba(255, 107, 53, 0.15) 0%, transparent 100%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1;
        flex-shrink: 0;
        order: 1;
        width: 100%;
    }

    .mobile-menu-logo {
        flex: 1;
        display: flex;
        align-items: center;
        text-decoration: none;
        cursor: pointer;
    }

    .mobile-menu-logo-img {
        height: 45px;
        width: auto;
        filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.4));
    }

    .mobile-menu-close {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #ffffff;
        width: 40px;
        height: 40px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 18px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .mobile-menu-close:hover {
        background: rgba(255, 107, 53, 0.3);
        border-color: rgba(255, 107, 53, 0.5);
        transform: rotate(90deg) scale(1.1);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    }


    .mobile-menu-footer {
        position: relative;
        padding: 20px;
        background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1;
        flex-shrink: 0;
        order: 3;
        margin-top: auto;
    }

    .mobile-menu-user {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .mobile-menu-user-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, 
            rgba(255, 107, 53, 0.3) 0%, 
            rgba(255, 215, 0, 0.2) 100%);
        border-radius: 14px;
        font-size: 28px;
        color: rgba(255, 255, 255, 0.9);
        box-shadow: 
            0 4px 12px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-user-info {
        flex: 1;
    }

    .mobile-menu-user-name {
        font-size: 16px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 4px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .mobile-menu-user-status {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Menu overlay backdrop */
    .nav-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9998;
    }

    .nav-menu.active ~ .nav-menu-overlay,
    .nav-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-actions {
        gap: 8px;
    }

    .btn-login,
    .btn-register,
    .btn-logout {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .btn-logout span {
        display: none;
    }
    
    .btn-logout i {
        margin: 0;
    }

    .hero {
        min-height: 500px;
        padding: 40px 0;
    }

    .hero-content {
        text-align: left;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.1;
    }

    .hero-title-line1,
    .hero-title-line2 {
        font-size: 0.9em;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 16px;
    }

    .icon-bar {
        padding: 0;
        margin-top: -6.5rem;
    }

    .icon-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .icon-item {
        padding: 8px 10px;
    }

    .icon-circle {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .icon-title {
        font-size: 10px;
    }

    .hot-promotion {
        padding: 1.5rem 0;
    }

    .hot-promotion-image {
        max-height: 350px;
        min-height: 150px;
    }

    .hot-game-section {
        padding: 1.5rem 0;
    }

    .hot-game-image {
        max-height: 350px;
        min-height: 150px;
    }

    .hot-game-overlay {
        width: 40%;
        padding: 0;
        justify-content: flex-start;
    }

    .hot-game-title {
        font-size: 2.5rem;
    }

    .hot-game-subtitle {
        font-size: 1.6rem;
    }

    .hot-game-description {
        display: none;
    }

    .hot-game-image {
        max-height: 350px;
        min-height: 150px;
    }

    .hot-promotion-overlay {
        width: 40%;
        padding: 0;
        margin: 0;
        justify-content: flex-start;
    }

    .hot-promotion-title1 {
        font-size: 2rem;
    }

    .hot-promotion-title2 {
        font-size: 1.6rem;
    }

    .hot-promotion-description1,
    .hot-promotion-description2 {
        display: none;
    }

    .hot-promotion-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .hot-promotion .container {
        padding: 1.5rem;
    }

    .featured-games {
        padding: 1rem 0;
    }

    .featured-game-slide {
        padding: 10px 5px;
    }

    .featured-game-card {
        border-radius: 10px;
    }

    .featured-game-bonus-percent {
        font-size: 28px;
    }

    .featured-game-bonus-label {
        font-size: 10px;
    }

    .featured-game-arrow {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .featured-game-image-container {
        min-height: 160px;
    }

    .featured-game-title {
        font-size: 20px;
    }

    .featured-game-top {
        padding: 28px 8px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .profile-image {
        height: 200px;
    }

    .profile-name {
        font-size: 24px;
    }

    .profile-top-overlay {
        font-size: 12px;
        padding: 6px 12px;
        width: 70%;
    }

    .profile-info {
        padding: 2px 0 4px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-left h3 {
        font-size: 20px;
    }

    .footer-left p {
        font-size: 14px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-column h4 {
        font-size: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-desc-line1,.hero-desc-line2{
        font-size: 0.8rem !important;
    }
    .container {
        padding: 0 10px;
    }

    .logo-image {
        height: 50px;
    }

    .header-actions {
        gap: 5px;
    }

    .btn-login,
    .btn-register,
    .btn-logout {
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .btn-logout span {
        display: none;
    }
    
    .btn-logout i {
        margin: 0;
        font-size: 12px;
    }

    .hero {
        min-height: 250px;
        padding: 0px 0;
    }

    .hero-content {
        padding: 0 4px;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

  span.hero-title-line1,span.hero-title-line2 {
        font-size: 0.8em;
        margin-bottom: 5px;
    }

    .hero-description {
        font-size: 12px;
        margin-bottom: 12px;
        line-height: 1.5;
        max-width: 100%;
    }

    .btn-primary {
        padding: 8px 20px;
        font-size: 12px;
    }

    .hot-promotion {
        padding: 1rem 0;
    }

    .hot-promotion .container {
        padding: 0.4rem;
    }

    .hot-promotion-image {
        max-height: 250px;
    }

    .hot-game-section {
        padding: 0;
    }

    .hot-game-image {
        max-height: 250px;
        min-height: 150px;
    }

    .hot-game-overlay {
        width: 50%;
        padding: 0;
        flex-direction: row;
        justify-content: flex-start;
    }

    .hot-game-content {
        max-width: 100%;
        text-align: left;
    }

    .hot-game-title {
        font-size: 1.8rem;
    }

    .hot-game-subtitle {
        font-size: 1.3rem;
    }

    .hot-game-description {
        display: none;
    }

    .hot-game-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .hot-game-slider-wrapper {
        padding: 2px;
    }

    .hot-game-image {
        max-height: 250px;
        min-height: 150px;
    }

    .hot-game-overlay {
        width: 50%;
        padding: 0 0 0 4px;
        flex-direction: row;
        justify-content: flex-start;
    }

    .hot-game-content {
        max-width: 100%;
        text-align: left;
    }

    .hot-game-title {
        font-size: 1.2rem;
    }

    .hot-game-subtitle {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .hot-game-description {
        display: none;
    }

    .hot-game-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .hot-promotion-overlay {
        width: 50%;
        padding: 0;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
        justify-content: flex-start;
    }

    .hot-promotion-content {
        max-width: 100%;
        text-align: center;
    }

    .hot-promotion-title1 {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .hot-promotion-title2 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .hot-promotion-description1,
    .hot-promotion-description2 {
        display: none;
    }

    .hot-promotion-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .icon-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .icon-item {
        padding: 8px;
        gap: 4px;
        border-radius: 8px;
    }

    .icon-circle {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .featured-game-slide {
        padding: 8px 3px;
    }

    .featured-game-card {
        border-radius: 10px;
    }

    .featured-game-bonus-percent {
        font-size: 24px;
    }

    .featured-game-bonus-label {
        font-size: 9px;
    }

    .featured-game-arrow {
        width: 22px;
        height: 22px;
        font-size: 10px;
        border-radius: 0 0 0 6px;
    }

    .featured-game-image-container {
        min-height: 140px;
        padding: 0.5rem 0.4rem 1.2rem;
    }

    .featured-game-title {
        font-size: 16px;
    }

    .featured-game-top {
        padding: 20px 6px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .profile-image {
        height: 180px;
    }

    .profile-name {
        font-size: 20px;
    }

    .profile-top-overlay {
        font-size: 11px;
        padding: 5px 10px;
        width: 80%;
    }

    .profile-info {
        padding: 2px 0 4px;
    }

    .footer-left h3 {
        font-size: 18px;
    }

    .footer-column h4 {
        font-size: 14px;
    }

    .footer-column ul li {
        font-size: 13px;
    }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 0;
    margin: 0;
}

.mobile-nav-backdrop {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: transparent;
    pointer-events: none;
}

.mobile-nav-container {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 16px 12px 20px;
    margin: 0 16px 12px;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 28px 28px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 -8px 32px rgba(0, 0, 0, 0.4),
        0 -2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.mobile-nav-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 107, 53, 0.6) 20%,
        rgba(255, 215, 0, 0.8) 50%,
        rgba(255, 107, 53, 0.6) 80%,
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-100%);
    }
    50% {
        opacity: 1;
        transform: translateX(100%);
    }
}

.mobile-nav-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 10px 16px;
    border-radius: 20px;
    min-width: 64px;
    flex: 1;
    z-index: 1;
    overflow: visible;
}

.mobile-nav-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 56px;
    height: 56px;
    background: radial-gradient(circle, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(255, 215, 0, 0.1) 50%,
        transparent 70%);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
    opacity: 0;
}

.mobile-nav-item:active::before {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 1;
}

.mobile-nav-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-nav-item.active .mobile-nav-icon-wrapper {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.2) 0%, 
        rgba(255, 215, 0, 0.15) 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 4px 12px rgba(255, 107, 53, 0.3),
        0 2px 6px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mobile-nav-icon {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.mobile-nav-item .mobile-nav-icon {
    color: rgba(255, 255, 255, 0.5);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.mobile-nav-item.active .mobile-nav-icon {
    color: #ffffff;
    transform: scale(1.15);
    filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.6)) 
            drop-shadow(0 0 12px rgba(255, 215, 0, 0.5));
    animation: iconBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes iconBounce {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3) rotate(5deg);
    }
    100% {
        transform: scale(1.15);
    }
}

.mobile-nav-item:hover .mobile-nav-icon {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px) scale(1.1);
}

.mobile-nav-item.active .mobile-nav-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: radial-gradient(circle, 
        rgba(255, 107, 53, 0.3) 0%, 
        rgba(255, 215, 0, 0.2) 40%,
        transparent 70%);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
    z-index: -1;
}

@keyframes ripple {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.6);
    }
}

.mobile-nav-badge {
    position: absolute;
    top: -2px;
    right: 8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: linear-gradient(135deg, #ff1744 0%, #ff5252 100%);
    color: white;
    font-size: 10px;
    font-weight: 800;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(20, 20, 20, 0.9);
    box-shadow: 
        0 2px 8px rgba(255, 23, 68, 0.6), 
        0 0 12px rgba(255, 23, 68, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: badgeBounce 2s ease-in-out infinite;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

@keyframes badgeBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.05);
    }
}

.mobile-nav-badge:empty {
    display: none;
}

.mobile-nav-badge.promotion-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ff8c00 100%);
    color: #1a1a1a;
    border-color: rgba(20, 20, 20, 0.9);
    box-shadow: 
        0 2px 8px rgba(255, 215, 0, 0.6), 
        0 0 12px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    font-size: 9px;
    padding: 0 6px;
}

.mobile-nav-badge.chat-badge {
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    box-shadow: 
        0 2px 8px rgba(0, 230, 118, 0.6), 
        0 0 12px rgba(0, 230, 118, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.mobile-nav-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-top: 0;
    text-transform: uppercase;
    opacity: 0.7;
}

.mobile-nav-item.active .mobile-nav-label {
    color: #ffffff;
    font-weight: 700;
    opacity: 1;
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.5);
}

.mobile-nav-item:hover .mobile-nav-label {
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.mobile-nav-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(255, 107, 53, 0.8) 0%, 
        rgba(255, 215, 0, 1) 50%, 
        rgba(255, 107, 53, 0.8) 100%);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 -2px 8px rgba(255, 107, 53, 0.6), 
        0 -1px 4px rgba(255, 215, 0, 0.5);
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
}

.mobile-nav-item.active .mobile-nav-indicator {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
    animation: indicatorPulse 2s ease-in-out infinite;
}

@keyframes indicatorPulse {
    0%, 100% {
        box-shadow: 
            0 -2px 8px rgba(255, 107, 53, 0.6), 
            0 -1px 4px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 
            0 -3px 12px rgba(255, 107, 53, 0.8), 
            0 -2px 6px rgba(255, 215, 0, 0.7);
    }
}

.mobile-nav-item:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Show mobile nav only on mobile */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .mobile-nav-container {
        padding: 14px 8px 18px;
        margin: 0 8px 10px;
        border-radius: 24px 24px 0 0;
    }

    .mobile-nav-item {
        padding: 8px 4px;
        min-width: 56px;
    }

    .mobile-nav-icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .mobile-nav-icon {
        width: 22px;
        height: 22px;
        font-size: 20px;
    }

    .mobile-nav-label {
        font-size: 9px;
    }

    .mobile-nav-badge {
        min-width: 16px;
        height: 16px;
        font-size: 9px;
        top: -2px;
        right: 6px;
        padding: 0 4px;
    }

    .mobile-nav-indicator {
        width: 28px;
        height: 2.5px;
        bottom: 6px;
    }

    body {
        padding-bottom: 7rem;
    }
}

/* Auth Modal Styles */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-modal.active {
    display: flex;
    opacity: 1;
}

.auth-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(20, 10, 5, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    animation: backdropFadeIn 0.4s ease-out;
}

@keyframes backdropFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(20px) saturate(180%);
    }
}

.auth-modal-container {
    position: relative;
    width: 100%;
    max-width: 540px;
    max-height: 92vh;
    background: linear-gradient(145deg, 
        rgba(30, 20, 15, 0.95) 0%, 
        rgba(40, 25, 18, 0.98) 50%,
        rgba(25, 15, 10, 0.95) 100%);
    border-radius: 32px;
    border: 1px solid rgba(255, 107, 53, 0.15);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 107, 53, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.08),
        inset 0 -1px 2px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.85) translateY(30px) rotateX(5deg);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10001;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

.auth-modal.active .auth-modal-container {
    transform: scale(1) translateY(0) rotateX(0deg);
    animation: modalSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
    0% {
        transform: scale(0.7) translateY(50px) rotateX(10deg);
        opacity: 0;
    }
    60% {
        transform: scale(1.05) translateY(-5px) rotateX(-2deg);
    }
    100% {
        transform: scale(1) translateY(0) rotateX(0deg);
        opacity: 1;
    }
}

.auth-modal-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 107, 53, 0.6) 20%,
        rgba(255, 215, 0, 0.9) 50%,
        rgba(255, 107, 53, 0.6) 80%,
        transparent 100%);
    animation: topShimmer 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes topShimmer {
    0%, 100% {
        opacity: 0.4;
        transform: translateX(-100%);
    }
    50% {
        opacity: 1;
        transform: translateX(100%);
    }
}

.auth-modal-container::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 107, 53, 0.08) 0%, 
        rgba(255, 215, 0, 0.05) 30%,
        transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.auth-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.auth-modal-close:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25) 0%, rgba(255, 215, 0, 0.2) 100%);
    border-color: rgba(255, 107, 53, 0.5);
    color: #fff;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.auth-modal-close:active {
    transform: rotate(90deg) scale(0.95);
}

.auth-form-container {
    padding: 48px 40px;
    overflow-y: auto;
    max-height: 92vh;
    position: relative;
    z-index: 2;
}

.auth-form-container.hidden {
    display: none;
}

.auth-form-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    animation: headerFadeIn 0.6s ease-out 0.2s both;
}

@keyframes headerFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-form-logo {
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.auth-form-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoGlow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes logoGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.auth-form-logo img {
    height: 56px;
    width: auto;
    filter: drop-shadow(0 6px 16px rgba(255, 107, 53, 0.4));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.auth-form-logo:hover img {
    transform: scale(1.05);
}

.auth-form-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 215, 0, 0.9) 30%,
        rgba(255, 183, 77, 0.95) 60%,
        rgba(255, 255, 255, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    letter-spacing: -0.5px;
    position: relative;
}

.auth-form-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 107, 53, 0.8) 50%,
        transparent 100%);
    border-radius: 2px;
    animation: titleUnderline 2s ease-in-out infinite;
}

@keyframes titleUnderline {
    0%, 100% {
        width: 60px;
        opacity: 0.6;
    }
    50% {
        width: 100px;
        opacity: 1;
    }
}

.auth-form-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    margin-top: 12px;
    letter-spacing: 0.3px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: formFadeIn 0.6s ease-out 0.3s both;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
}

.form-label i {
    color: var(--primary-orange);
    font-size: 15px;
    width: 18px;
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.5));
    transition: all 0.3s ease;
}

.form-group:focus-within .form-label i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.8));
}

.optional-text {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    text-transform: none;
    letter-spacing: 0;
    font-style: italic;
}

.form-input {
    width: 100%;
    padding: 16px 18px;
    background: rgba(20, 15, 10, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
    transition: opacity 0.3s ease;
}

.form-input:focus {
    outline: none;
    background: rgba(25, 18, 12, 0.8);
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 
        0 0 0 4px rgba(255, 107, 53, 0.15),
        0 8px 24px rgba(255, 107, 53, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.form-input:focus::placeholder {
    opacity: 0.5;
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: rgba(244, 67, 54, 0.6);
    box-shadow: 
        0 0 0 4px rgba(244, 67, 54, 0.15),
        0 8px 24px rgba(244, 67, 54, 0.2);
}

.form-group:focus-within::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.4) 0%, 
        rgba(255, 215, 0, 0.3) 50%,
        rgba(255, 107, 53, 0.4) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: inputBorderGlow 2s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes inputBorderGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper .form-input {
    padding-right: 50px;
}

.password-toggle {
    position: absolute;
    right: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    width: 36px;
    height: 36px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.password-toggle:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.4);
    color: var(--primary-orange);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.password-toggle:active {
    transform: scale(0.95) rotate(-5deg);
}

.captcha-group {
    margin-top: 5px;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 14px;
}

.captcha-display {
    min-width: 110px;
    height: 56px;
    background: linear-gradient(135deg, 
        rgba(30, 20, 15, 0.9) 0%, 
        rgba(40, 25, 18, 0.95) 100%);
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-orange);
    letter-spacing: 10px;
    font-family: 'Courier New', monospace;
    box-shadow: 
        0 6px 20px rgba(255, 107, 53, 0.3),
        inset 0 2px 6px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 107, 53, 0.2);
    user-select: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.captcha-display::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 107, 53, 0.15) 50%, 
        transparent 70%);
    animation: captchaShine 3s infinite;
}

.captcha-display::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 107, 53, 0.1) 2px, rgba(255, 107, 53, 0.1) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 107, 53, 0.1) 2px, rgba(255, 107, 53, 0.1) 4px);
    pointer-events: none;
}

@keyframes captchaShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.captcha-refresh {
    width: 56px;
    height: 56px;
    background: rgba(255, 107, 53, 0.12);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    color: var(--primary-orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.captcha-refresh:hover {
    background: rgba(255, 107, 53, 0.25);
    border-color: rgba(255, 107, 53, 0.6);
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.captcha-refresh:active {
    transform: rotate(180deg) scale(0.95);
}

.captcha-input {
    flex: 1;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 6px;
    font-family: 'Courier New', monospace;
    padding: 16px 12px;
}

.password-strength {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.strength-bar {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.strength-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%);
    animation: strengthShimmer 2s infinite;
    opacity: 0;
}

.strength-bar.active::after {
    opacity: 1;
}

@keyframes strengthShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.strength-bar.active {
    background: linear-gradient(90deg, #4caf50 0%, #66bb6a 100%);
    box-shadow: 0 0 12px rgba(76, 175, 80, 0.5);
    transform: scaleY(1.2);
}

.strength-bar.active.medium {
    background: linear-gradient(90deg, #ff9800 0%, #ffb74d 100%);
    box-shadow: 0 0 12px rgba(255, 152, 0, 0.5);
}

.strength-bar.active.weak {
    background: linear-gradient(90deg, #f44336 0%, #e57373 100%);
    box-shadow: 0 0 12px rgba(244, 67, 54, 0.5);
}

.strength-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-left: auto;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkbox-group {
    margin-top: 5px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    position: relative;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.checkbox-label:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 107, 53, 0.2);
}

.checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-top: 2px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.checkbox-input:checked ~ .checkbox-custom {
    background: linear-gradient(135deg, var(--primary-orange) 0%, rgba(255, 215, 0, 0.8) 100%);
    border-color: var(--primary-orange);
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.5);
}

.checkbox-input:checked ~ .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    animation: checkmarkDraw 0.3s ease-out;
}

@keyframes checkmarkDraw {
    0% {
        height: 0;
        width: 0;
        opacity: 0;
    }
    50% {
        height: 6px;
        width: 3px;
        opacity: 1;
    }
    100% {
        height: 11px;
        width: 6px;
        opacity: 1;
    }
}

.checkbox-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    flex: 1;
    transition: color 0.3s ease;
}

.checkbox-input:checked ~ .checkbox-text {
    color: rgba(255, 255, 255, 0.95);
}

.terms-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px 4px;
    border-radius: 4px;
}

.terms-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), #ffd700);
    transition: width 0.3s ease;
}

.terms-link:hover {
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.terms-link:hover::after {
    width: 100%;
}

.form-error {
    font-size: 12px;
    color: #ff5252;
    min-height: 18px;
    display: none;
    margin-top: 6px;
    padding: 6px 12px;
    background: rgba(244, 67, 54, 0.1);
    border-left: 3px solid #f44336;
    border-radius: 6px;
    animation: errorSlideIn 0.3s ease-out;
    font-weight: 500;
}

@keyframes errorSlideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-group.error .form-error {
    display: block;
}

.form-group.error .form-input {
    border-color: rgba(244, 67, 54, 0.6);
    box-shadow: 
        0 0 0 4px rgba(244, 67, 54, 0.15),
        0 8px 24px rgba(244, 67, 54, 0.2);
    animation: inputShake 0.4s ease-out;
}

@keyframes inputShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

.btn-auth-primary {
    width: 100%;
    padding: 18px 28px;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 1) 0%, 
        rgba(255, 152, 0, 0.95) 50%,
        rgba(255, 107, 53, 1) 100%);
    background-size: 200% 100%;
    border: none;
    border-radius: 16px;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 8px 24px rgba(255, 107, 53, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 4px 12px rgba(0, 0, 0, 0.3);
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-auth-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%);
    transition: left 0.6s ease;
}

.btn-auth-primary:hover::before {
    left: 100%;
}

.btn-auth-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(255, 107, 53, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset,
        0 6px 16px rgba(0, 0, 0, 0.4);
    background-position: 100% 0;
}

.btn-auth-primary:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 
        0 6px 20px rgba(255, 107, 53, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn-auth-primary i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-auth-primary:hover i {
    transform: translateX(4px);
}

.auth-form-footer {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-link-secondary {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
}

.auth-link-secondary::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    transition: width 0.3s ease;
}

.auth-link-secondary:hover {
    color: var(--primary-orange);
}

.auth-link-secondary:hover::before {
    width: 100%;
}

.auth-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    flex-wrap: wrap;
    justify-content: center;
}

.auth-link-primary {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 8px;
    border-radius: 6px;
}

.auth-link-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.auth-link-primary:hover {
    color: #ffd700;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

.auth-link-primary:hover::before {
    opacity: 1;
}

/* Auth Modal Mobile Responsive */
@media (max-width: 768px) {
    .auth-modal-container {
        max-width: 100%;
        border-radius: 28px 28px 0 0;
        max-height: 96vh;
        margin-top: auto;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }

    .auth-modal-container::before {
        border-radius: 28px 28px 0 0;
    }

    .auth-form-container {
        padding: 36px 24px;
    }

    .auth-form-header {
        margin-bottom: 32px;
    }

    .auth-form-title {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .auth-form {
        gap: 20px;
    }

    .auth-form-title {
        font-size: 24px;
    }

    .auth-form-subtitle {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .auth-form-container {
        padding: 25px 15px;
    }

    .auth-form-title {
        font-size: 22px;
    }

    .captcha-container {
        flex-wrap: wrap;
    }

    .captcha-display {
        width: 100%;
    }

    .captcha-refresh {
        width: 100%;
    }
}

/* New Member Dashboard Styles */
.member-dashboard-new {
    padding: 0;
    background: var(--darker-bg);
    min-height: calc(100vh - 70px);
}

.dashboard-container {
    display: flex;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 70px);
    width: 100%;
    box-sizing: border-box;
}

/* Sidebar Styles */
.dashboard-sidebar {
    width: 280px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    overflow-y: auto;
    flex-shrink: 0;
}

.sidebar-profile-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
}

.sidebar-avatar-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
}

.sidebar-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 107, 53, 0.5);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.sidebar-avatar-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4caf50;
    border: 3px solid #1a1a1a;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.6);
}

.sidebar-avatar-edit {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c5a 100%);
    border: 3px solid #1a1a1a;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.sidebar-avatar-edit:hover {
    transform: scale(1.1) rotate(15deg);
}

.sidebar-profile-info {
    color: white;
}

.sidebar-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.sidebar-id {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.sidebar-badges {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.sidebar-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.sidebar-badge.vip {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
}

.sidebar-badge.verified {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
}

/* Sidebar Navigation */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

.sidebar-nav-item.active {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
    color: #ffcf73;
    border-left: 3px solid var(--primary-orange);
}

.sidebar-nav-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.sidebar-nav-text {
    font-size: 15px;
    font-weight: 500;
}

/* Sidebar Quick Actions */
.sidebar-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.sidebar-action-btn.deposit {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

.sidebar-action-btn.withdraw {
    background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
}

.sidebar-action-btn.transfer {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c5a 100%);
}

.sidebar-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Main Content Area */
.dashboard-main {
    flex: 1;
    padding: 40px 0 40px 40px;
    overflow-y: auto;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.dashboard-section {
    display: none;
}

.dashboard-section.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.section-header {
    margin-bottom: 30px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 0%, #ffcf73 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

/* Stats Grid New */
.stats-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card-new {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card-new:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.stat-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.stat-icon-new {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
}

.balance-card .stat-icon-new {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

.bonus-card .stat-icon-new {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c5a 100%);
}

.turnover-card .stat-icon-new {
    background: linear-gradient(135deg, #2196f3 0%, #42a5f5 100%);
}

.winnings-card .stat-icon-new {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.stat-label-new {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value-new {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.stat-change {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.stat-change.positive {
    color: #4caf50;
}

/* Activity Section */
.activity-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
}

.activity-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.activity-item.deposit .activity-icon {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

.activity-item.win .activity-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.activity-item.bonus .activity-icon {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c5a 100%);
}

.activity-item.withdraw .activity-icon {
    background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
}

.activity-content {
    flex: 1;
}

.activity-text {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
}

.activity-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile Responsive Styles for New Dashboard */
@media (max-width: 768px) {
    .member-dashboard-new {
        min-height: auto;
    }

    .dashboard-container {
        flex-direction: column;
        max-width: 100%;
        gap: 0;
        position: relative;
    }

    .dashboard-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        height: auto;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 15px;
        overflow-y: visible;
        order: 1;
        background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    }

    .sidebar-profile-card {
        padding: 20px 15px;
    }

    .sidebar-avatar-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }

    .sidebar-avatar {
        width: 80px;
        height: 80px;
    }

    .sidebar-name {
        font-size: 16px;
    }

    .sidebar-id {
        font-size: 11px;
    }

    .sidebar-nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .sidebar-nav::-webkit-scrollbar {
        display: none;
    }

    .sidebar-nav-item {
        flex-shrink: 0;
        min-width: 110px;
        padding: 12px 15px;
        white-space: nowrap;
    }

    .sidebar-nav-item.active::before {
        display: none;
    }

    .sidebar-nav-item.active {
        border-left: none;
        border-bottom: 3px solid var(--primary-orange);
    }

    .sidebar-nav-icon {
        width: 20px;
        height: 20px;
        font-size: 16px;
    }

    .sidebar-nav-text {
        font-size: 13px;
    }

    .sidebar-quick-actions {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 15px;
        gap: 8px;
    }

    .sidebar-action-btn {
        flex: 1;
        min-width: calc(33.333% - 6px);
        padding: 12px 10px;
        font-size: 12px;
        flex-direction: column;
        gap: 6px;
    }

    .sidebar-action-btn i {
        font-size: 16px;
    }

    .dashboard-main {
        padding: 20px 15px;
        order: 2;
        width: 100%;
        overflow-x: hidden;
        min-width: 0;
    }

    /* Ensure tables don't break layout */
    .data-table-container {
        width: 100%;
        margin: 0 -15px;
        padding: 0 15px;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .stats-grid-new {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 25px;
    }

    .stat-card-new {
        padding: 20px;
    }

    .stat-card-header {
        margin-bottom: 12px;
    }

    .stat-icon-new {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .stat-value-new {
        font-size: 24px;
    }

    .stat-label-new {
        font-size: 12px;
    }

    .activity-section {
        padding: 20px;
    }

    .activity-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .activity-item {
        padding: 12px;
        gap: 12px;
    }

    .activity-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .activity-text {
        font-size: 13px;
    }

    .activity-time {
        font-size: 11px;
    }

    /* Content filters */
    .content-filters {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px !important;
    }

    .filter-select,
    .filter-btn {
        width: 100%;
    }

    /* Tables */
    .data-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .data-table {
        min-width: 600px;
        width: 100%;
    }

    .data-table th,
    .data-table td {
        padding: 10px 8px;
        font-size: 12px;
    }

    /* Summary cards */
    .bet-reports-summary,
    .statements-summary {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .summary-card,
    .statement-summary-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .summary-icon,
    .statement-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto;
    }

    /* Pagination */
    .pagination {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .page-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    /* Settings form */
    .settings-container {
        padding: 0;
    }

    .settings-section {
        margin-bottom: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-input {
        padding: 14px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .dashboard-sidebar {
        padding: 15px 10px;
    }

    .sidebar-profile-card {
        padding: 15px 10px;
    }

    .sidebar-avatar-wrapper {
        width: 70px;
        height: 70px;
    }

    .sidebar-avatar {
        width: 70px;
        height: 70px;
    }

    .sidebar-name {
        font-size: 15px;
    }

    .sidebar-nav-item {
        min-width: 100px;
        padding: 10px 12px;
    }

    .sidebar-action-btn {
        min-width: calc(50% - 4px);
        padding: 10px 8px;
        font-size: 11px;
    }

    .dashboard-main {
        padding: 15px 10px;
    }

    .section-title {
        font-size: 20px;
    }

    .stat-card-new {
        padding: 15px;
    }

    .stat-value-new {
        font-size: 20px;
    }

    .bet-reports-summary,
    .statements-summary {
        grid-template-columns: 1fr;
    }
}

/* Old Member Dashboard Styles (keeping for compatibility) */
.member-dashboard {
    padding: 40px 0;
    background: var(--darker-bg);
    min-height: calc(100vh - 70px);
}

.member-profile-header {
    margin-bottom: 40px;
}

.member-dashboard .profile-avatar-section {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    margin-bottom: 30px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    position: relative;
}

.member-dashboard .profile-avatar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(255, 107, 53, 0.08) 50%,
        rgba(255, 107, 53, 0.05) 100%);
    border-radius: 24px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: 
        0 8px 32px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.member-dashboard .profile-avatar-section > * {
    position: relative;
    z-index: 1;
}

.member-dashboard .avatar-container {
    position: relative;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-dashboard .avatar-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-dashboard .avatar-wrapper::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        var(--primary-orange) 0%, 
        #ff8c5a 50%,
        #ffb347 100%);
    z-index: 0;
    animation: rotate 3s linear infinite;
    opacity: 0.6;
}

.member-dashboard .avatar-wrapper::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.3) 0%, 
        rgba(255, 140, 90, 0.2) 50%,
        rgba(255, 179, 71, 0.3) 100%);
    z-index: 1;
    animation: rotate 4s linear infinite reverse;
}

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

.member-dashboard .member-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--darker-bg);
    box-shadow: 
        0 10px 40px rgba(255, 107, 53, 0.5),
        0 0 0 4px rgba(255, 107, 53, 0.2),
        inset 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.member-dashboard .member-avatar:hover {
    transform: scale(1.05);
}

.member-dashboard .avatar-status {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 4px solid var(--darker-bg);
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    box-shadow: 
        0 4px 12px rgba(76, 175, 80, 0.6),
        0 0 0 2px rgba(76, 175, 80, 0.3);
    z-index: 3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 
            0 4px 12px rgba(76, 175, 80, 0.6),
            0 0 0 2px rgba(76, 175, 80, 0.3);
    }
    50% {
        box-shadow: 
            0 4px 20px rgba(76, 175, 80, 0.8),
            0 0 0 4px rgba(76, 175, 80, 0.5);
    }
}

.member-dashboard .avatar-status.online {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

.member-dashboard .avatar-status.online::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.3);
    animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.member-dashboard .avatar-edit-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c5a 100%);
    border: 4px solid var(--darker-bg);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 6px 20px rgba(255, 107, 53, 0.5),
        0 0 0 2px rgba(255, 107, 53, 0.2);
    z-index: 3;
    font-size: 16px;
}

.member-dashboard .avatar-edit-btn:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.7),
        0 0 0 4px rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, #ff8c5a 0%, var(--primary-orange) 100%);
}

.member-dashboard .profile-info {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 40px;
    gap: 16px;
    background: none;
}

.member-dashboard .member-name {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #ffe8d0 25%,
        #ffd4a3 50%,
        #ffe8d0 75%,
        #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
    position: relative;
}

.member-dashboard .member-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, transparent 100%);
    border-radius: 2px;
}

.member-dashboard .member-id {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.member-dashboard .member-id::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.8);
}

.member-dashboard .member-id span {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    letter-spacing: 1px;
}

.member-dashboard .member-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.member-dashboard .badge {
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.member-dashboard .badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.member-dashboard .badge:hover::before {
    left: 100%;
}

.member-dashboard .badge.vip {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ff8c00 100%);
    color: #000;
    border: 1px solid rgba(255, 215, 0, 0.5);
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.member-dashboard .badge.vip:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(255, 215, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.member-dashboard .badge.verified {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.25) 0%, rgba(76, 175, 80, 0.15) 100%);
    color: #66bb6a;
    border: 1.5px solid #4caf50;
    box-shadow: 
        0 4px 15px rgba(76, 175, 80, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.member-dashboard .badge.verified:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.35) 0%, rgba(76, 175, 80, 0.25) 100%);
    box-shadow: 
        0 6px 20px rgba(76, 175, 80, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.member-dashboard .badge i {
    font-size: 14px;
}

.quick-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.quick-actions-section {
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.03) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.quick-actions-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-actions-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c5a 100%);
    border-radius: 2px;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.quick-actions-section .action-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.quick-actions-section .action-btn:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.08) 100%);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.quick-actions-section .action-btn-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.quick-actions-section .deposit-btn .action-btn-icon {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

.quick-actions-section .withdraw-btn .action-btn-icon {
    background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
}

.quick-actions-section .transfer-btn .action-btn-icon {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c5a 100%);
}

.quick-actions-section .action-btn-content {
    flex: 1;
    min-width: 0;
    padding-right: 10px;
}

.quick-actions-section .action-btn-label {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.quick-actions-section .action-btn-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.quick-actions-section .action-btn-arrow {
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.quick-actions-section .action-btn:hover .action-btn-arrow {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    border-color: var(--primary-orange);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.stat-icon.balance {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

.stat-icon.bonus {
    background: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
}

.stat-icon.turnover {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c5a 100%);
}

.stat-icon.winnings {
    background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.dashboard-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    overflow-x: auto;
}

.tab-btn {
    padding: 15px 25px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--primary-orange);
}

.tab-btn.active {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
}

.tab-content {
    display: none;
}

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

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.content-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.content-filters {
    display: flex;
    gap: 10px;
    align-items: center;
}

.filter-select {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: rgb(26 26 26);
}

.filter-btn {
    padding: 10px 20px;
    background: var(--primary-orange);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #ff8c5a;
    transform: translateY(-2px);
}

.bet-reports-summary,
.statements-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.summary-card,
.statement-summary-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.summary-icon,
.statement-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.summary-icon.win,
.statement-icon.deposit {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

.summary-icon.loss,
.statement-icon.withdrawal {
    background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
}

.summary-icon.profit,
.statement-icon.bonus {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c5a 100%);
}

.summary-info,
.statement-info {
    flex: 1;
}

.summary-label,
.statement-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.summary-value,
.statement-value {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.summary-value.positive {
    color: #4caf50;
}

.data-table-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table thead {
    background: rgba(255, 107, 53, 0.1);
}

.data-table th {
    padding: 15px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.data-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.data-table tbody tr {
    transition: background 0.3s ease;
}

.data-table tbody tr:hover {
    background: rgba(255, 107, 53, 0.05);
}

.positive {
    color: #4caf50;
    font-weight: 600;
}

.negative {
    color: #f44336;
    font-weight: 600;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.status-badge.status-win {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.status-badge.status-loss {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid #f44336;
}

.status-badge.status-completed {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.status-badge.status-pending {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
    border: 1px solid #ff9800;
}

.type-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.type-badge.deposit {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.type-badge.withdrawal {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.type-badge.bonus {
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary-orange);
}

.type-badge.bet {
    background: rgba(156, 39, 176, 0.2);
    color: #9c27b0;
}

.action-btn {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 6px;
    color: var(--primary-orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary-orange);
    transform: scale(1.1);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.page-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.page-btn:hover:not(:disabled) {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 5px;
}

.page-number {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
}

.page-number:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary-orange);
}

.page-number.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
}

.turnover-charts {
    margin-bottom: 30px;
}

.chart-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.chart-legend {
    display: flex;
    gap: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}

#turnoverChartCanvas {
    width: 100%;
    height: 100%;
}

.turnover-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.breakdown-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
}

.breakdown-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.breakdown-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.breakdown-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breakdown-item-name {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.breakdown-item-amount {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.breakdown-item-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.breakdown-item-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange) 0%, #ff8c5a 100%);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.breakdown-item-footer {
    display: flex;
    justify-content: flex-end;
}

.breakdown-item-percentage {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.turnover-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.turnover-stat-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.turnover-stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c5a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.turnover-stat-content {
    flex: 1;
}

.turnover-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.turnover-stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.turnover-stat-date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 3px;
}

.settings-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.settings-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
}

.settings-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.settings-section-title i {
    color: var(--primary-orange);
}

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

.settings-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.settings-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.settings-form .form-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.settings-form .form-input {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.settings-form .form-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.08);
}

.btn-save {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c5a 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.settings-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.settings-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.settings-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-orange);
}

.settings-option-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.user-profile-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 5px 15px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.user-profile-menu:hover {
    background: rgba(255, 255, 255, 0.15);
}

.user-avatar-small {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-orange);
}

.user-avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

/* Member Dashboard Mobile Responsive */
@media (max-width: 768px) {
    .member-dashboard {
        padding: 20px 0;
    }

    .member-dashboard .profile-avatar-section {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0;
    }

    .member-dashboard .profile-avatar-section::before {
        padding: 25px;
    }

    .member-dashboard .avatar-container {
        justify-self: center;
        padding: 15px;
    }

    .member-dashboard .avatar-wrapper {
        width: 140px;
        height: 140px;
    }

    .member-dashboard .member-avatar {
        width: 140px;
        height: 140px;
    }

    .member-dashboard .profile-info {
        text-align: center;
        padding: 20px 25px;
        align-items: center;
    }

    .member-dashboard .member-name {
        font-size: 32px;
    }

    .member-dashboard .member-name::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .member-dashboard .member-badges {
        justify-content: center;
    }

    .quick-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .quick-actions-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tab-btn {
        padding: 12px 18px;
        font-size: 13px;
    }

    .content-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .content-filters {
        width: 100%;
        flex-wrap: wrap;
    }

    .filter-select,
    .filter-btn {
        flex: 1;
        min-width: 120px;
    }

    .bet-reports-summary,
    .statements-summary {
        grid-template-columns: 1fr;
    }

    .data-table-container {
        overflow-x: auto;
    }

    .data-table {
        min-width: 800px;
    }

    .data-table th,
    .data-table td {
        padding: 10px 8px;
        font-size: 12px;
    }

    .turnover-breakdown {
        grid-template-columns: 1fr;
    }

    .turnover-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .settings-form .form-row {
        grid-template-columns: 1fr;
    }

    .user-profile-menu {
        padding: 5px 10px;
    }

    .user-name {
        display: none;
    }
}

@media (max-width: 480px) {
    .member-dashboard .member-name {
        font-size: 28px;
    }

    .member-dashboard .avatar-wrapper {
        width: 120px;
        height: 120px;
    }

    .member-dashboard .member-avatar {
        width: 120px;
        height: 120px;
    }

    .member-dashboard .profile-info {
        padding: 15px 20px;
    }

    .quick-stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 15px;
    }

    .tab-btn {
        padding: 10px 15px;
        font-size: 12px;
    }

    .tab-btn span {
        display: none;
    }

    .content-title {
        font-size: 20px;
    }

    .turnover-stats-grid {
        grid-template-columns: 1fr;
    }

    .chart-container {
        height: 250px;
    }

    .settings-section {
        padding: 20px;
    }
}


/* Transaction Modals */
.transaction-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.transaction-modal.active {
    display: flex;
    opacity: 1;
}

.transaction-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.transaction-modal-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    max-height: 90vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 107, 53, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    z-index: 10001;
}

.transaction-modal.active .transaction-modal-container {
    transform: scale(1) translateY(0);
}

.transaction-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.transaction-modal-close:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: rotate(90deg);
}

.transaction-modal-header {
    text-align: center;
    padding: 40px 40px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.transaction-modal-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.transaction-modal-icon.deposit {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

.transaction-modal-icon.withdraw {
    background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
}

.transaction-modal-icon.transfer {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c5a 100%);
}

.transaction-modal-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.transaction-modal-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.transaction-form {
    padding: 30px 40px 40px;
    overflow-y: auto;
    max-height: calc(90vh - 200px);
}

.balance-display {
    padding: 15px 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-orange);
    text-align: center;
    margin-top: 8px;
}

.amount-hints {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.amount-hint-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-hint-btn:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.withdraw-info,
.transfer-preview {
    padding: 15px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.transfer-preview {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.transfer-preview-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.transfer-preview-item:last-child {
    border-bottom: none;
}

.transfer-preview-label {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.transfer-preview-value {
    color: #fff;
    font-weight: 600;
}

.btn-transaction-primary {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c5a 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-transaction-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.btn-transaction-primary:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .transaction-modal-container {
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 95vh;
        margin-top: auto;
    }

    .transaction-form {
        padding: 25px 20px 30px;
    }

    .transaction-modal-header {
        padding: 30px 20px 20px;
    }

}

@media (max-width: 480px) {
    .transaction-form {
        padding: 20px 15px 25px;
    }

    .transaction-modal-title {
        font-size: 22px;
    }
}

   .hero {
   position: relative;
   width: 100%;
   height: 40vh;          /* FIXED: shorter height */
   overflow: hidden;
   font-family: Arial, sans-serif;
   /* filter: brightness(2) contrast(1) saturate(1); */
   }
   /* ===== SLIDES WRAPPER ===== */
   .hero-background-slideshow {
   position: relative;
   width: 100%;
   height: 100%;
   }
   /* ===== SLIDE ===== */
   .hero-slide {
   position: absolute;
   inset: 0;
   background-size: cover;
   background-position: center;
   opacity: 0;
   transition: opacity 1s ease-in-out;
   display: flex;
   align-items: center;
   }
   .hero-slide.active {
   opacity: 1;
   z-index: 2;
   }
   @media (max-width: 768px) {
   .hero {
   height: 20vh;
   /* min-height: 360px; */
   }
   .hero-inner {
   padding: 20px;
   }
   .hero-text{
   margin-left: 4%;
   }
   }
   .hero-desc-line1,.hero-desc-line2{
         font-size: 1.3rem;
    }
    /* Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Popup box */
.popup-box {
  background: #fff;
  width: 320px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Close button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* Buttons */
.popup-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.btn {
  flex: 1;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.deposit {
  background: #28a745;
}

.withdraw {
  background: #dc3545;
}
#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: 40px;
}

@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 .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 .show{
  display: block!important;
}

#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;
  z-index: 999999;
}

#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: 40px;
  position: relative;
}
@media (max-width: 767px) {
  .user-wallet-actions .btn-theme{
    padding: 9px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
  }
  #header .user-wallet-actions .header-wallet {
    font-size: 0.8rem;
    padding: 4px 6px !important;
  }
  .promo_box table{
    margin-left: 0!important;
  }
  .promo_box table th, .promo_box table td{
    font-size: 0.7rem!important;
    padding: 0.5rem!important;
  }
  .promo_box table td p, .promo_box table td strong{
    font-size: 0.7rem!important;
  }
}
@media (max-width: 480px) {
    .promo_box table{
        margin-left: 0!important;
      }
      .promo_box table th, .promo_box table td{
        font-size: 0.7rem!important;
        padding: 0.5rem!important;
      }
      .promo_box table td p, .promo_box table td strong{
        font-size: 0.7rem!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: -56px;
  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: 6px 10px;
  flex: 2;
  height: 100%;
}

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

#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: 11px 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(0deg, rgba(205, 111, 39, 1) 10%, rgba(245, 171, 76, 1) 90%);
    border: 1px solid #ffd98a;
    white-space: nowrap;
    box-shadow: 0 0 5px 1px #ffd98a;
}
.fa-bars:before, .fa-navicon:before{
    font-size: 24px;
}
#copy-btn{
    width: 100px;
    color: #fff;
}
.sidebar-item.active, .px-4,.center-submit,.bg-red-600{
    background: linear-gradient(0deg, rgba(205, 111, 39, 1) 10%, rgba(245, 171, 76, 1) 90%) !important;
    box-shadow: none !important;
}
#amt,#datepicker1,#datepicker2{
    border: 0.5px solid;
}
#ui-datepicker-div{
        background: #ff8c5a;
            padding: 20px;
}
   .center-data-btn button{
        margin: 0.4rem 0;
    }
    @media (max-width: 992px) {
        .main-layout{display: block}
    }
    @media (max-width: 600px) {
        .main, .slots-list {
            width: 100% !important;
        }
        .slots-list a {
            width: 45% !important;
        }

    }
    .search_in {
    height: 23px !important;
    float: left;
    background: #000;
    width: 195px;
    padding: 15px 3px;
    border-radius: 5px;
}
.err_div{
    color: red;
}
.icon-item {
  cursor: pointer;
  transition: all 0.3s ease;
}

.icon-item.active .icon-circle {
  transform: scale(1.15);
 
}

.icon-item.active .icon-title {
 
  font-weight: 600;
}
.fa-solid, .fas{
    font-size: 20px;
}
 input{
        border: 1px solid #4f4f4f !important;
}
.capch-text{
        background: #f5ab4c !important;
            top: 25px !important;
}
