/*
 * Gaming UI/UX Premium Upgrade
 * Override file - loaded after style.css
 * Provides: gaming palette, glow effects, smooth animations,
 *           refined cards, buttons, forms, nav, sidebar, alerts, mobile responsive
 */

/* ==========================================================================
   1. ROOT - GAMING COLOR SYSTEM
   ========================================================================== */
:root {
    /* Refined gaming palette */
    --gaming-primary: #7c3aed;
    --gaming-primary-rgb: 124, 58, 237;
    --gaming-accent: #06b6d4;
    --gaming-accent-rgb: 6, 182, 212;
    --gaming-energy: #f97316;
    --gaming-energy-rgb: 249, 115, 22;
    --gaming-neon: #22d3ee;
    --gaming-success: #10b981;
    --gaming-danger: #ef4444;
    --gaming-warning: #f59e0b;
    --gaming-info: #3b82f6;

    /* Background layers */
    --gaming-bg-deep: #0a0e1a;
    --gaming-bg-base: #0f1629;
    --gaming-bg-surface: #1a1f3a;
    --gaming-bg-elevated: #242850;
    --gaming-bg-card: rgba(26, 31, 58, 0.85);

    /* Borders */
    --gaming-border: rgba(124, 58, 237, 0.15);
    --gaming-border-hover: rgba(124, 58, 237, 0.4);
    --gaming-border-glow: rgba(6, 182, 212, 0.3);

    /* Glow / Shadow */
    --gaming-glow-sm: 0 0 10px rgba(124, 58, 237, 0.15);
    --gaming-glow-md: 0 0 20px rgba(124, 58, 237, 0.2), 0 0 40px rgba(6, 182, 212, 0.05);
    --gaming-glow-lg: 0 0 30px rgba(124, 58, 237, 0.25), 0 0 60px rgba(6, 182, 212, 0.08);
    --gaming-glow-accent: 0 0 15px rgba(6, 182, 212, 0.3);
    --gaming-glow-energy: 0 0 15px rgba(249, 115, 22, 0.3);
    --gaming-card-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(124, 58, 237, 0.08);
    --gaming-card-hover-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(124, 58, 237, 0.2), 0 0 20px rgba(124, 58, 237, 0.1);

    /* Transitions */
    --gaming-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gaming-transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --gaming-transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Gradients */
    --gaming-gradient-primary: linear-gradient(135deg, #7c3aed, #06b6d4);
    --gaming-gradient-energy: linear-gradient(135deg, #f97316, #fbbf24);
    --gaming-gradient-surface: linear-gradient(180deg, rgba(124, 58, 237, 0.05) 0%, transparent 100%);
    --gaming-gradient-card: linear-gradient(145deg, rgba(124, 58, 237, 0.08), rgba(6, 182, 212, 0.04));
}
.footer-social li {
    line-height: 1;
}

/* ==========================================================================
   2. GLOBAL BASE OVERRIDES
   ========================================================================== */
html {
    background-color: var(--gaming-bg-deep);
}

body {
    background-color: var(--gaming-bg-deep);
    color: #c8ccd8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth page transitions */
section {
    position: relative;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    color: #f1f5f9;
    letter-spacing: -0.01em;
}

h1 {
    font-weight: 800;
}

h2 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-header h2,
.section-header h3 {
    position: relative;
}

/* Gradient text utility */
.text-gradient {
    background-image: var(--gaming-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--gaming-accent);
}

/* ==========================================================================
   4. SCROLLBAR
   ========================================================================== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--gaming-bg-deep);
}

::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background: linear-gradient(180deg, var(--gaming-primary), var(--gaming-accent));
    visibility: visible;
    opacity: 0.6;
}

::-webkit-scrollbar-thumb:hover {
    opacity: 1;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: var(--gaming-bg-deep);
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gaming-primary), var(--gaming-accent));
    border-radius: 4px;
    visibility: visible;
    opacity: 0.7;
}

body::-webkit-scrollbar-thumb:hover {
    opacity: 1;
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
/* Primary Button */
.cmn-btn {
    background: linear-gradient(135deg, var(--gaming-primary), #9333ea);
    border: none;
    border-radius: 12px;
    padding: 11px 24px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: var(--gaming-transition);
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.3);
}

.cmn-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.cmn-btn:hover {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.45);
}

.cmn-btn:hover::before {
    left: 100%;
}

.cmn-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

/* Secondary Button */
.cmn-btn2 {
    background: transparent;
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 12px;
    color: var(--gaming-accent);
    padding: 10px 24px;
    font-weight: 500;
    transition: var(--gaming-transition);
}

.cmn-btn2:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: var(--gaming-primary);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--gaming-glow-sm);
}

/* Kew Button (arrow button) */
.kew-btn .kew-text {
    background: linear-gradient(135deg, var(--gaming-primary), #9333ea);
    border-radius: 12px 0 0 12px;
    padding: 0 20px;
    height: 44px;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: var(--gaming-transition);
}

.kew-btn .kew-arrow {
    background: linear-gradient(135deg, #9333ea, var(--gaming-accent));
    border-radius: 0 12px 12px 0;
    width: 44px;
    height: 44px;
    margin-left: -1px;
    transition: var(--gaming-transition);
}

.kew-btn:hover .kew-text {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.kew-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Social Buttons */
.social-btn {
    background: var(--gaming-bg-surface);
    border: 1px solid var(--gaming-border);
    border-radius: 12px;
    padding: 11px 20px;
    color: #e2e8f0;
    transition: var(--gaming-transition);
}

.social-btn:hover {
    background: rgba(124, 58, 237, 0.08);
    border-color: var(--gaming-border-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--gaming-glow-sm);
}

/* Login Button */
a.nav-link.login-btn {
    background: linear-gradient(135deg, var(--gaming-primary), var(--gaming-accent));
    color: #fff !important;
    border-radius: 10px;
    padding: 8px 20px !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: var(--gaming-transition);
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.25);
}

a.nav-link.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    filter: brightness(1.1);
}

/* Scroll up button */
.scroll-up i {
    background: linear-gradient(135deg, var(--gaming-primary), var(--gaming-accent));
    border-radius: 10px;
    width: 42px;
    height: 42px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    transition: var(--gaming-transition);
}

.scroll-up i:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.5);
}

/* ==========================================================================
   6. NAVIGATION
   ========================================================================== */
.cusotm-nav,
.cusotm-nav.sticky-top {
    background: rgba(15, 22, 41, 0.85) !important;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    transition: var(--gaming-transition);
}

.desktop-view {
    background: transparent !important;
}

.desktop-view-wrapper .nav-link {
    color: #c8ccd8;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--gaming-transition-fast);
    position: relative;
}

.desktop-view-wrapper .nav-link:hover {
    color: #fff;
    background: rgba(124, 58, 237, 0.08);
}

.desktop-view-wrapper .nav-link.active {
    color: var(--gaming-accent) !important;
    background: rgba(6, 182, 212, 0.08);
}

.desktop-view-wrapper .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gaming-accent);
    border-radius: 1px;
}

/* Profile box in nav */
.profile-box .profile {
    border: 2px solid rgba(124, 58, 237, 0.3);
    background: var(--gaming-bg-surface);
    padding: 2px;
    transition: var(--gaming-transition);
}

.profile-box:hover .profile {
    border-color: var(--gaming-primary);
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.3);
}

.profile-box .user-dropdown {
    background: var(--gaming-bg-surface);
    border: 1px solid var(--gaming-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    padding: 8px;
    width: 220px;
}

.profile-box .user-dropdown li a {
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    color: #c8ccd8;
    transition: var(--gaming-transition-fast);
}

.profile-box .user-dropdown li a:hover,
.profile-box .user-dropdown li a:focus {
    background: rgba(124, 58, 237, 0.12);
    color: #fff;
}

.profile-box .user-dropdown li a i {
    color: var(--gaming-accent);
    font-size: 14px;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(6, 182, 212, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile navbar */
.mobile-navbar-bar,
.mobile-navbar-bar-auth {
    background: rgba(15, 22, 41, 0.92) !important;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.mobile-menu-toggle,
.mobile-menu-toggle-auth,
.mobile-search-toggle,
.mobile-search-toggle-auth {
    color: #c8ccd8;
    transition: var(--gaming-transition-fast);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle-auth:hover,
.mobile-search-toggle:hover,
.mobile-search-toggle-auth:hover {
    background: rgba(124, 58, 237, 0.1);
    color: #fff;
}

/* Mobile search box */
.mobile-search-box,
.mobile-search-box-auth {
    background: rgba(15, 22, 41, 0.95);
    border-bottom: 1px solid var(--gaming-border);
}

.mobile-search-input-wrapper .form-control {
    background: var(--gaming-bg-surface) !important;
    border: 1px solid var(--gaming-border) !important;
    border-radius: 10px !important;
    color: #f1f5f9 !important;
}

.mobile-search-input-wrapper .form-control:focus {
    border-color: var(--gaming-primary) !important;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12) !important;
}

/* Search box desktop */
.search-box2 .form-control {
    background: var(--gaming-bg-surface) !important;
    border: 1px solid var(--gaming-border);
    color: #e2e8f0;
    border-radius: 10px;
    height: 40px;
    transition: var(--gaming-transition-fast);
}

.search-box2 .form-control:focus {
    border-color: var(--gaming-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
    background: var(--gaming-bg-elevated) !important;
}

.search-box2 .search-result {
    background: var(--gaming-bg-surface);
    border: 1px solid var(--gaming-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    margin-top: 8px;
}

.search-box2 .search-result .search-item:hover {
    background: rgba(124, 58, 237, 0.12);
}

/* ==========================================================================
   7. SIDEBAR
   ========================================================================== */
/* Updated: 20260223140757 - Border removed */
.gsn-sidebar {
    background: rgba(15, 22, 41, 0.97) !important;
    border-right: none !important;
    box-shadow: 4px 0 32px rgba(0, 0, 0, 0.4);
}

.gsn-sidebar-overlay.open {
    background: rgba(10, 14, 26, 0.7);
}

.gsn-sidebar-profile {
    background: var(--gaming-gradient-card);
    border-radius: 12px;
    margin: 8px;
    padding: 4px;
}

.gsn-sidebar-profile-link {
    border-radius: 10px;
    transition: var(--gaming-transition-fast);
    padding: 8px;
}

.gsn-sidebar-profile-link:hover {
    background: rgba(124, 58, 237, 0.08);
}

.gsn-sidebar-avatar img,
.gsn-sidebar-avatar-placeholder {
    border: 2px solid rgba(124, 58, 237, 0.3);
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.15);
}

.gsn-sidebar-username {
    color: #f1f5f9 !important;
    font-weight: 600;
}

.gsn-sidebar-balance {
    color: var(--gaming-accent) !important;
}

.gsn-sidebar-divider {
    border-color: rgba(124, 58, 237, 0.1) !important;
    margin: 8px 16px;
}

.gsn-sidebar-link {
    border-radius: 10px;
    margin: 2px 8px;
    color: #94a3b8;
    transition: var(--gaming-transition-fast);
    position: relative;
    overflow: hidden;
}

.gsn-sidebar-link:hover {
    background: rgba(124, 58, 237, 0.08);
    color: #e2e8f0;
}

.gsn-sidebar-link.active {
    background: rgba(124, 58, 237, 0.12) !important;
    color: #fff !important;
}

.gsn-sidebar-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--gaming-gradient-primary);
    border-radius: 0 3px 3px 0;
}

.gsn-sidebar-link.active-orange {
    background: rgba(249, 115, 22, 0.1) !important;
}
.gsn-sidebar-link.active-orange::before {
    background: linear-gradient(180deg, #f97316, #fbbf24) !important;
}

.gsn-sidebar-link.active-purple::before {
    background: linear-gradient(180deg, #7c3aed, #a855f7) !important;
}

.gsn-sidebar-link.active-green {
    background: rgba(16, 185, 129, 0.1) !important;
}
.gsn-sidebar-link.active-green::before {
    background: linear-gradient(180deg, #10b981, #34d399) !important;
}

.gsn-sidebar-link.active-yellow {
    background: rgba(245, 158, 11, 0.1) !important;
}
.gsn-sidebar-link.active-yellow::before {
    background: linear-gradient(180deg, #f59e0b, #fbbf24) !important;
}

.gsn-sidebar-link.active-cyan {
    background: rgba(6, 182, 212, 0.1) !important;
}
.gsn-sidebar-link.active-cyan::before {
    background: linear-gradient(180deg, #06b6d4, #22d3ee) !important;
}

.gsn-sidebar-link.active-pink {
    background: rgba(236, 72, 153, 0.1) !important;
}
.gsn-sidebar-link.active-pink::before {
    background: linear-gradient(180deg, #ec4899, #f472b6) !important;
}

.gsn-sidebar-icon {
    color: var(--gaming-accent);
    background: rgba(6, 182, 212, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gsn-sidebar-footer {
    border-top: 1px solid rgba(124, 58, 237, 0.08);
    padding-top: 6px;
    margin-top: 6px;
}

.gsn-sidebar-copyright {
    color: #64748b !important;
    font-size: 12px;
    line-height: 1.2;
    margin: 2px 0;
}

/* Sidebar toggle button */
.gsn-sidebar-toggle-btn {
    color: #c8ccd8;
    background: rgba(124, 58, 237, 0.08);
    border-radius: 8px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--gaming-transition-fast);
    border: 1px solid transparent;
}

.gsn-sidebar-toggle-btn:hover {
    background: rgba(124, 58, 237, 0.15);
    color: #fff;
    border-color: var(--gaming-border-hover);
}

/* ==========================================================================
   8. CARDS & PRODUCT DISPLAYS
   ========================================================================== */
/* Category box (top-up grid items) */
.category-box {
    background: var(--gaming-bg-card);
    border: 1px solid var(--gaming-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--gaming-transition);
    position: relative;
}

.category-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gaming-gradient-card);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
    border-radius: 16px;
}

.category-box:hover {
    transform: translateY(-4px);
    border-color: var(--gaming-border-hover);
    box-shadow: var(--gaming-card-hover-shadow);
}

.category-box:hover::before {
    opacity: 1;
}

.category-box .img-box {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.category-box .img-box img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-box:hover .img-box img {
    transform: scale(1.05);
}

.category-box .text-box {
    position: relative;
    z-index: 1;
}

.category-box .text-box .title {
    font-weight: 600;
    font-size: 14px;
    color: #e2e8f0;
    transition: color 0.3s;
}

.category-box:hover .text-box .title {
    color: #fff;
}

/* Product box (card grid items) */
.product-box {
    background: var(--gaming-bg-card);
    border: 1px solid var(--gaming-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--gaming-transition);
    display: block;
}

.product-box:hover {
    transform: translateY(-4px);
    border-color: var(--gaming-border-hover);
    box-shadow: var(--gaming-card-hover-shadow);
    color: inherit;
}

.product-box .img-box {
    overflow: hidden;
}

.product-box .img-box img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-box:hover .img-box img {
    transform: scale(1.05);
}

.product-box .text-box {
    padding: 16px;
}

.product-box .text-box .title {
    color: #f1f5f9;
    font-weight: 600;
}

.product-box .text-box .promo-price {
    color: var(--gaming-accent);
    font-weight: 700;
}

.product-box .text-box .discount {
    color: #94a3b8;
}

/* Product Tabs Section */
.products-tabs-section {
    background: var(--gaming-bg-deep) !important;
}

.tab-buttons-wrapper {
    scrollbar-width: thin;
    scrollbar-color: rgba(124, 58, 237, 0.3) transparent;
}

.tab-btn {
    background: var(--gaming-bg-surface);
    border: 1px solid var(--gaming-border);
    color: #94a3b8;
    border-radius: 10px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--gaming-transition-fast);
    cursor: pointer;
}

.tab-btn:hover {
    background: rgba(124, 58, 237, 0.08);
    border-color: var(--gaming-border-hover);
    color: #e2e8f0;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--gaming-primary), #9333ea);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 2px 12px rgba(124, 58, 237, 0.3);
}

/* Product card in tabs */
.product-card {
    transition: var(--gaming-transition);
}

.product-card .card-link {
    display: block;
    background: var(--gaming-bg-card);
    border: 1px solid var(--gaming-border);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--gaming-transition);
}

.product-card .card-link:hover {
    transform: translateY(-4px);
    border-color: var(--gaming-border-hover);
    box-shadow: var(--gaming-card-hover-shadow);
}

.product-card .card-image {
    overflow: hidden;
}

.product-card .card-image img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card .card-link:hover .card-image img {
    transform: scale(1.05);
}

.product-card .card-title {
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 600;
}

.product-card .card-publisher {
    color: #64748b;
    font-size: 12px;
}

/* Generic .card override */
.card {
    background: var(--gaming-bg-card);
    border: 1px solid var(--gaming-border);
    border-radius: 16px;
    box-shadow: var(--gaming-card-shadow);
}

.card .card-header {
    background: rgba(124, 58, 237, 0.06);
    border-bottom: 1px solid var(--gaming-border);
    border-radius: 16px 16px 0 0;
}

.card .card-body {
    padding: 24px;
}

/* Featured topup cards */
.featured-topup-card {
    border: 1px solid var(--gaming-border) !important;
    background: var(--gaming-bg-card) !important;
}

.featured-topup-card:hover {
    border-color: rgba(124, 58, 237, 0.3) !important;
    box-shadow: var(--gaming-card-hover-shadow) !important;
}

/* ==========================================================================
   9. FORMS & INPUTS
   ========================================================================== */
.form-control,
.form-select {
    background-color: var(--gaming-bg-surface);
    border: 1px solid var(--gaming-border);
    border-radius: 10px;
    color: #e2e8f0;
    height: 46px;
    padding: 10px 16px;
    transition: var(--gaming-transition-fast);
    font-size: 14px;
}

.form-control::placeholder,
.form-select::placeholder {
    color: #64748b;
}

.form-control:focus,
.form-select:focus {
    background-color: var(--gaming-bg-elevated);
    border-color: var(--gaming-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
    color: #f1f5f9;
}

textarea.form-control {
    border-radius: 12px;
    min-height: 100px;
}

.form-label {
    color: #c8ccd8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}

.form-check-input {
    background-color: var(--gaming-bg-surface);
    border-color: var(--gaming-border);
    border-radius: 4px;
}

.form-check-input:checked {
    background-color: var(--gaming-primary);
    border-color: var(--gaming-primary);
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.3);
}

.form-check-input:focus {
    border-color: var(--gaming-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

/* Select2 overrides */
.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
    background: var(--gaming-bg-surface);
    border: 1px solid var(--gaming-border);
    border-radius: 10px;
    height: 46px;
    transition: var(--gaming-transition-fast);
}

.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--gaming-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.select2-container .select2-dropdown {
    background: var(--gaming-bg-surface);
    border: 1px solid var(--gaming-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    margin-top: 4px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: rgba(124, 58, 237, 0.15);
    color: #fff;
}

.select2-container--default .select2-results__option--selected {
    background: rgba(124, 58, 237, 0.2);
    color: #fff;
}

/* Nice select */
.nice-select {
    background-color: var(--gaming-bg-surface);
    border-color: var(--gaming-border);
    border-radius: 10px;
    color: #e2e8f0;
}

.nice-select .list {
    background-color: var(--gaming-bg-surface);
    border: 1px solid var(--gaming-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nice-select .option:hover,
.nice-select .option.focus {
    background-color: rgba(124, 58, 237, 0.1);
}

.nice-select .option.selected {
    border-left: 2px solid var(--gaming-primary);
}

/* Input group */
.input-group-text {
    background-color: rgba(124, 58, 237, 0.08);
    border: 1px solid var(--gaming-border);
    color: var(--gaming-accent);
}

/* ==========================================================================
   10. ALERTS & NOTIFICATIONS
   ========================================================================== */
.alert {
    border-radius: 12px;
    border-left-width: 4px;
    padding: 14px 18px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    border-left-color: var(--gaming-success);
    color: #6ee7b7;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    border-left-color: var(--gaming-danger);
    color: #fca5a5;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    border-left-color: var(--gaming-warning);
    color: #fcd34d;
}

.alert-success .title,
.alert-success .description {
    color: #a7f3d0;
}

.alert-danger .title,
.alert-danger .description {
    color: #fecaca;
}

.alert-warning .title,
.alert-warning .description {
    color: #fde68a;
}

.alert-message {
    background-color: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    color: #fcd34d;
}

.alert-message i {
    color: var(--gaming-warning);
}

/* ==========================================================================
   11. MODALS
   ========================================================================== */
.modal {
}

.modal-content {
    background: var(--gaming-bg-surface);
    border: 1px solid var(--gaming-border);
    border-radius: 16px;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5), var(--gaming-glow-sm);
}

.modal-header {
    border-bottom: 1px solid var(--gaming-border);
    padding: 16px 20px;
}

.modal-header .modal-title {
    color: #f1f5f9;
    font-weight: 600;
}

.modal-footer {
    border-top: 1px solid var(--gaming-border);
}

.cmn-btn-close {
    background: var(--gaming-bg-elevated);
    border: 1px solid var(--gaming-border);
    border-radius: 8px;
    color: #94a3b8;
    transition: var(--gaming-transition-fast);
}

.cmn-btn-close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
    border-color: rgba(239, 68, 68, 0.3);
}

/* ==========================================================================
   12. TABLES
   ========================================================================== */
.cmn-table {
    border-radius: 14px;
    overflow: hidden;
    background: var(--gaming-bg-card);
    border: 1px solid var(--gaming-border);
}

.cmn-table table thead tr th {
    background-color: rgba(124, 58, 237, 0.06);
    color: #c8ccd8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 14px 16px;
    border-bottom: 1px solid var(--gaming-border);
}

.cmn-table tbody td {
    padding: 14px 16px;
    color: #c8ccd8;
    border-bottom: 1px solid rgba(124, 58, 237, 0.05);
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.footer-section {
    background: var(--gaming-bg-base) !important;
    border-top: 2px solid rgba(124, 58, 237, 0.1) !important;
}

.footer-widget .widget-title {
    color: #f1f5f9;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gaming-gradient-primary);
    border-radius: 1px;
}
.footer-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}
.footer-widget ul li a {
    color: #94a3b8;
    transition: var(--gaming-transition-fast);
    font-size: 14px;
}

.footer-widget ul li a:hover {
    color: var(--gaming-accent);
    padding-left: 4px;
}

.footer-widget .contact-item {
    color: #94a3b8;
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.6;
}

.footer-widget .contact-item i {
    color: var(--gaming-accent);
    margin-right: 8px;
    width: 20px;
}

.footer-social li a {
    transition: var(--gaming-transition) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.footer-social {
    display: flex !important;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: flex-start;
}
.footer-social li a {
    width: 42px;
    height: 42px;
}

@media (max-width: 575px) {
    .footer-social {
        gap: 10px;
    }

    .footer-social li a {
        width: 36px;
        height: 36px;
    }

    .footer-social li a svg {
        width: 18px;
        height: 18px;
    }
}


.footer-social li a:hover {
    transform: translateY(-3px) !important;
}

/* Copyright */
.copyright-section {
    background: rgba(10, 14, 26, 0.9) !important;
    border-top: 1px solid rgba(124, 58, 237, 0.08) !important;
}

/* ==========================================================================
   14. HERO SECTION
   ========================================================================== */
.hero-section {
    background: var(--gaming-bg-deep) !important;
}

.custom-hero-slider {
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--gaming-border);
}

.slider-btn {
    background: rgba(15, 22, 41, 0.8) !important;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 10px !important;
    color: #fff;
    transition: var(--gaming-transition-fast);
}

.slider-btn:hover {
    background: rgba(124, 58, 237, 0.3) !important;
    border-color: var(--gaming-primary);
}

/* ==========================================================================
   15. WHY CHOOSE US
   ========================================================================== */
.why-choose-us-section .cmn-list .item .icon-box {
    background: rgba(124, 58, 237, 0.1);
    color: var(--gaming-accent);
    border: 1px solid var(--gaming-border);
    border-radius: 12px;
    transition: var(--gaming-transition);
}

.why-choose-us-section .cmn-list .item:hover .icon-box {
    background: rgba(124, 58, 237, 0.15);
    box-shadow: var(--gaming-glow-sm);
}

/* ==========================================================================
   16. ACCORDION / FAQ
   ========================================================================== */
.accordion-item {
    background: var(--gaming-bg-card);
    border: 1px solid var(--gaming-border) !important;
    border-radius: 12px !important;
    margin: 8px 0;
}

.accordion-button {
    background: transparent;
    color: #e2e8f0;
    border-radius: 12px !important;
    font-weight: 600;
    transition: var(--gaming-transition-fast);
}

.accordion-button:not(.collapsed) {
    background: rgba(124, 58, 237, 0.06);
    color: var(--gaming-accent);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

/* ==========================================================================
   17. BADGES & TAGS
   ========================================================================== */
.badge {
    font-weight: 600;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
    letter-spacing: 0.02em;
}

.badge.text-bg-success {
    background: rgba(16, 185, 129, 0.15) !important;
    color: #6ee7b7 !important;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge.text-bg-danger {
    background: rgba(239, 68, 68, 0.15) !important;
    color: #fca5a5 !important;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge.text-bg-info {
    background: rgba(59, 130, 246, 0.15) !important;
    color: #93c5fd !important;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* ==========================================================================
   18. LOGIN / REGISTER
   ========================================================================== */
.login-register-section {
    background: var(--gaming-bg-deep) !important;
}

.login-register-form {
    background: var(--gaming-bg-surface) !important;
    border: 1px solid var(--gaming-border);
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), var(--gaming-glow-sm);
    padding: 40px;
}

.login-register-form:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--gaming-glow-md);
    border-color: var(--gaming-border-hover);
}

.login-register-form .section-header h3 {
    color: #f1f5f9;
}

.login-register-form .form-control {
    background-color: var(--gaming-bg-deep) !important;
    border: 1px solid var(--gaming-border);
    border-radius: 10px;
    color: #f1f5f9;
}

.login-register-form .form-control:focus {
    background-color: var(--gaming-bg-deep) !important;
    border-color: var(--gaming-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.login-register-form .cmn-btn {
    background: linear-gradient(135deg, var(--gaming-primary), #9333ea) !important;
    border-radius: 12px;
    height: 48px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
}

.login-register-form .cmn-btn:hover {
    box-shadow: 0 6px 24px rgba(124, 58, 237, 0.5) !important;
    transform: translateY(-2px);
}

.login-register-form .social-btn {
    background: var(--gaming-bg-deep);
    border: 1px solid var(--gaming-border);
    border-radius: 10px;
}

.login-register-form .social-btn:hover {
    border-color: var(--gaming-border-hover);
    background: rgba(124, 58, 237, 0.06);
}

hr.divider {
    border-top-color: var(--gaming-border);
}

hr.divider:after {
    background: var(--gaming-bg-surface);
    color: #64748b;
}

/* ==========================================================================
   19. DROPDOWN MENUS
   ========================================================================== */
.dropdown-menu {
    background: var(--gaming-bg-surface);
    border: 1px solid var(--gaming-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    padding: 8px;
}

.dropdown-menu .dropdown-item {
    color: #c8ccd8;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    transition: var(--gaming-transition-fast);
}

.dropdown-menu .dropdown-item:hover {
    background: rgba(124, 58, 237, 0.12);
    color: #fff;
}

/* ==========================================================================
   20. OWL CAROUSEL / SWIPER
   ========================================================================== */
.owl-nav .owl-prev,
.owl-nav .owl-next {
    background: linear-gradient(135deg, var(--gaming-primary), #9333ea) !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.3);
    transition: var(--gaming-transition);
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.5);
    transform: scale(1.05);
}

.owl-theme .owl-dots .owl-dot span {
    background: rgba(124, 58, 237, 0.3);
    transition: var(--gaming-transition-fast);
}

.owl-theme .owl-dots .owl-dot.active span {
    background: var(--gaming-primary);
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.4);
    width: 30px;
}

/* ==========================================================================
   21. BREADCRUMB
   ========================================================================== */
.breadcrumb {
    background-color: var(--gaming-bg-surface);
    border: 1px solid var(--gaming-border);
    border-radius: 10px;
    padding: 8px 20px;
}

.breadcrumb .breadcrumb-item.active {
    color: var(--gaming-accent);
}

/* ==========================================================================
   22. HR / DIVIDERS
   ========================================================================== */
hr {
    border-color: var(--gaming-border);
    opacity: 1;
}

.footer-hr {
    border-color: var(--gaming-border);
}

.cmn-hr {
    background-image: linear-gradient(90deg, transparent 0%, rgba(124, 58, 237, 0.3) 50%, transparent 100%);
}

/* ==========================================================================
   23. PAGINATION
   ========================================================================== */
.pagination .page-item .page-link {
    background: var(--gaming-bg-surface);
    border: 1px solid var(--gaming-border);
    color: #c8ccd8;
    border-radius: 8px;
    margin: 0 3px;
    transition: var(--gaming-transition-fast);
    font-weight: 500;
}

.pagination .page-item .page-link:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: var(--gaming-border-hover);
    color: #fff;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--gaming-primary), #9333ea);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.3);
}

/* ==========================================================================
   24. PAYMENT METHODS
   ========================================================================== */
.payment-container-list .form-check-label {
    background: var(--gaming-bg-card);
    border: 1px solid var(--gaming-border);
    border-radius: 12px;
    transition: var(--gaming-transition-fast);
}

.payment-container-list .form-check-label:hover {
    border-color: var(--gaming-border-hover);
}

.payment-container-list .form-check-input[type="radio"]:checked + .form-check-label {
    background: rgba(124, 58, 237, 0.08);
    border-color: var(--gaming-primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2);
}

/* ==========================================================================
   25. REVIEWS / STARS
   ========================================================================== */
.reviews div .active {
    color: #fbbf24;
}

.star-list li .active {
    color: #fbbf24;
}

/* ==========================================================================
   26. SECTION BACKGROUNDS
   ========================================================================== */
.trending-game-section,
.exclusive-offer-section,
.why-choose-us-section,
.featured-topups-section {
    background: var(--gaming-bg-deep) !important;
}

.section-subtitle {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid var(--gaming-border);
    color: var(--gaming-accent);
    border-radius: 8px;
}

/* ==========================================================================
   27. NOTIFICATION PANEL
   ========================================================================== */
.notification-panel .notification-dropdown {
    background: var(--gaming-bg-surface);
    border: 1px solid var(--gaming-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.notification-panel .notification-dropdown li a:hover {
    background: rgba(124, 58, 237, 0.08);
}

.notification-panel .notification-dropdown li a i {
    background: linear-gradient(135deg, var(--gaming-primary), #9333ea);
    border-radius: 8px;
}

.notification-panel .notification-dropdown .clear-all {
    background: var(--gaming-bg-surface);
    border-top: 1px solid var(--gaming-border);
}

.notification-panel .notification-dropdown .clear-all a {
    color: var(--gaming-accent);
}

.dropdown-toggle .count {
    background: linear-gradient(135deg, var(--gaming-energy), #fbbf24);
    border-radius: 6px;
    font-weight: 700;
}

/* ==========================================================================
   28. SHOPPING CART
   ========================================================================== */
.shopping-cart .cart-dropdown {
    background: var(--gaming-bg-surface);
    border: 1px solid var(--gaming-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.shopping-cart .menu-cart-top {
    border-bottom: 1px solid var(--gaming-border);
}

.shopping-cart .cart-dropdown .cart-bottom {
    background: var(--gaming-bg-surface);
    border-top: 1px solid var(--gaming-border);
}

.shopping-cart .cart-dropdown .cart-bottom .sub-total {
    background: rgba(124, 58, 237, 0.06);
}

/* ==========================================================================
   29. CHAT / MESSAGES
   ========================================================================== */
.message-container {
    background: var(--gaming-bg-card);
    border: 1px solid var(--gaming-border);
    border-radius: 16px;
}

.message-container .chat-box {
    background: var(--gaming-bg-surface);
    border-radius: 12px;
}

.message-container .chat-box .message-bubble .message-text-box .message-text {
    background: linear-gradient(135deg, var(--gaming-primary), #9333ea);
    border-radius: 12px;
    border-top-left-radius: 4px;
}

.message-container .chat-box .message-bubble-right .message-text-box .message-text {
    background: var(--gaming-bg-elevated);
    border-top-left-radius: 12px;
    border-top-right-radius: 4px;
}

/* ==========================================================================
   30. ANIMATIONS
   ========================================================================== */
/* Subtle glow pulse for featured items */
@keyframes gaming-glow-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
    }
    50% {
        box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
    }
}

/* Smooth fade in for page content */
@keyframes gaming-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card hover shimmer */
@keyframes gaming-shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Apply subtle entrance animations */
.category-box,
.product-box,
.product-card {
    animation: gaming-fade-in 0.4s ease-out both;
}

/* Stagger animation delays for grids */
.row > [class*="col-"]:nth-child(1) .category-box,
.row > [class*="col-"]:nth-child(1) .product-box {
    animation-delay: 0.05s;
}
.row > [class*="col-"]:nth-child(2) .category-box,
.row > [class*="col-"]:nth-child(2) .product-box {
    animation-delay: 0.1s;
}
.row > [class*="col-"]:nth-child(3) .category-box,
.row > [class*="col-"]:nth-child(3) .product-box {
    animation-delay: 0.15s;
}
.row > [class*="col-"]:nth-child(4) .category-box,
.row > [class*="col-"]:nth-child(4) .product-box {
    animation-delay: 0.2s;
}
.row > [class*="col-"]:nth-child(5) .category-box,
.row > [class*="col-"]:nth-child(5) .product-box {
    animation-delay: 0.25s;
}
.row > [class*="col-"]:nth-child(6) .category-box,
.row > [class*="col-"]:nth-child(6) .product-box {
    animation-delay: 0.3s;
}

/* ==========================================================================
   31. MOBILE RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
    .cmn-btn {
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 10px;
    }

    .cmn-btn2 {
        padding: 9px 18px;
        font-size: 14px;
        border-radius: 10px;
    }

    .kew-btn .kew-text {
        padding: 0 16px;
        height: 40px;
        font-size: 13px;
    }

    .kew-btn .kew-arrow {
        width: 40px;
        height: 40px;
    }

    .login-register-form {
        padding: 30px 24px;
        border-radius: 16px;
    }

    .modal-content {
        margin: 12px;
        border-radius: 14px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    .cmn-btn {
        padding: 10px 18px;
        font-size: 14px;
        width: auto;
        min-height: 42px;
    }

    .social-btn {
        padding: 10px 14px;
        font-size: 13px;
    }

    .card .card-body {
        padding: 16px;
    }

    /* Better mobile table styling */
    .table-responsive .table tbody tr {
        background: var(--gaming-bg-card);
        border: 1px solid var(--gaming-border);
        border-radius: 12px;
        margin-bottom: 8px;
    }

    .table-responsive .table tbody tr td {
        padding: 10px 16px;
    }

    .table-responsive .table tbody tr td::before {
        color: #94a3b8;
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    /* Compact payment method items on mobile */
    .payment-method-item {
        padding: 10px 14px !important;
        border-radius: 10px !important;
        margin-bottom: 8px !important;
    }

    .payment-method-item .d-flex.align-items-center.gap-3 {
        gap: 10px !important;
    }

    .payment-method-item img {
        width: 30px !important;
        height: 30px !important;
    }

    .payment-method-item h6 {
        font-size: 13px !important;
        margin-bottom: 0 !important;
    }

    .payment-method-item small {
        font-size: 11px !important;
    }

    .payment-method-item .payment-radio {
        width: 16px;
        height: 16px;
    }

    .payment-methods .payment-method-item .payment-selected-tick {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }

    /* Compact quantity section on mobile */
    #quantityStep {
        margin-bottom: 12px !important;
    }

    #quantityStep .step-number {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
    }

    #quantityStep .step-number i {
        font-size: 13px !important;
    }

    #quantityStep h5 {
        font-size: 14px !important;
    }

    #quantityStep > div:last-child {
        padding: 0 16px 12px 16px !important;
    }

    #qtyMinus,
    #qtyPlus {
        width: 36px !important;
        height: 36px !important;
        font-size: 16px !important;
        border-radius: 8px !important;
    }

    #qtyDisplay {
        font-size: 22px !important;
    }

    /* Compact all form-step sections on mobile */
    .form-step .step-number {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
    }

    .form-step h5 {
        font-size: 14px !important;
    }

    /* Compact form-step inner padding on mobile */
    .form-step > div:last-child {
        padding: 0 16px 14px 16px !important;
    }

    .form-step {
        margin-bottom: 10px !important;
    }

    /* Compact coupon section */
    #couponCode {
        padding: 10px !important;
        font-size: 13px !important;
    }

    #applyCoupon {
        padding: 10px 16px !important;
        font-size: 13px !important;
    }

    /* Compact order summary */
    .order-summary .d-flex {
        font-size: 13px !important;
    }

    .order-summary .d-flex:last-child span {
        font-size: 15px !important;
    }

    /* Compact Buy Now button */
    #buyNowBtn {
        padding: 12px !important;
        font-size: 15px !important;
        border-radius: 10px !important;
        margin-top: 12px !important;
    }

    .login-register-form {
        padding: 24px 16px;
    }

    section {
        padding: 40px 0;
    }

    .footer-widget .widget-title {
        font-size: 16px;
    }

    /* Prevent oversized buttons on small screens */
    .cmn-btn,
    .cmn-btn2 {
        max-width: 100%;
        padding: 10px 16px;
        font-size: 14px;
    }

    .kew-btn .kew-text {
        padding: 0 14px;
        height: 38px;
        font-size: 13px;
    }

    .kew-btn .kew-arrow {
        width: 38px;
        height: 38px;
    }

    .category-box .text-box .title {
        font-size: 13px;
    }

    .product-card .card-title {
        font-size: 12px;
    }
}

/* ==========================================================================
   32. EMPTY STATES
   ========================================================================== */
.products-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--gaming-bg-card);
    border: 1px dashed var(--gaming-border);
    border-radius: 16px;
    grid-column: 1 / -1;
}

.products-empty-state .empty-state-icon {
    font-size: 48px;
    color: #475569;
    margin-bottom: 16px;
}

.products-empty-state .empty-state-title {
    color: #94a3b8;
    font-size: 18px;
    margin-bottom: 8px;
}

.products-empty-state .empty-state-message {
    color: #64748b;
    font-size: 14px;
}

/* ==========================================================================
   33. MISC REFINEMENTS
   ========================================================================== */
/* Selection color */
::selection {
    color: #fff;
    background: rgba(124, 58, 237, 0.4);
}

::-moz-selection {
    color: #fff;
    background: rgba(124, 58, 237, 0.4);
}

/* Better image rendering */
img {
    image-rendering: -webkit-optimize-contrast;
}

/* Tooltip style */
[data-bs-toggle="tooltip"] {
    cursor: pointer;
}

/* Cookie consent / bottom elements */
.cookie-section {
    background: var(--gaming-bg-surface) !important;
    border: 1px solid var(--gaming-border);
    border-radius: 16px;
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.4);
}

/* Error pages */
.error-section {
    background: var(--gaming-bg-deep);
}

/* Blog cards */
.blog-box {
    background: var(--gaming-bg-card);
    border: 1px solid var(--gaming-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--gaming-transition);
}

.blog-box:hover {
    transform: translateY(-4px);
    border-color: var(--gaming-border-hover);
    box-shadow: var(--gaming-card-hover-shadow);
}

/* Leaderboard styling */
.cmn-box {
    background: var(--gaming-bg-card);
    border: 1px solid var(--gaming-border);
    border-radius: 16px;
    transition: var(--gaming-transition);
}

.cmn-box:hover {
    background: rgba(124, 58, 237, 0.04);
    border-color: var(--gaming-border-hover);
    box-shadow: var(--gaming-glow-sm);
}

/* Transfer list styling */
.transfer-list {
    background: var(--gaming-bg-card);
    border: 1px solid var(--gaming-border);
    border-radius: 12px;
}

/* Password toggle icon */
.password-icon {
    color: #64748b;
    transition: color 0.2s;
}

.password-icon:hover {
    color: var(--gaming-accent);
}

/* Support ticket improvements */
.support-section {
    background: var(--gaming-bg-deep);
}

/* Countdown timer */
.countdown-area {
    background: var(--gaming-bg-card);
    border: 1px solid var(--gaming-border);
    border-radius: 12px;
    padding: 12px;
}

/* AI Chatbot styling */
.ai-chatbot-widget {
    border: 1px solid var(--gaming-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    background: var(--gaming-bg-surface);
}
