@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Exo+2:wght@300;400;500;600;700;800&family=Rajdhani:wght@300;400;500;600;700&display=swap");

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================
   These optimizations improve animation performance
   by using GPU acceleration and reducing repaints
   ============================================ */

/* Force GPU acceleration for animated elements */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optimize transforms for better performance */
[class*="animation"],
[class*="animate"],
[style*="animation"] {
    backface-visibility: hidden;
    perspective: 1000px;
}

/* ============================================
   CASINO COLOR SCHEME - CSS VARIABLES
   ============================================
   
   HOW TO CHANGE COLOR SCHEME:
   Simply update the color values in the :root section below (starting at line 65).
   All colors throughout the site will automatically update!
   
   CURRENT THEME: Vibrant Purple/Pink Gaming Theme
   
   COLOR COMBINATION USED:
   - Primary Background: #11034e (Deep Purple)
   - Primary Accent: #e040fd (Bright Pink/Magenta)
   - Secondary Accent: #8c59fc (Vibrant Purple)
   
   TO CHANGE TO A DIFFERENT THEME:
   1. Update --casino-bg-primary (main background color)
   2. Update --casino-primary (main accent color)
   3. Update --casino-accent-1, --casino-accent-2, --casino-accent-3 (secondary accents)
   4. All other colors will adapt automatically through CSS variables!
   
   EXAMPLE - Change to Green Theme:
   --casino-bg-primary: #0a1f0a;
   --casino-primary: #4CAF50;
   --casino-accent-1: #66BB6A;
   --casino-accent-2: #81C784;
   
   EXAMPLE - Change to Orange Theme:
   --casino-bg-primary: #2a0a00;
   --casino-primary: #FF6B35;
   --casino-accent-1: #F7931E;
   --casino-accent-2: #FFA500;
   
   COLOR CATEGORIES:
   - Primary Background: Main dark backgrounds
   - Primary Accent: Main accent color (buttons, highlights)
   - Accent Colors: Secondary accent variations
   - Action Colors: Success, warning, notification colors
   - Text Colors: Primary, secondary, muted text
   - Border/Shadow Colors: Matching theme colors with opacity
   ============================================ */
:root {
    /* ============================================
       VIBRANT PURPLE/PINK COLOR SCHEME
       Colorful Gaming Theme - Easy to customize
       ============================================ */

    /* Primary Background Colors - Deep Purple Theme */
    --casino-bg-primary: #11034e;
    /* main unified background - deep purple */
    --casino-bg-secondary: #1a065e;
    /* slightly lighter variant */
    --casino-bg-dark: #0a0230;
    /* global body background - darker purple */
    --casino-bg-card: #1a065e;
    /* cards, panels */
    --casino-bg-overlay: #11034e;
    /* overlay color for all sections */

    /* Primary Accent Colors - Vibrant Pink & Purple */
    --casino-primary: #e040fd;
    /* main accent color - bright pink/magenta */
    --casino-primary-dark: #c020dd;
    /* darker shade */
    --casino-primary-light: #f060ff;
    /* lighter shade */
    --casino-primary-bright: #ff00ff;
    /* bright variant */

    /* Secondary Accent Colors */
    --casino-accent-1: #e040fd;
    /* bright pink/magenta */
    --casino-accent-1-dark: #c020dd;
    --casino-accent-1-light: #f060ff;

    --casino-accent-2: #8c59fc;
    /* purple */
    --casino-accent-2-dark: #6d3ae8;
    --casino-accent-2-light: #a678ff;

    --casino-accent-3: #b31da3;
    /* pink-purple blend */
    --casino-accent-3-dark: #8b157a;
    --casino-accent-3-light: #d625c8;

    /* Legacy Color Names (mapped to new scheme) - for compatibility */
    --casino-gold: #e040fd;
    --casino-gold-dark: #c020dd;
    --casino-gold-light: #f060ff;

    --casino-pink: #e040fd;
    --casino-pink-dark: #c020dd;
    --casino-pink-light: #f060ff;

    --casino-purple: #8c59fc;
    --casino-purple-dark: #6d3ae8;
    --casino-purple-light: #a678ff;
    --casino-purple-accent: #b31da3;

    /* Action Colors */
    --casino-green: #32CD32;
    --casino-green-bright: #00FF00;
    --casino-green-dark: #28C76F;

    /* Text Colors */
    --casino-text-primary: #ffffff;
    --casino-text-secondary: rgba(255, 255, 255, 0.9);
    --casino-text-muted: rgba(255, 255, 255, 0.7);

    /* Border Colors */
    --casino-border-light: rgba(224, 64, 253, 0.3);
    --casino-border-medium: rgba(224, 64, 253, 0.5);
    --casino-border-dark: rgba(224, 64, 253, 0.7);

    /* Shadow Colors */
    --casino-shadow-primary: rgba(224, 64, 253, 0.4);
    --casino-shadow-accent1: rgba(224, 64, 253, 0.35);
    --casino-shadow-accent2: rgba(140, 89, 252, 0.4);
    --casino-shadow-gold: rgba(224, 64, 253, 0.4);
    --casino-shadow-pink: rgba(224, 64, 253, 0.35);
    --casino-shadow-purple: rgba(140, 89, 252, 0.4);

    /* Notification Colors */
    --casino-notification: #FF6B6B;
    --casino-success: #32CD32;
    --casino-warning: #FFA726;

    /* Vibrant Gradients */
    --casino-gradient-primary: linear-gradient(135deg, #e040fd 0%, #c020dd 100%);
    --casino-gradient-accent1: linear-gradient(135deg, #e040fd 0%, #f060ff 100%);
    --casino-gradient-accent2: linear-gradient(135deg, #8c59fc 0%, #a678ff 100%);
    --casino-gradient-pink-purple: linear-gradient(135deg, #e040fd 0%, #8c59fc 100%);
    --casino-gradient-purple-pink: linear-gradient(135deg, #8c59fc 0%, #e040fd 100%);
    --casino-gradient-vibrant: linear-gradient(135deg, #e040fd 0%, #8c59fc 50%, #b31da3 100%);
    --casino-gradient-bg: linear-gradient(135deg, #11034e 0%, #1a065e 50%, #11034e 100%);

    /* Legacy Gradient Names (for compatibility) */
    --casino-gradient-gold: var(--casino-gradient-primary);
    --casino-gradient-pink: var(--casino-gradient-accent1);
    --casino-gradient-purple: var(--casino-gradient-accent2);

    /* ============================================
       GAMING FONT FAMILY - Easy to Change
       ============================================
       
       TO CHANGE FONTS:
       Simply update the font-family values below.
       All text throughout the site will automatically update!
       
       CURRENT GAMING FONTS:
       - Primary (Headings/Buttons): Orbitron (futuristic gaming)
       - Secondary (Body): Exo 2 (modern tech)
       - Accent (Numbers/Stats): Rajdhani (bold gaming)
       
       ALTERNATIVE GAMING FONTS:
       - Bungee (playful, bold)
       - Righteous (fun, bold)
       - Audiowide (tech/gaming)
       - Montserrat (modern, clean)
       ============================================ */

    /* Primary Font - Headings, Titles, Buttons (Gaming Style) */
    --casino-font-primary: 'Orbitron', 'Exo 2', sans-serif;

    /* Secondary Font - Body Text (Readable Gaming Style) */
    --casino-font-body: 'Exo 2', 'Rajdhani', sans-serif;

    /* Accent Font - Numbers, Stats, Badges (Bold Gaming) */
    --casino-font-accent: 'Rajdhani', 'Orbitron', sans-serif;
}

.theme-one {
    color: #FF3653 !important;
}

.theme-one-bg {
    background: #FF3653 !important;
}

.theme-two {
    color: #18D39E !important;
}

.theme-two-bg {
    background: #18D39E !important;
}

.theme-three {
    color: #0C93D2 !important;
}

.theme-three-bg {
    background: #0C93D2 !important;
}

.theme-four {
    color: #F6A200 !important;
}

.theme-four-bg {
    background: #F6A200 !important;
}

.fs-sm {
    font-size: 14px;
}

.gradient-one {
    background: linear-gradient(top, #fdb125 45%, #e07e1e 48%, #fcb100 85%) !important;
}

.gradient-two {
    background: linear-gradient(-40deg, #37ACE2 19%, #03CAAE 81%) !important;
}

.gradient-three {
    background: linear-gradient(-40deg, #b31da3 9%, #d63f87 50%, #f9606a 88%) !important;
}

.gradient-four {
    background: linear-gradient(-40deg, #7e2afc 39%, #903df7 70%, #a250f2 88%) !important;
}

/* Text Color */
.text--primary {
    color: #ff5201 !important;
}

.text--secondary {
    color: #78818A !important;
}

.text--base {
    color: var(--casino-gold) !important;
}

.text--danger {
    color: #EA5455 !important;
}

.text--warning {
    color: #FF9F43 !important;
}

.text--info {
    color: #1E9FF2 !important;
}

.text--success {
    color: #28C76F !important;
}

.text--dark {
    color: #343A40 !important;
}

.text--white {
    color: #fff !important;
}

/* Btn Color */
.border--white {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.border--dark {
    border-color: rgba(31, 31, 35, 0.15) !important;
}

.border--base {
    border-color: rgba(255, 200, 39, 0.15) !important;
}

.border--primary {
    border-color: rgba(255, 82, 1, 0.15) !important;
}

.border--secondary {
    border-color: rgba(120, 129, 138, 0.15) !important;
}

.btn--outline {
    border: 1px solid #FFC827 !important;
}

.btn--border {
    border: 1px solid #FFC827 !important;
}

.btn--round {
    border-radius: 35px !important;
}

.radius-0 {
    border-radius: 0 !important;
}

.radius-5 {
    border-radius: 5px !important;
}

.radius-50 {
    border-radius: 50% !important;
}

.btn--primary {
    color: #fff !important;
    background: #ff5201 !important;
    border-color: #ff5201 !important;
}

.btn--secondary {
    color: #fff !important;
    background: #78818A !important;
    border-color: #78818A !important;
}

.btn--base {
    color: var(--casino-text-primary) !important;
    background: var(--casino-gold) !important;
    border-color: var(--casino-gold) !important;
}

.btn--danger {
    color: #fff !important;
    background: #EA5455 !important;
    border-color: #EA5455 !important;
}

.btn--warning {
    color: #fff !important;
    background: #FF9F43 !important;
    border-color: #FF9F43 !important;
}

.btn--info {
    color: #fff !important;
    background: #1E9FF2 !important;
    border-color: #1E9FF2 !important;
}

.btn--success {
    color: #fff !important;
    background: #28C76F !important;
    border-color: #28C76F !important;
}

.btn--dark {
    color: #fff !important;
    background: #343A40 !important;
    border-color: #343A40 !important;
}

.badge--primary {
    color: #fff !important;
    background: #ff5201 !important;
    border-color: #ff5201 !important;
}

.badge--secondary {
    color: #fff !important;
    background: #78818A !important;
    border-color: #78818A !important;
}

.badge--base {
    color: #fff !important;
    background: #FFC827 !important;
    border-color: #FFC827 !important;
}

.badge--danger {
    color: #fff !important;
    background: #EA5455 !important;
    border-color: #EA5455 !important;
}

.badge--warning {
    color: #fff !important;
    background: #FF9F43 !important;
    border-color: #FF9F43 !important;
}

.badge--info {
    color: #fff !important;
    background: #1E9FF2 !important;
    border-color: #1E9FF2 !important;
}

.badge--success {
    color: #fff !important;
    background: #28C76F !important;
    border-color: #28C76F !important;
}

.badge--dark {
    color: #fff !important;
    background: #343A40 !important;
    border-color: #343A40 !important;
}

/* Background Color */
.bg--primary {
    background: #ff5201 !important;
}

.bg--secondary {
    background: #78818A !important;
}

.bg--base {
    background: var(--casino-gold) !important;
}

.bg--danger {
    background: #EA5455 !important;
}

.bg--warning {
    background: #FF9F43 !important;
}

.bg--info {
    background: #1E9FF2 !important;
}

.bg--success {
    background: #28C76F !important;
}

.bg--dark {
    background: #343A40 !important;
}

.bg--white {
    background: #fff !important;
}

.bg--none {
    background: transparent !important;
}

.shadow--base {
    box-shadow: 0 0 25px rgba(255, 200, 39, 0.45) !important;
}

.shadow--primary {
    box-shadow: 0 0 25px rgba(255, 82, 1, 0.35) !important;
}

.shadow--secondary {
    box-shadow: 0 3px 15px rgba(120, 129, 138, 0.45) !important;
}

.facebook {
    color: #3b5998 !important;
    border: 1px solid rgba(59, 89, 152, 0.9) !important;
}

.facebook:hover {
    background: #3b5998 !important;
    color: #fff !important;
}

.twitter {
    color: #55acee !important;
    border: 1px solid rgba(85, 172, 238, 0.9) !important;
}

.twitter:hover {
    background: #55acee !important;
    color: #fff !important;
}

.vimeo {
    color: #1ab7ea !important;
    border: 1px solid rgba(26, 183, 234, 0.9) !important;
}

.vimeo:hover {
    background: #1ab7ea !important;
    color: #fff !important;
}

.instagram {
    color: #e4405f !important;
    border: 1px solid rgba(228, 64, 95, 0.9) !important;
}

.instagram:hover {
    background: #e4405f !important;
    color: #fff !important;
}

.youtube {
    color: #cd201f !important;
    border: 1px solid rgba(205, 32, 31, 0.9) !important;
}

.youtube:hover {
    background: #cd201f !important;
    color: #fff !important;
}

.facebook-bg {
    background: #3b5998 !important;
    border-color: transparent !important;
}

.facebook-bg:hover {
    background: #3b5998 !important;
    color: #fff !important;
}

.twitter-bg {
    background: #55acee !important;
    border-color: transparent !important;
}

.twitter-bg:hover {
    background: #55acee !important;
    color: #fff !important;
}

.vimeo-bg {
    background: #1ab7ea !important;
    border-color: transparent !important;
}

.vimeo-bg:hover {
    background: #1ab7ea !important;
    color: #fff !important;
}

.instagram-bg {
    background: #e4405f !important;
    border-color: transparent !important;
}

.instagram-bg:hover {
    background: #e4405f !important;
    color: #fff !important;
}

.youtube-bg {
    background: #cd201f !important;
    border-color: transparent !important;
}

.youtube-bg:hover {
    background: #cd201f !important;
    color: #fff !important;
}

.google-bg {
    background: #dd4b39 !important;
    border-color: transparent !important;
}

.google-bg:hover {
    background: #dd4b39 !important;
    color: #fff !important;
}

.pb-80 {
    padding-bottom: 80px;
}

.pt-80 {
    padding-top: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: var(--casino-text-secondary);
    line-height: 1.7;
    font-family: var(--casino-font-body);
    background: var(--casino-bg-primary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(224, 64, 253, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(140, 89, 252, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(179, 29, 163, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(224, 64, 253, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: color-shift 10s ease-in-out infinite;
}

@keyframes color-shift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    color: #fff;
    font-family: var(--casino-font-primary);
    font-weight: 700;
    letter-spacing: 0.02em;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #fff;
}

h1 {
    font-size: 70px;
}

h2 {
    font-size: 50px;
    margin-top: -8px;
}

h3 {
    font-size: 26px;
    margin-top: -5px;
}

h4 {
    font-size: 24px;
    margin-top: -4px;
    font-weight: 500;
}

h5 {
    font-size: 20px;
    margin-top: -3px;
    font-weight: 500;
}

h6 {
    font-size: 18px;
    margin-top: -2px;
    font-weight: 500;
}

p {
    margin: 0;
    padding: 0;
}

a {
    display: inline-block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
}

a:hover {
    color: #FFC827;
}

span,
sub,
sup {
    display: inline-block;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    margin: -7px 0;
    padding: 0;
}

ul li {
    list-style: none;
    padding: 7px 0;
}

.bg_img {
    background-size: cover !important;
    background-position: center center;
    background-repeat: no-repeat !important;
}

.bg_fixed {
    background-attachment: fixed !important;
}

/* Disable fixed background on smaller devices to prevent scroll jank */
@media (max-width: 991px) {
    .bg_fixed {
        background-attachment: scroll !important;
    }
}

.form-label {
    font-size: 15px;
    color: #fff;
}

.form--control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    outline: 0;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.8);
    background: var(--casino-bg-dark);
}

.form--control:focus {
    color: #fff;
    background: var(--casino-bg-dark);
    border: 1px solid rgba(255, 200, 39, 0.6);
    outline: 0;
    box-shadow: none;
}

.form--control[type=file] {
    line-height: 25px;
    padding: 12px 25px;
}

.form--control[readonly] {
    background: rgba(255, 82, 1, 0.05) !important;
}

.form--control[readonly]:focus {
    border-color: rgba(255, 255, 255, 0.17);
}

.form--control.style-two {
    background: var(--casino-bg-card);
}

select.lang-select {
    border: 0;
    background-color: transparent !important;
    color: #fff;
}

::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
}

.h-40 {
    height: 40px !important;
}

.h-45 {
    height: 45px !important;
}

.h-50 {
    height: 50px !important;
}

textarea.form--control {
    height: 150px;
    padding-top: 10px;
}

.title,
.name,
img {
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
}

.section-bg {
    background: var(--casino-bg-card);
}

.custom--scrollbar ::-webkit-scrollbar {
    width: 5px !important;
    height: 5px;
}

.custom--scrollbar ::-webkit-scrollbar-thumb {
    background: rgba(255, 82, 1, 0.45) !important;
    border-radius: 5px !important;
}

.nice-select {
    width: auto;
    display: flex;
    align-items: center;
    line-height: 1;
    box-shadow: 3px 3px 10px 3px rgba(255, 82, 1, 0.05);
}

.nice-select:focus {
    border-color: rgba(255, 200, 39, 0.7);
}

.nice-select .list {
    max-height: 150px;
    overflow-y: auto;
    overflow-x: auto;
}

.nice-select .list li {
    min-height: 20px;
    max-height: 35px;
    display: flex;
    align-items: center;
}

.nice-select .list li::before {
    display: none;
}

.rtl {
    direction: rtl !important;
}

.form--check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form--check label {
    line-height: 1.6;
    padding-left: 0;
    font-size: 14px !important;
    color: var(--casino-text-secondary);
    cursor: pointer;
    margin: 0;
    flex: 1;
}

.form--check label a {
    color: var(--casino-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.form--check label a:hover {
    color: var(--casino-accent-2);
    text-decoration: underline;
}

.form--check input[type="checkbox"] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    height: 20px;
    width: 20px;
    min-width: 20px;
    cursor: pointer;
    background: var(--casino-bg-dark);
    border: 2px solid var(--casino-border-light);
    border-radius: 5px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.form--check input[type="checkbox"]:hover {
    border-color: var(--casino-primary);
}

.form--check input[type="checkbox"]::after {
    position: absolute;
    font-weight: 900;
    font-size: 16px;
    font-family: "Font Awesome 5 Free";
    content: '\f00c';
    font-size: 12px;
    color: #fff;
    visibility: hidden;
    background: transparent;
    line-height: 1;
    border-radius: 3px;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    text-align: center;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form--check input[type="checkbox"]:checked {
    border-color: var(--casino-primary) !important;
    background: var(--casino-primary);
}

.form--check input[type="checkbox"]:checked::after {
    visibility: visible;
}

.custom--radio {
    display: flex;
}

.custom--radio label {
    margin-bottom: -2px;
    padding-left: 7px;
    font-size: 16px !important;
}

.custom--radio input[type="radio"] {
    appearance: none;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 15px;
    width: 15px;
    cursor: pointer;
    background: #fff;
    border: 1px solid rgba(255, 82, 1, 0.4) !important;
    border-radius: 2px;
    margin-top: 4px;
    border-radius: 2px;
}

.custom--radio input[type="radio"]:checked {
    background: transparent;
    border-color: transparent !important;
}

.custom--radio input[type="radio"]::after {
    position: absolute;
    font-weight: 900;
    font-size: 16px;
    font-family: "Line Awesome Free";
    content: '\f14a';
    font-size: 18px;
    color: #FFC827;
    visibility: hidden;
    opacity: 0;
}

.custom--radio input[type="radio"]:checked::after {
    visibility: visible;
    opacity: 1;
}

.scrollToTop {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 9999;
    bottom: 30px;
    right: 30px;
    font-size: 20px;
    position: fixed;
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
    background: #FFC827;
    border-radius: 3px;
}

.scrollToTop:hover {
    color: #fff;
}

.scrollToTop.active {
    transform: translateY(0);
    animation: bounceInDown 2s;
}

.scrollToTop i {
    transform: rotate(-45deg);
}

i {
    line-height: 1;
}

@media (min-width: 1200px) {
    .padding-top {
        padding-top: 130px;
    }

    .padding-bottom {
        padding-bottom: 130px;
    }
}

@media (max-width: 1199px) {
    h2 {
        font-size: 52px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 16px;
    }

    .padding-top {
        padding-top: 110px;
    }

    .padding-bottom {
        padding-bottom: 110px;
    }
}

@media (max-width: 991px) {
    h3 {
        font-size: 22px;
    }

    h5 {
        font-size: 17px;
    }

    .padding-top {
        padding-top: 90px;
    }

    .padding-bottom {
        padding-bottom: 90px;
    }
}

@media (max-width: 767px) {
    h2 {
        font-size: 42px;
    }

    h4 {
        font-size: 20px;
    }

    h6 {
        font-size: 15px;
    }

    .padding-top {
        padding-top: 80px;
    }

    .padding-bottom {
        padding-bottom: 80px;
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 18px;
    }

    h5 {
        font-size: 17px;
    }

    h6 {
        font-size: 15px;
    }

    .padding-top {
        padding-top: 70px;
    }

    .padding-bottom {
        padding-bottom: 70px;
    }

    .container,
    .container-fluid {
        max-width: 460px !important;
    }

    p {
        font-size: 15px;
    }
}

.btn,
.cmn--btn {
    color: #ffffff;
    padding: 14px 38px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--casino-font-primary);
    cursor: pointer;
    outline: none;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--casino-gradient-primary);
    box-shadow: 0 4px 20px rgba(224, 64, 253, 0.4),
        0 0 0 0 rgba(224, 64, 253, 0.2);
}

@media (max-width: 1199px) {

    .btn,
    .cmn--btn {
        font-size: 18px;
    }
}

@media (max-width: 400px) {
    .cmn--btn{
        padding: 10px !important;
    }
    
}
.btn:hover,
.cmn--btn:hover {
    color: #ffffff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(224, 64, 253, 0.6),
        0 0 20px rgba(224, 64, 253, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    border-color: var(--casino-primary-light);
}

.btn.btn--lg,
.cmn--btn.btn--lg {
    padding: 13px 35px !important;
    font-size: 24px;
}

@media (max-width: 991px) {

    .btn.btn--lg,
    .cmn--btn.btn--lg {
        font-size: 22px;
    }
}

@media (max-width: 575px) {

    .btn.btn--lg,
    .cmn--btn.btn--lg {
        font-size: 20px;
    }
}

.btn.btn--md,
.cmn--btn.btn--md {
    padding: 10px 25px !important;
    font-size: 15px;
}

.btn.btn--sm,
.cmn--btn.btn--sm {
    padding: 5px 15px !important;
    font-size: 14px;
}

.btn.btn--xs,
.cmn--btn.btn--xs {
    padding: 0px 10px !important;
    font-size: 13px;
}

.cmn--btn {
    position: relative;
    overflow: hidden;
}

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

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

.cmn--btn::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.cmn--btn:hover::after {
    width: 300px;
    height: 300px;
}

.video-button {
    width: 75px;
    height: 75px;
    z-index: 1;
    border-radius: 50%;
    position: relative;
    background: var(--casino-gradient-gold);
    background-image: -moz-linear-gradient(123deg, #300c7a 0%, #780774 100%);
}

@media (max-width: 1199px) {
    .video-button {
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 450px) {
    .video-button {
        width: 60px;
        height: 60px;
    }
}

.video-button::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    animation: play-button 2s linear infinite;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.video-button::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    animation: play-button 1.8s linear infinite;
    animation-delay: .5s;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.video-button i {
    font-size: 24px;
    color: #fff;
    z-index: 1;
}

@media (max-width: 1199px) {
    .video-button i {
        font-size: 20px;
    }
}

.overlay,
.mobile-menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    min-height: 100%;
    background: transparent;
    z-index: -111;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
}

.overlay.active,
.mobile-menu-overlay.active {
    z-index: 11;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

/* Mobile menu overlay - must be behind mobile menu */
@media (max-width: 991px) {

    /* Mobile menu overlay base styles */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        z-index: 9990;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        cursor: pointer;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Ensure overlay is behind mobile menu when menu is open */
    body.menu-open .mobile-menu-overlay.active {
        z-index: 9990 !important;
        background: rgba(0, 0, 0, 0.5) !important;
        backdrop-filter: blur(2px) !important;
        -webkit-backdrop-filter: blur(2px) !important;
    }

    /* Ensure mobile menu is always on top */
    .mobile-toggle-menu.active {
        z-index: 10000 !important;
    }
}

.overlay.overlay-color {
    background: rgba(31, 31, 35, 0.6);
    z-index: 111;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.header {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 12;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
}

body.menu-open {
    overflow: hidden;
}

.header.sticky {
    position: fixed;
}

.header.sticky {
    background: rgba(17, 3, 78, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header.sticky .header-top {
    background: rgba(10, 2, 48, 0.95);
}

.header.sticky .header-bottom {
    background: rgba(26, 6, 94, 0.95);
}

/* Header Top Section */
.header-top {
    background: var(--casino-bg-dark);
    padding: 8px 0;
    border-bottom: 1px solid var(--casino-border-light);
}

@media (max-width: 991px) {
    .header-top .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-icons.d-flex.align-items-center {
        display: none !important;
    }
}

.header-top-area {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 100%;
}

@media (max-width: 1199px) {
    .logo img {
        height: 35px;
    }
}

@media (max-width: 767px) {
    .logo img {
        height: 32px;
    }
}

@media (max-width: 575px) {
    .logo img {
        height: 50px;
    }
}

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

.btn-join-now {
    background: var(--casino-accent-2);
    color: var(--casino-text-primary);
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-join-now:hover {
    background: var(--casino-accent-2-light);
    color: var(--casino-text-primary);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--casino-shadow-purple);
}

.btn-log-in {
    background: var(--casino-primary);
    color: var(--casino-text-primary);
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-log-in:hover {
    background: var(--casino-primary-light);
    color: var(--casino-text-primary);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--casino-shadow-primary);
}

/* Header Bottom Section - Navigation */
.header-bottom {
    width: 100%;
    padding: 4px 0;
    background: var(--casino-bg-secondary);
}

.header-bottom .container {
    max-width: 100%;
}

@media (max-width: 991px) {
    .header-bottom .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 991px) {
    .header-bottom {
        padding: 6px 0;
    }
}

.header-middle {
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 15px;
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: auto;
}

@media (max-width: 1399px) {
    .header-middle {
        gap: 12px;
    }
}

@media (max-width: 1199px) {
    .header-middle {
        gap: 10px;
    }
}

@media (max-width: 991px) {

    /* Hide header-middle in header-top on mobile */
    .header-top .header-middle {
        display: flex;
        order: 2;
    }

    /* Header middle mobile in header-bottom */
    .header-middle-mobile {
        gap: 8px;
        flex-shrink: 0;
        margin-left: auto;
    }

    .header-middle-mobile .user-profile-dropdown {
        margin-right: 0;
    }

    .header-middle-mobile .user-profile {
        padding: 5px;
    }

    .header-middle-mobile .user-avatar {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .header-middle-mobile .header-icons {
        gap: 5px;
    }

    .header-middle-mobile .header-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 14px;
    }

    /* Toggle button positioning */
    .header-top .header-trigger-wrapper {
        order: 2;
    }
}

.header-bottom-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
}

@media (max-width: 991px) {
    .header-top {
        padding: 10px 0;
    }

    .header-top-area {
        flex-wrap: nowrap;
        gap: 10px;
        justify-content: space-between;
    }

    .header-top .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Hide buttons in header-top on mobile */
    .header-top .header-actions {
        order: 2;
    }

    /* Show menu toggle in header-top on mobile */
    .header-top .header-trigger-wrapper {
        display: flex !important;
        margin-left: auto;
        padding: 5px;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        order: 2;
        z-index: 15;
        position: relative;
        cursor: pointer;
    }

    .header-top .logo {
        order: 1;
    }

    .header-bottom {
        padding: 8px 0;
    }

    .header-bottom .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-bottom-area {
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    /* Header middle mobile in header-bottom */
    .header-bottom-area .header-middle-mobile {
        order: 2;
        margin-left: auto;
    }

    .header-bottom-area .menu {
        order: 1;
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow: scroll;
        gap: 5px;
        justify-content: center;
    }

    /* Show buttons in header-bottom on mobile */
    .header-bottom .header-actions {
        display: flex !important;
        width: 100%;
        gap: 10px;
        order: 1;
        margin-top: 0;
        justify-content: space-between;
    }

    .header-bottom .btn-join-now,
    .header-bottom .btn-log-in {
        padding: 10px 18px;
        font-size: 12px;
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 1;
        max-width: calc(50% - 5px);
    }

    .header-bottom .btn-join-now {
        order: 1;
    }

    .header-bottom .btn-log-in {
        order: 2;
    }

    /* Hide menu toggle in header-bottom on mobile */
    .header-bottom .header-trigger-wrapper {
        display: none !important;
    }

    /* Ensure buttons are visible in header-bottom on mobile */
    .header-bottom .header-actions {
        display: flex !important;
    }

    .menu {}

    .menu.mobile-menu.active {
        display: flex !important;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        flex-wrap: wrap;
        flex: 1 1 100%;
        justify-content: flex-start;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
        z-index: 12;
        position: relative;
        background: rgba(17, 3, 78, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 8px;
        padding: 15px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        order: 3 !important;
    }

    /* Mobile Toggle Menu */
    .mobile-toggle-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 85%;
        height: 100vh;
        background: rgba(17, 3, 78, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 10000 !important;
        overflow-y: auto;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    }

    .mobile-toggle-menu.active {
        right: 0;
    }

    /* Close Button in Mobile Menu */
    .mobile-toggle-menu .header-trigger-close {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10001;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        transition: all 0.3s ease;
        padding: 0;
    }

    .mobile-toggle-menu .header-trigger-close:hover {
        background: rgba(224, 64, 253, 0.2);
        border-color: rgba(224, 64, 253, 0.4);
        transform: rotate(90deg);
    }

    .mobile-toggle-menu .header-trigger-close span {
        width: 20px;
        height: 2px;
        background: #fff;
        position: relative;
        display: block;
        transition: all 0.3s ease;
        transform: rotate(45deg);
        border-radius: 1px;
    }

    .mobile-toggle-menu .header-trigger-close span::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: #fff;
        top: 0;
        left: 0;
        transform: rotate(-90deg);
        transition: all 0.3s ease;
        border-radius: 1px;
    }

    .mobile-toggle-menu .header-trigger-close:hover span {
        background: var(--casino-accent-2-light);
        transform: rotate(45deg) scale(1.1);
    }

    .mobile-toggle-menu .header-trigger-close:hover span::after {
        background: var(--casino-accent-2-light);
        transform: rotate(-90deg) scale(1.1);
    }

    .mobile-toggle-menu .mobile-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 50px 0 15px;
        width: 100%;
        margin: 0;
    }

    .mobile-toggle-menu .mobile-menu li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-toggle-menu .mobile-menu li:last-child {
        border-bottom: none;
    }

    .mobile-toggle-menu .mobile-menu li a {
        display: block;
        padding: 12px 16px;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: all 0.2s ease;
        width: 100%;
        border-radius: 0;
    }

    .mobile-toggle-menu .mobile-menu li a:hover,
    .mobile-toggle-menu .mobile-menu li a.active {
        color: var(--casino-accent-2-light);
        background: rgba(224, 64, 253, 0.15);
        padding-left: 20px;
    }

    /* Header middle mobile positioning when menu is active */
    .header-bottom-area .header-middle-mobile {
        order: 2 !important;
        justify-content: space-between !important;
        margin: 0;
        width: 100%;
    }

    .menu li {
        margin-right: 0;
        margin-bottom: 0;
    }

    .menu li a {
        white-space: normal;
        padding: 14px 0;
        font-size: 14px;
        width: 100%;
        display: block;
        transition: all 0.3s ease;
        border-radius: 4px;
    }

    .menu li a:hover {
        color: var(--casino-accent-2-light);
        padding-left: 10px;
        background: rgba(224, 64, 253, 0.1);
    }

    .menu li a.active {
        color: var(--casino-accent-2-light);
    }

    .header-trigger {
        padding: 10px;
        margin-top: 0;
    }

    .header-trigger-wrapper {
        min-width: 44px;
        min-height: 44px;
    }
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 100%;
}

@media (max-width: 1199px) {
    .logo img {
        height: 54px;
    }

    .logo-fabulous {
        font-size: 22px;
    }

    .logo-vegas {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .header-top {
        padding: 12px 0;
    }

    .header-top-area {
        gap: 8px;
    }

    .header-bottom {
        padding: 10px 0;
    }

    .header-bottom .header-actions {
        gap: 8px;
        justify-content: space-between;
    }

    .header-bottom .btn-join-now,
    .header-bottom .btn-log-in {
        padding: 10px 16px;
        font-size: 11px;
        min-height: 38px;
        flex: 1;
        max-width: calc(50% - 4px);
    }

    .header-top .header-trigger-wrapper {
        min-width: 40px;
        min-height: 40px;
    }

    .header-trigger span {
        width: 22px;
    }
}

@media (max-width: 575px) {
    .header-top {
        padding: 10px 0;
    }

    .header-top .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header-top-area {
        gap: 6px;
    }

    .logo {
        flex-shrink: 0;
    }

    /* Header middle mobile - compact */
    .header-middle-mobile {
        gap: 5px;
    }

    .header-middle-mobile .user-profile {
        padding: 4px;
    }

    .header-middle-mobile .user-avatar {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 14px;
    }

    .header-middle-mobile .header-icons {
        gap: 4px;
    }

    .header-middle-mobile .header-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 12px;
    }

    .header-bottom {
        padding: 0;
    }

    .header-bottom .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header-bottom-area {
        gap: 8px;
    }

    .header-bottom .header-actions {
        gap: 6px;
        width: 100%;
        justify-content: space-between;
    }

    .header-bottom .btn-join-now,
    .header-bottom .btn-log-in {
        padding: 10px 14px;
        font-size: 10px;
        min-height: 36px;
        flex: 1;
        text-align: center;
        max-width: calc(50% - 3px);
    }

    .header-top .header-trigger-wrapper {
        min-width: 44px;
        min-height: 44px;
        padding: 4px;
    }

    .header-trigger {
        padding: 8px;
    }

    .header-trigger span {
        width: 20px;
        height: 2px;
    }

    .header-trigger span::after,
    .header-trigger span::before {
        height: 2px;
    }

    .header-trigger span::after {
        bottom: -7px;
    }

    .header-trigger span::before {
        top: -7px;
    }

    .menu.active {
        margin-top: 8px;
    }

    .menu li a {
        padding: 14px 0;
        font-size: 13px;
    }

    /* Mobile Toggle Menu - Small screens */
    .mobile-toggle-menu {
        width: 260px;
        max-width: 80%;
    }

    .mobile-toggle-menu .header-trigger-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }

    .mobile-toggle-menu .header-trigger-close span {
        width: 18px;
    }

    .mobile-toggle-menu .mobile-menu {
        padding: 45px 0 12px;
    }

    .mobile-toggle-menu .mobile-menu li a {
        padding: 10px 14px;
        font-size: 14px;
    }

    .mobile-toggle-menu .mobile-menu li a:hover,
    .mobile-toggle-menu .mobile-menu li a.active {
        padding-left: 18px;
    }
}

.menu {
    display: flex;
    align-items: center;
    margin: 0;
    position: relative;
    flex-wrap: nowrap;
    gap: 0;
    flex: 1;
    justify-content: center;
    white-space: nowrap;
    min-width: 0;
    list-style: none;
}

.menu li {
    margin-right: 20px;
}

.menu li:last-child {
    margin-right: 0;
}

@media (max-width: 1399px) {
    .menu li {
        margin-right: 18px;
    }
}

.menu li a {
    font-size: 13px;
    padding: 4px 0;
}

@media (max-width: 1199px) {
    .menu li {
        margin-right: 20px;
    }

    .menu li a {
        font-size: 13px;
    }
}

.menu li a {
    white-space: nowrap;
    font-size: 13px;
    color: var(--casino-text-primary);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
    padding: 2px 0;
    position: relative;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.menu li a:hover {
    color: var(--casino-accent-2-light);
}

.menu li a.active {
    color: var(--casino-accent-2-light);
}

.menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--casino-primary);
    border-radius: 2px 2px 0 0;
}

@media (max-width: 1199px) {
    .menu {
        /* flex: 0 1 auto; */
        justify-content: flex-start;
    }

    .menu li a {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .menu {}

    .menu li a {
        white-space: normal;
    }
}

.menu>li:last-child {
    margin-right: 0;
}

@media (max-width: 1399px) {
    .menu>li {
        margin-right: 15px;
    }
}

@media (max-width: 1199px) {
    .menu>li {
        margin-right: 15px;
    }

    .menu>li a {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .menu>li {
        margin-right: 0;
    }
}

@media (min-width: 992px) {
    .menu>.has-sub-menu.open .sub-menu {
        display: block !important;
    }
}

.menu .sub-menu li {
    width: 100%;
}

@media (min-width: 992px) {
    .menu .sub-menu {
        display: block !important;
    }
}

.menu li {
    position: relative;
    display: flex;
    flex-shrink: 0;
    white-space: nowrap;
}

.menu li:hover>.sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.menu li.has-sub-menu>a {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.menu li.has-sub-menu>a::after {
    position: absolute;
    font-weight: 900;
    font-size: 16px;
    font-family: "Line Awesome Free";
    content: '\f107';
    right: 0;
    top: 50%;
    transform: translate(8px, -50%);
    font-size: 14px;
}

.menu li a {
    display: block;
    padding: 4px 8px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--casino-font-primary);
    color: #fff;
    position: relative;
    white-space: nowrap;
}

.menu li a .badge {
    position: absolute;
    font-weight: 600;
    top: -12px;
    right: -8px;
    font-size: 9px;
    color: #1f1f23 !important;
    border-radius: 3px 3px 3px 0;
    line-height: .93;
    padding: 4px 5px 2px;
    z-index: 1;
}

.menu li a .badge::before {
    position: absolute;
    content: '';
    top: calc(100% - 1px);
    left: 0;
    background: #FFC827;
    width: 8px;
    height: 5px;
    clip-path: polygon(0 100%, 0 0, 100% 0);
}

.menu .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

@media (max-width: 1399px) {
    .menu li a {}
}

@media (max-width: 991px) {
    .menu li a {}
}

@media (min-width: 992px) {
    .sub-menu {
        position: absolute;
        top: 100%;
        right: 0px;
        opacity: 0;
        visibility: hidden;
        min-width: 230px;
        -webkit-transition: all ease .3s;
        -moz-transition: all ease .3s;
        transition: all ease .3s;
        transform: translateY(15px);
        box-shadow: 0 3px 12px 3px rgba(255, 82, 1, 0.1);
        overflow: hidden;
        z-index: 11;
        background: var(--casino-bg-dark);
        border: 2px solid var(--casino-border-medium);
        padding: 10px;
    }

    .sub-menu li {
        padding: 0;
    }

    .sub-menu li:last-child {
        border: none;
    }

    .sub-menu li a {
        font-size: 14px;
        color: #fff;
        padding: 7px 15px;
        display: block;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        -webkit-line-clamp: 1;
    }

    .sub-menu li a:hover {
        padding-left: 20px;
        background: #FFC827;
        color: #1f1f23;
    }

    .sub-menu:hover {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .sub-menu .sub-menu {
        visibility: hidden;
        opacity: 0;
        top: 5px;
        left: -100%;
        transform: translateY(20px);
    }

    .sub-menu.has-sub-menu>a::after {
        transform: translate(-20px, -50%);
    }
}

@media (max-width: 991px) {
    .menu>li:nth-last-child(1) {
        border-bottom: none;
    }

    .menu>li:nth-last-child(2) {
        border-bottom: none;
    }

    .menu>li:nth-last-child(3) {
        border-bottom: none;
    }

    .menu {}

    .menu.active {
        background: rgba(17, 3, 78, 0.95);
        backdrop-filter: blur(10px);
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        z-index: 12;
        top: auto;
        display: flex;
        padding: 20px 0;
        max-height: 1000px;
        overflow-y: visible;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .menu.active .cmn--btn {
        border-color: var(--casino-text-primary);
    }

    .menu .has-sub-menu {
        margin-right: 0;
    }

    .menu .sub-menu {
        background: var(--casino-bg-card);
    }

    .menu .has-sub-menu>a::after {
        transform: translate(-20px, -50%) !important;
    }

    .menu li {
        padding-bottom: 0;
        /* width: 100%; */
        /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
        /* margin-bottom: 0; */
        /* opacity: 0; */
        /* transform: translateX(-10px); */
        /* transition: all 0.3s ease; */
    }

    .menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .menu.active li:nth-child(1) {
        transition-delay: 0.05s;
    }

    .menu.active li:nth-child(2) {
        transition-delay: 0.1s;
    }

    .menu.active li:nth-child(3) {
        transition-delay: 0.15s;
    }

    .menu.active li:nth-child(4) {
        transition-delay: 0.2s;
    }

    .menu.active li:nth-child(5) {
        transition-delay: 0.25s;
    }

    .menu.active li:nth-child(6) {
        transition-delay: 0.3s;
    }

    .menu.active li:nth-child(7) {
        transition-delay: 0.35s;
    }

    .menu.active li:nth-child(8) {
        transition-delay: 0.4s;
    }

    .menu li:nth-last-child(1) {
        border-bottom: none;
    }

    .menu li a {
        display: block;
        width: 100%;
        font-size: 13px;
        position: relative;
        padding: 10px 5px !important;
    }

    .menu li a:hover {
        color: var(--casino-accent-2-light);
        padding-left: 10px;
        background: rgba(224, 64, 253, 0.1);
    }

    .menu li a.active {
        color: var(--casino-accent-2-light);
    }

    .menu li a.active::before {}

    .menu li.has-sub-menu a::after {
        transform: translate(-20px, -50%) !important;
    }

    .menu .btn {
        background: #fff !important;
        border-color: transparent !important;
        color: #FFC827 !important;
    }

    .sub-menu {
        display: none;
        padding-left: 25px;
        background: #fff;
    }
}

.header-trigger {
    cursor: pointer;
    margin-top: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.header-trigger:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.header-trigger.active {
    background: rgba(224, 64, 253, 0.2);
    border-color: rgba(224, 64, 253, 0.4);
}

.header-trigger.active:hover {
    background: rgba(224, 64, 253, 0.3);
    border-color: rgba(224, 64, 253, 0.5);
}

@media (max-width: 767px) {
    .header-trigger {
        margin-top: 0;
    }
}

.header-trigger.active span {
    background: transparent !important;
}

.header-trigger.active span::before {
    transform: rotate(-45deg);
    background: #fff;
    top: 0;
    left: 0;
}

.header-trigger.active span::after {
    transform: rotate(45deg);
    background: #fff;
    bottom: 0;
    left: 0;
}

/* Ensure close icon is visible when mobile menu is open */
@media (max-width: 991px) {
    body.menu-open .header-trigger.active span {
        background: transparent !important;
    }

    body.menu-open .header-trigger.active span::before {
        transform: rotate(-45deg) !important;
        top: 0 !important;
        background: #fff !important;
    }

    body.menu-open .header-trigger.active span::after {
        transform: rotate(45deg) !important;
        bottom: 0 !important;
        background: #fff !important;
    }
}

.header-trigger span {
    width: 24px;
    height: 2.5px;
    background: #fff;
    position: relative;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: block;
    border-radius: 2px;
}

@media (max-width: 575px) {
    .header-trigger span {
        width: 22px;
    }
}

.header-trigger span::after,
.header-trigger span::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    background: #fff;
    border-radius: 2px;
    -webkit-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -moz-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.header-trigger span::after {
    bottom: -8px;
}

.header-trigger span::before {
    top: -8px;
}

/* Hero Promos Banner Section - Full Width Offset Slider */
.hero-promos-banner.hero-slider-section {
    position: relative;
    overflow: visible;
    background: var(--casino-bg-primary);
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    z-index: 1;
}

@media (max-width: 1199px) {
    .hero-promos-banner.hero-slider-section {}
}

@media (max-width: 991px) {
    .hero-promos-banner.hero-slider-section {
        overflow: hidden;
    }
}

@media (max-width: 767px) {
    .hero-promos-banner.hero-slider-section {
        overflow: hidden;
    }
}

@media (max-width: 575px) {
    .hero-promos-banner.hero-slider-section {
        overflow: hidden;
    }
}

.hero-slider-section .hero-promos-slider {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-slider-section .hero-promos-slider .slick-list {}

@media (max-width: 991px) {
    .hero-slider-section .hero-promos-slider .slick-list {}
}

.hero-slider-section .hero-promos-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.hero-promo-slide {
    padding: 0 15px;
    box-sizing: border-box;
}

@media (max-width: 1199px) {
    .hero-promo-slide {
        padding: 0 12px;
    }
}

@media (max-width: 991px) {
    .hero-promo-slide {
        padding: 0 10px;
    }
}

@media (max-width: 767px) {
    .hero-promo-slide {
        padding: 0 8px;
    }
}

@media (max-width: 575px) {
    .hero-promo-slide {
        padding: 0 5px;
    }
}

.hero-slide-image {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

@media (max-width: 767px) {
    .hero-slide-image {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 575px) {
    .hero-slide-image {
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    }
}

.hero-slide-image:hover {}

@media (max-width: 767px) {
    .hero-slide-image:hover {}
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 767px) {
    .hero-img {}

}

@media (max-width: 575px) {
    .hero-img {}
}

/* Offset Effect - Show partial slides on sides */
.hero-slider-section .slick-slide {}

.hero-slider-section .slick-slide.slick-center {}

.hero-slider-section .slick-slide.slick-active {}

/* Responsive Hero Images */
@media (max-width: 1199px) {
    .hero-img {
        object-fit: cover;
    }

    .hero-slider-section .slick-slide {}

    .hero-slider-section .slick-dots {
        bottom: 0px;
    }

}

@media (max-width: 991px) {
    .hero-img {
        object-fit: cover;
    }

    .hero-slider-section .slick-slide {}

    .hero-promos-banner .container {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .hero-img {
        object-fit: cover;
    }

    .hero-slider-section .slick-slide {}
}

@media (max-width: 575px) {
    .hero-img {
        object-fit: cover;
    }

    .hero-slider-section .slick-slide {}

    .hero-slider-section .slick-slide.slick-center {}
}

/* Logo and Slogan Section */
.hero-logo-slogan {
    position: relative;
    z-index: 3;
    margin-bottom: 60px;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    animation: hero-logo-entrance 1s ease-out;
}

@keyframes hero-logo-entrance {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-logo img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(224, 64, 253, 0.6));
    transition: all 0.3s ease;
}

.hero-logo:hover img {
    filter: drop-shadow(0 0 40px rgba(224, 64, 253, 0.9));
    transform: scale(1.05);
}

.hero-slogan {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--casino-font-primary);
    color: var(--casino-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 40px rgba(224, 64, 253, 0.6),
        0 0 80px rgba(224, 64, 253, 0.4);
    margin-top: 20px;
    animation: hero-slogan-entrance 1s ease-out 0.3s both;
}

@keyframes hero-slogan-entrance {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-promos-banner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(224, 64, 253, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(140, 89, 252, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(179, 29, 163, 0.2) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: hero-promo-glow 8s ease-in-out infinite alternate;
}

@keyframes hero-promo-glow {
    0% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.hero-promos-banner .container {
    position: relative;
    z-index: 2;
}

.hero-promos-slider {
    position: relative;
    margin: 0 auto !important;
    padding: 0 15px;
}

@media (max-width: 1199px) {
    .hero-promos-slider {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 991px) {
    .hero-promos-slider {
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    .hero-promos-slider {
        padding: 0 10px;
    }
}

@media (max-width: 575px) {
    .hero-promos-slider {
        padding: 0 5px;
    }
}

.hero-promo-slide {
    text-align: center;
    padding: 0;
}

.hero-promo-content {
    position: relative;
    z-index: 3;
}

.hero-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(224, 64, 253, 0.25);
    border: 2px solid var(--casino-primary);
    border-radius: 50px;
    backdrop-filter: blur(15px);
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(224, 64, 253, 0.4);
}

.hero-promo-dot {
    width: 10px;
    height: 10px;
    background: var(--casino-primary);
    border-radius: 50%;
    animation: hero-dot-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(224, 64, 253, 1);
}

@keyframes hero-dot-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.8;
    }
}

.hero-promo-text {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--casino-primary);
    text-shadow: 0 0 15px rgba(224, 64, 253, 0.8);
}

.hero-promo-main {
    margin-bottom: 40px;
}

.hero-promo-icon {
    font-size: 100px;
    color: var(--casino-primary);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 30px rgba(224, 64, 253, 0.9));
    animation: hero-icon-float 3s ease-in-out infinite;
}

@keyframes hero-icon-float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.hero-promo-title {
    font-size: 4.5rem;
    font-weight: 900;
    font-family: var(--casino-font-primary);
    color: var(--casino-text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 40px rgba(224, 64, 253, 0.6),
        0 0 80px rgba(224, 64, 253, 0.4);
    line-height: 1.1;
}

.hero-promo-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-promo-amount {
    font-size: 6rem;
    font-weight: 900;
    font-family: var(--casino-font-primary);
    background: var(--casino-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 30px 0;
    text-shadow: 0 0 50px rgba(224, 64, 253, 0.7);
    line-height: 1;
    animation: hero-amount-glow 2s ease-in-out infinite;
}

@keyframes hero-amount-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(224, 64, 253, 0.6));
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(224, 64, 253, 1));
    }
}

.hero-promo-note {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
    font-style: italic;
}

.hero-promo-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid;
    display: inline-block;
    min-width: 200px;
    text-align: center;
}

.hero-btn--login {
    background: rgba(140, 89, 252, 0.2);
    border-color: var(--casino-accent-2);
    color: var(--casino-text-primary);
    box-shadow: 0 0 25px rgba(140, 89, 252, 0.4),
        inset 0 0 20px rgba(140, 89, 252, 0.1);
}

.hero-btn--login:hover {
    background: rgba(140, 89, 252, 0.4);
    border-color: var(--casino-accent-2-light);
    box-shadow: 0 0 40px rgba(140, 89, 252, 0.7),
        inset 0 0 30px rgba(140, 89, 252, 0.2);
    transform: translateY(-3px) scale(1.05);
}

.hero-btn--signup {
    background: rgba(224, 64, 253, 0.2);
    border-color: var(--casino-primary);
    color: var(--casino-text-primary);
    box-shadow: 0 0 25px rgba(224, 64, 253, 0.4),
        inset 0 0 20px rgba(224, 64, 253, 0.1);
}

.hero-btn--signup:hover {
    background: rgba(224, 64, 253, 0.4);
    border-color: var(--casino-primary-light);
    box-shadow: 0 0 40px rgba(224, 64, 253, 0.7),
        inset 0 0 30px rgba(224, 64, 253, 0.2);
    transform: translateY(-3px) scale(1.05);
}

/* Floating Casino Elements */
.hero-promo-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-card,
.floating-dice,
.floating-chip {
    position: absolute;
    font-size: 60px;
    opacity: 0.6;
    animation: float-element 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(224, 64, 253, 0.5));
}

.floating-card {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.floating-dice.dice-1 {
    top: 25%;
    left: 8%;
    animation-delay: 1s;
}

.floating-dice.dice-2 {
    bottom: 20%;
    left: 12%;
    animation-delay: 2s;
}

.floating-chip {
    bottom: 15%;
    right: 15%;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, var(--casino-primary) 0%, rgba(224, 64, 253, 0.3) 100%);
    border-radius: 50%;
    border: 3px solid var(--casino-primary);
    animation-delay: 1.5s;
}

@keyframes float-element {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Navigation Dots - Hero Slider */
.hero-slider-section .slick-dots {
    bottom: 40px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 10;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.hero-slider-section .slick-dots li {
    width: 14px;
    height: 14px;
    margin: 0;
}

.hero-slider-section .slick-dots li button {
    width: 14px;
    height: 14px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.hero-slider-section .slick-dots li button:before {
    display: none;
}

.hero-slider-section .slick-dots li.slick-active button {
    background: var(--casino-primary);
    border-color: var(--casino-primary);
    box-shadow: 0 0 20px rgba(224, 64, 253, 0.8);
    transform: scale(1.3);
}

/* Promo Marquee Section */
.promo-marquee-section {
    position: relative;
    background: var(--casino-bg-primary);
    padding: 0;
    overflow: hidden;
    border-top: 1px solid rgba(224, 64, 253, 0.2);
    border-bottom: 1px solid rgba(224, 64, 253, 0.2);
}

.promo-marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
    background: linear-gradient(180deg,
            rgba(224, 64, 253, 0.05) 0%,
            transparent 50%,
            rgba(140, 89, 252, 0.05) 100%);
}

.promo-marquee-gradient-top,
.promo-marquee-gradient-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            rgba(224, 64, 253, 0) 0%,
            rgba(224, 64, 253, 0.3) 20%,
            rgba(224, 64, 253, 0.6) 40%,
            rgba(224, 64, 253, 0.8) 50%,
            rgba(140, 89, 252, 0.6) 60%,
            rgba(140, 89, 252, 0.3) 80%,
            rgba(140, 89, 252, 0) 100%);
    z-index: 2;
    box-shadow: 0 0 10px rgba(224, 64, 253, 0.3);
}

.promo-marquee-gradient-top {
    top: 0;
}

.promo-marquee-gradient-bottom {
    bottom: 0;
}

.promo-marquee-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.promo-marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    animation: marquee-scroll 60s linear infinite;
    will-change: transform;
}

.promo-marquee-section:hover .promo-marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.promo-marquee-text {
    flex: 0 0 auto;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    padding: 0 1.75rem;
    text-shadow: 0 0 12px rgba(224, 64, 253, 0.3);
    font-family: 'Exo 2', sans-serif;
}

.promo-marquee-text:not(:last-child)::after {
    content: ' ★ ';
    margin-left: 1.75rem;
    color: rgba(224, 64, 253, 0.7);
    font-weight: 400;
}

.deposit-limits-icon {
    background: rgba(30, 58, 95, 0.8);
    position: relative;
    border-radius: 6px;
    border: 1px solid rgba(224, 64, 253, 0.3);
}

.deposit-limits-icon svg {
    width: 60%;
    height: 60%;
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
}

.deposit-limits-icon .icon-text {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 8px;
    font-weight: 600;
    text-align: right;
    line-height: 1.2;
    font-family: 'Exo 2', sans-serif;
}

.newsletter-icon {
    background: rgba(30, 58, 95, 0.8);
    border-radius: 6px;
    border: 1px solid rgba(224, 64, 253, 0.3);
}

.newsletter-icon svg {
    width: 65%;
    height: 65%;
}

.promo-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    font-family: 'Exo 2', sans-serif;
    letter-spacing: 0.01em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(224, 64, 253, 0.3);
    text-align: center;
    padding: 4px 15px;
    margin-bottom: 0;
}

.promo-card-description {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 1199px) {
    .promo-marquee-card {
        width: 360px;
        min-width: 360px;
    }

    .promo-card-thumbnail {
        width: 70px;
        height: 35px;
    }
}

@media (max-width: 991px) {
    .promo-marquee-section {
        padding: 30px 0;
    }

    .promo-marquee-track {
        gap: 15px;
    }

    .promo-marquee-card {
        width: 320px;
        min-width: 320px;
        gap: 12px;
    }

    .promo-card-thumbnail {
        width: 64px;
        height: 32px;
    }
/* 
    .promo-card-title {
        font-size: 18px;
        padding: 4px 4px;
    }

    .promo-card-description {
        font-size: 13px;
        padding: 4px 4px;
    } */
}

@media (max-width: 767px) {
    .promo-marquee-section {
        padding: 0;
    }

    .promo-marquee-track {
        gap: 12px;
        animation-duration: 50s;
    }

    .promo-marquee-card {
        width: 280px;
        min-width: 280px;
        gap: 10px;
        padding: 8px;
    }

    .promo-card-thumbnail {
        width: 58px;
        height: 29px;
    }

    /* .promo-card-title {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .promo-card-description {
        font-size: 12px;
    } */
}

@media (max-width: 575px) {
    .promo-marquee-card {
        width: 250px;
        min-width: 250px;
    }

    .promo-card-thumbnail {
        width: 52px;
        height: 26px;
    }

    /* .promo-card-title {
        font-size: 15px;
    }

    .promo-card-description {
        font-size: 11px;
    } */
}

/* Space Theme Promo Content */
.space-promo-content {
    position: relative;
    min-height: 600px;
    padding: 40px 20px;
}

/* Space Planet (Saturn-like) */
.space-planet {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, #d4a574, #8b6f47, #5a4a3a);
    border-radius: 50%;
    box-shadow:
        inset -30px -30px 0 rgba(0, 0, 0, 0.3),
        0 0 50px rgba(212, 165, 116, 0.5);
    z-index: 1;
    opacity: 0.7;
}

.space-planet::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 10px;
    background: linear-gradient(to right, transparent, rgba(212, 165, 116, 0.3), transparent);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.4);
}

/* Floating Dollar Bills */
.floating-dollars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.dollar-bill {
    position: absolute;
    font-size: 60px;
    font-weight: 900;
    color: #32cd32;
    text-shadow: 0 0 20px rgba(50, 205, 50, 0.8);
    animation: dollar-float 8s ease-in-out infinite;
}

.dollar-bill:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.dollar-bill:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.dollar-bill:nth-child(3) {
    top: 50%;
    left: 8%;
    animation-delay: 3s;
}

.dollar-bill:nth-child(4) {
    bottom: 20%;
    right: 12%;
    animation-delay: 4.5s;
}

.dollar-bill:nth-child(5) {
    top: 70%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes dollar-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-30px) rotate(15deg);
        opacity: 1;
    }
}

/* Space Promo Main Content */
.space-promo-main {
    position: relative;
    z-index: 3;
    text-align: center;
    margin-bottom: 60px;
}

/* 3D Glowing Text */
.space-promo-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.title-line {
    display: block;
    font-weight: 900;
    font-family: var(--casino-font-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.1;
    text-shadow:
        0 0 20px currentColor,
        0 0 40px currentColor,
        0 0 60px currentColor,
        3px 3px 0 rgba(0, 0, 0, 0.5),
        6px 6px 0 rgba(0, 0, 0, 0.3);
    transform: perspective(500px) rotateX(10deg);
}

.title-pink {
    font-size: 5rem;
    color: #ff69b4;
    animation: text-glow-pink 2s ease-in-out infinite;
}

.title-blue {
    font-size: 5.5rem;
    color: #87cefa;
    animation: text-glow-blue 2s ease-in-out infinite;
}

.title-blue-small {
    font-size: 2rem;
    color: #87cefa;
    font-weight: 700;
}

@keyframes text-glow-pink {

    0%,
    100% {
        text-shadow:
            0 0 20px #ff69b4,
            0 0 40px #ff69b4,
            0 0 60px #ff69b4,
            3px 3px 0 rgba(0, 0, 0, 0.5);
    }

    50% {
        text-shadow:
            0 0 30px #ff69b4,
            0 0 60px #ff69b4,
            0 0 90px #ff69b4,
            3px 3px 0 rgba(0, 0, 0, 0.5);
    }
}

@keyframes text-glow-blue {

    0%,
    100% {
        text-shadow:
            0 0 20px #87cefa,
            0 0 40px #87cefa,
            0 0 60px #87cefa,
            3px 3px 0 rgba(0, 0, 0, 0.5);
    }

    50% {
        text-shadow:
            0 0 30px #87cefa,
            0 0 60px #87cefa,
            0 0 90px #87cefa,
            3px 3px 0 rgba(0, 0, 0, 0.5);
    }
}

/* Pink CTA Button with Light Blue Border */
.space-cta-btn {
    display: inline-block;
    padding: 20px 60px;
    background: #ff69b4;
    border: 3px solid #87cefa;
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    box-shadow:
        0 0 30px rgba(255, 105, 180, 0.6),
        0 0 60px rgba(135, 206, 250, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 4;
    margin-top: 30px;
}

.space-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 0 40px rgba(255, 105, 180, 0.8),
        0 0 80px rgba(135, 206, 250, 0.6),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
    background: #ff1493;
}

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

.space-slider-dots::before {
    content: '';
    display: block;
}

/* Game Categories Wrapper */
.game-categories-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
}

.game-category {
    flex: 1;
    max-width: 45%;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Mobile Mockups */
.mobile-mockups {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.mobile-screen {
    width: 120px;
    height: 200px;
    background: #1a1a2e;
    border: 3px solid #333;
    border-radius: 15px;
    padding: 8px;
    box-shadow:
        0 0 20px rgba(0, 0, 0, 0.5),
        inset 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.screen-content {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Game Screen Styles */
.space-shooter {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 100%);
    background-image:
        radial-gradient(2px 2px at 30% 40%, #87cefa, transparent),
        radial-gradient(2px 2px at 70% 60%, #ff69b4, transparent);
}

.match-three {
    background: linear-gradient(135deg, #2d1b4e 0%, #4a2c7a 100%);
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.1) 10px, rgba(255, 255, 255, 0.1) 20px);
}

.bubble-shooter {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    background-image:
        radial-gradient(circle at 50% 50%, rgba(135, 206, 250, 0.3) 0%, transparent 70%);
}

.slot-game {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.05) 2px, rgba(255, 255, 255, 0.05) 4px);
}

.fish-game {
    background: linear-gradient(135deg, #0f3460 0%, #1a5490 100%);
    background-image:
        radial-gradient(ellipse at 50% 30%, rgba(135, 206, 250, 0.4) 0%, transparent 50%);
}

.roulette-game {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
    background-image:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.casual-game {
    background: linear-gradient(135deg, #2d1b4e 0%, #4a2c7a 100%);
    background-image:
        repeating-linear-gradient(30deg, transparent, transparent 8px, rgba(135, 206, 250, 0.1) 8px, rgba(135, 206, 250, 0.1) 16px);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .title-pink {
        font-size: 4rem;
    }

    .title-blue {
        font-size: 4.5rem;
    }

    .title-blue-small {
        font-size: 1.6rem;
    }

    .space-planet {
        width: 150px;
        height: 150px;
    }

    .mobile-screen {
        width: 100px;
        height: 170px;
    }
}

@media (max-width: 991px) {
    .game-categories-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .game-category {
        max-width: 100%;
    }

    .mobile-mockups {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .title-pink {
        font-size: 3rem;
    }

    .title-blue {
        font-size: 3.5rem;
    }

    .title-blue-small {
        font-size: 1.3rem;
    }

    .space-planet {
        width: 120px;
        height: 120px;
        top: 5%;
        right: 3%;
    }
}

@media (max-width: 767px) {
    .title-pink {
        font-size: 2rem;
    }

    .title-blue {
        font-size: 2.5rem;
    }

    .title-blue-small {
        font-size: 1rem;
    }

    .space-cta-btn {
        padding: 15px 40px;
        font-size: 1rem;
    }

    .mobile-screen {
        width: 80px;
        height: 140px;
    }

    .space-planet {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hero-promo-title {
        font-size: 3.5rem;
    }

    .hero-promo-amount {
        font-size: 4.5rem;
    }

    .hero-promo-icon {
        font-size: 80px;
    }
}

@media (max-width: 991px) {

    .hero-logo-slogan {
        margin-bottom: 40px;
    }

    .hero-logo img {
        max-width: 250px;
    }

    .hero-slogan {
        font-size: 2.2rem;
    }

    .hero-promo-title {
        font-size: 2.8rem;
    }

    .hero-promo-subtitle {
        font-size: 1.2rem;
    }

    .hero-promo-amount {
        font-size: 3.5rem;
    }

    .hero-promo-icon {
        font-size: 70px;
    }

    .hero-btn {
        padding: 15px 35px;
        font-size: 14px;
        min-width: 160px;
    }
}

@media (max-width: 767px) {
    .hero-logo-slogan {
        margin-bottom: 30px;
    }

    .hero-logo {
        margin-bottom: 20px;
    }

    .hero-logo img {
        max-width: 200px;
    }

    .hero-slogan {
        font-size: 1.5rem;
        margin-top: 15px;
    }

    .hero-promo-title {
        font-size: 2rem;
    }

    .hero-promo-subtitle {
        font-size: 1rem;
    }

    .hero-promo-amount {
        font-size: 2.5rem;
    }

    .hero-promo-icon {
        font-size: 60px;
    }

    .hero-promo-actions {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
    }

    .floating-card,
    .floating-dice {
        font-size: 40px;
    }

    .floating-chip {
        width: 35px;
        height: 35px;
    }
}

.banner-section {
    padding: 120px 0 60px;
    position: relative;
    margin-top: 0;
    background-color: var(--casino-bg-primary) !important;
    animation: banner-glow 6s ease-in-out infinite alternate;
}

@media (max-width: 1399px) {
    .banner-section {
        padding: 170px 0px 50px;
    }
}

@media (max-width: 991px) {
    .banner-section {
        padding: 200px 0px 50px;
    }
}

.banner-section::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--casino-bg-overlay);
    opacity: 0.75;
    z-index: 0;
}

.banner-section::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(224, 64, 253, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(140, 89, 252, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.banner-section .container {
    position: relative;
    z-index: 1;
}

/* Casino-style floating chips in promo cards */
.coin-decoration {
    animation: casino-chip-float 4s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);
}

/* Glowing orbs hovering over game cards */
.game-item .ball {
    animation: casino-orb-pulse 3.5s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);
}

/* Live winners layout */
.live-winners-slider {
    display: inline-flex;
    gap: 24px;
}

/* Keyframes for casino-style floating effects */
@keyframes casino-chip-float {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(0, -10px, 0) scale(1.05);
    }

    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes casino-orb-pulse {
    0% {
        transform: translate3d(0, 10px, 0) scale(0.8);
    }

    50% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(0, 10px, 0) scale(0.8);
    }
}


.banner-content {
    max-width: 100%;
    position: relative;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.banner-content__title .text--base {
    animation: casino-title-glow 1.8s ease-in-out infinite;
    will-change: text-shadow;
}

.banner-thumb img {
    width: auto;
    height: auto;
    object-fit: contain;
    animation: banner-thumb-float 4s ease-in-out infinite;
    max-width: unset;
    will-change: transform;
    transform: translateZ(0);
}

@keyframes banner-glow {
    0% {
        box-shadow: 0 0 0 rgba(224, 64, 253, 0.0);
        background-color: var(--casino-bg-primary);
    }

    50% {
        box-shadow: 0 0 60px rgba(224, 64, 253, 0.45);
        background-color: #160661;
    }

    100% {
        box-shadow: 0 0 30px rgba(224, 64, 253, 0.3);
        background-color: var(--casino-bg-primary);
    }
}

@keyframes banner-thumb-float {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(0, -10px, 0) rotate(-3deg);
    }

    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
}

@keyframes casino-title-glow {
    0% {
        text-shadow: 0 0 10px rgba(224, 64, 253, 0.6),
            0 0 20px rgba(140, 89, 252, 0.6);
    }

    50% {
        text-shadow: 0 0 18px rgba(224, 64, 253, 0.9),
            0 0 30px rgba(140, 89, 252, 0.9);
    }

    100% {
        text-shadow: 0 0 10px rgba(224, 64, 253, 0.6),
            0 0 20px rgba(140, 89, 252, 0.6);
    }
}

@media (max-width: 1399px) {
    .banner-content {
        max-width: 650px;
    }
}

@media (max-width: 1199px) {
    .banner-content {
        max-width: 550px;
    }
}

@media (max-width: 991px) {
    .banner-content {
        max-width: 100%;
        text-align: center;
    }
}

.banner-content .shape1 {
    position: absolute;
    top: -100px;
    left: -150px;
    max-width: 250px;
    opacity: .25;
    z-index: -1;
    animation: casino-card-spin 6s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);
}

@keyframes casino-card-spin {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform: translate3d(10px, -10px, 0) rotate(-5deg) scale(1.03);
    }

    50% {
        transform: translate3d(0, -6px, 0) rotate(0deg) scale(1.05);
    }

    75% {
        transform: translate3d(-8px, -10px, 0) rotate(5deg) scale(1.03);
    }

    100% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }
}

.banner-content__title {
    margin-bottom: 15px;
}

@media (max-width: 1399px) {
    .banner-content__title {
        font-size: 62px;
    }
}

@media (max-width: 1199px) {
    .banner-content__title {
        font-size: 56px;
    }
}

@media (max-width: 767px) {
    .banner-content__title {
        font-size: 46px;
    }
}

@media (max-width: 450px) {
    .banner-content__title {
        font-size: 32px;
    }
}

.banner-content__title span {
    text-shadow: 3px -4px 8px rgba(255, 200, 39, 0.3);
}

.banner-content__subtitle {
    font-size: 22px;
    max-width: 550px;
}

@media (max-width: 1199px) {
    .banner-content__subtitle {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .banner-content__subtitle {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .banner-content__subtitle {
        font-size: 20px;
    }
}

@media (max-width: 450px) {
    .banner-content__subtitle {
        font-size: 18px;
    }
}

.banner-content .button-wrapper {
    margin: -5px -10px;
    margin-top: 50px;
}

@media (max-width: 767px) {
    .banner-content .button-wrapper {
        margin-top: 40px;
    }
}

.banner-content .button-wrapper .cmn--btn {
    margin: 5px 10px;
}

.banner-content .button-wrapper .cmn--btn i {
    font-size: 22px;
    line-height: 1;
    transform: translateY(2px);
}

.banner-thumb {
    max-width: 400px;
}

@media (max-width: 1399px) {
    .banner-thumb {
        max-height: 600px;
    }
}

@media (max-width: 1199px) {
    .banner-thumb {
        max-width: 300px;
    }
}

@media (max-width: 991px) {
    .banner-thumb {
        max-width: 100%;
        margin-top: 50px;
    }

    .banner-thumb img {
        width: 100%;
    }
}

@media (max-width: 450px) {
    .banner-thumb {
        margin-top: 30px;
    }
}

.inner-banner {
    padding: 80px 0 50px;
    position: relative;
}

@media (max-width: 1199px) {
    .inner-banner {
        padding-top: 70px;
    }
}

@media (max-width: 991px) {
    .inner-banner {
        padding-top: 60px;
        padding-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .inner-banner {
        padding-top: 50px;
        padding-bottom: 30px;
    }
}

.inner-banner::before {
    opacity: .75 !important;
}

.inner-banner .container {
    position: relative;
}

.breadcrumbs {
    margin: 0;
    font-size: 18px;
    font-weight: 300;
}

.breadcrumbs li {
    padding: 3px 10px;
}

.breadcrumbs li a {
    position: relative;
    padding-right: 35px;
}

.breadcrumbs li a::before {
    position: absolute;
    font-weight: 900;
    font-size: 16px;
    font-family: "Font Awesome 5 Free";
    content: '\f30b';
    font-size: 18px;
    right: 0;
    top: 2px;
    color: #fff;
}

.table--responsive--md {
    overflow-x: scroll;
}

@media (max-width: 767px) {
    .table--responsive--md thead {
        display: none;
    }

    .table--responsive--md tbody tr {
        display: block;
    }

    .table--responsive--md tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    }
}

@media (max-width: 767px) and (max-width: 991px) {
    .table--responsive--md tbody tr td {
        font-size: 14px !important;
    }
}

@media (max-width: 767px) {
    .table--responsive--md tbody tr td:last-child {
        border: none;
    }

    .table--responsive--md tbody tr td::before {
        content: attr(data-label);
        font-family: var(--casino-font-primary);
        font-size: 16px;
        color: #fff;
        font-weight: 500;
    }
}

@media (max-width: 767px) and (max-width: 575px) {
    .table--responsive--md tbody tr td::before {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .table--responsive--lg thead {
        display: none;
    }

    .table--responsive--lg tbody tr {
        display: block;
    }

    .table--responsive--lg tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    }
}

@media (max-width: 991px) and (max-width: 991px) {
    .table--responsive--lg tbody tr td {
        font-size: 14px !important;
    }
}

@media (max-width: 991px) {
    .table--responsive--lg tbody tr td:last-child {
        border: none;
    }

    .table--responsive--lg tbody tr td::before {
        content: attr(data-label);
        font-family: var(--casino-font-primary);
        font-size: 16px;
        color: #fff;
        font-weight: 500;
    }
}

@media (max-width: 991px) and (max-width: 575px) {
    .table--responsive--lg tbody tr td::before {
        font-size: 15px;
    }
}

@media (max-width: 1199px) {
    .table--responsive--xl thead {
        display: none;
    }

    .table--responsive--xl tbody tr {
        display: block;
    }

    .table--responsive--xl tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    }
}

@media (max-width: 1199px) and (max-width: 991px) {
    .table--responsive--xl tbody tr td {
        font-size: 14px !important;
    }
}

@media (max-width: 1199px) {
    .table--responsive--xl tbody tr td:last-child {
        border: none;
    }

    .table--responsive--xl tbody tr td::before {
        content: attr(data-label);
        font-family: var(--casino-font-primary);
        font-size: 16px;
        color: #fff;
        font-weight: 500;
    }
}

@media (max-width: 1199px) and (max-width: 575px) {
    .table--responsive--xl tbody tr td::before {
        font-size: 15px;
    }
}

.table {
    margin: 0;
    border: none;
    width: 100%;
    border-collapse: collapse;
}

.table thead tr th {
    padding: 10px 15px;
    font-family: var(--casino-font-primary);
    color: #fff;
    border: none !important;
    font-size: 15px;
    font-weight: 500;
    width: fit-content;
    /* border: 1px solid rgba(255, 255, 255, 0.17); */
}

.table tbody {
    font-size: 15px;
}

.table tbody tr:nth-child(odd) {
    background: var(--casino-bg-card) !important;
}

.table tbody tr td {
    color: #fff;
    vertical-align: middle;
    padding: 10px 15px;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.17);
}

.custom--card {
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 5px;
    background: var(--casino-bg-card);
}

.custom--card .card--header,
.custom--card .card--footer {
    background: var(--casino-bg-card);
    color: #1f1f23;
    text-align: center;
}

.custom--card .card--header .card-title,
.custom--card .card--footer .card-title {
    color: #fff;
    margin: 0;
}

.custom--card.card--primary .card--header,
.custom--card.card--primary .card--footer {
    background: #ff5201;
}

.custom--card.card--base .card--header,
.custom--card.card--base .card--footer {
    background: #FFC827;
}

.custom--card .card--header,
.custom--card .card--footer {
    padding: 15px 25px;
    border-color: rgba(255, 255, 255, 0.17) !important;
}

@media (max-width: 575px) {

    .custom--card .card--header,
    .custom--card .card--footer {
        padding: 10px 20px;
    }
}

@media (max-width: 575px) {

    .custom--card .card--header,
    .custom--card .card--footer {
        padding: 8px 15px;
    }
}

.custom--card .card--body {
    padding: 25px;
}

@media (max-width: 575px) {
    .custom--card .card--body {
        padding: 20px;
    }
}

@media (max-width: 450px) {
    .custom--card .card--body {
        padding: 15px;
    }
}

.custom--card.card--lg .card--header,
.custom--card.card--lg .card--footer {
    padding: 20px 35px;
}

@media (max-width: 767px) {

    .custom--card.card--lg .card--header,
    .custom--card.card--lg .card--footer {
        padding: 15px 25px;
    }
}

@media (max-width: 575px) {

    .custom--card.card--lg .card--header,
    .custom--card.card--lg .card--footer {
        padding: 10px 20px;
    }
}

@media (max-width: 450px) {

    .custom--card.card--lg .card--header,
    .custom--card.card--lg .card--footer {
        padding: 8px 15px;
    }
}

.custom--card.card--lg .card--body {
    padding: 35px;
}

@media (max-width: 767px) {
    .custom--card.card--lg .card--body {
        padding: 25px;
    }
}

@media (max-width: 575px) {
    .custom--card.card--lg .card--body {
        padding: 20px;
    }
}

@media (max-width: 450px) {
    .custom--card.card--lg .card--body {
        padding: 15px;
    }
}

.custom--card.card--md .card--header,
.custom--card.card--md .card--footer {
    padding: 10px 20px;
}

.custom--card.card--md .card--body {
    padding: 20px 20px;
}

.badge {
    padding: 5px 12px;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}

.badge:hover {
    color: #fff;
}

.badge.badge--sm {
    padding: 3px 10px;
    font-size: 12px;
}

.badge.badge--xs {
    padding: 2px 8px;
    font-size: 11px;
}

.badge.badge--lg {
    padding: 7px 15px;
    font-size: 15px;
}

.badge.badge--cap {
    border-radius: 15px;
    padding: 5px 15px;
}

.badge.badge--round {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 7px;
    line-height: 0.75;
    font-size: 14px;
    font-weight: 500;
}

.custom--modal .modal--footer,
.custom--modal .modal--body,
.custom--modal .modal--header {
    border-color: rgba(255, 255, 255, 0.17);
    background: var(--casino-bg-card);
    border-color: rgba(255, 255, 255, 0.17) !important;
}

.custom--modal .modal--footer .modal-title,
.custom--modal .modal--header .modal-title {
    margin: 0;
    color: #fff;
}

.custom--modal .modal--footer .btn-close,
.custom--modal .modal--header .btn-close {
    background: transparent;
    font-size: 20px;
    line-height: 1;
    color: #EA5455;
    opacity: 1;
}

.custom--modal .modal-content {
    border: none;
    color: #fff;
    background: var(--casino-bg-card);
}

.footer-section {
    position: relative;
    background-color: var(--casino-bg-primary);
}

/* Payment Methods & Age Restriction Section */
.footer-payment-section {
    background: linear-gradient(90deg, var(--casino-accent-2-light) 0%, var(--casino-primary-light) 100%);
    padding: 20px 0;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-method-item {
    background: var(--casino-text-primary);
    border-radius: 8px;
    padding: 10px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.payment-logo {
    font-size: 14px;
    font-weight: 700;
    color: var(--casino-bg-primary);
    text-align: center;
}

.payment-logo.mastercard {
    color: #eb001b;
}

.payment-logo.skrill {
    color: var(--casino-accent-3);
}

.payment-logo.paysafecard {
    color: #d32f2f;
}

.age-restriction {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.age-text {
    font-size: 14px;
    color: var(--casino-bg-dark);
    font-weight: 500;
}

.age-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--casino-bg-dark);
    color: var(--casino-text-primary);
    font-weight: 700;
    font-size: 16px;
}

/* Main Footer Content */
.footer-main {
    background-color: var(--casino-bg-primary);
    background-image:
        radial-gradient(circle at 20% 30%, rgba(224, 64, 253, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(140, 89, 252, 0.1) 0%, transparent 50%);
    padding: 50px 0;
    position: relative;
}

.footer-left {
    color: var(--casino-text-primary);
}

.footer-left p {
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.6;
}

.copyright-text {
    font-size: 14px !important;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--casino-text-primary) !important;
    margin-bottom: 0 !important;
}

.rights-text {
    font-size: 12px;
    color: var(--casino-text-muted);
}

.license-text {
    font-size: 11px;
    color: var(--casino-text-muted);
}

.license-link {
    color: var(--casino-text-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.license-link:hover {
    color: var(--casino-primary-light);
}

.eligibility-text {
    font-size: 12px;
    color: var(--casino-text-muted);
}

.terms-note {
    font-size: 11px;
    color: var(--casino-text-muted);
    font-style: italic;
}

.responsible-gambling {
    font-size: 12px;
    color: var(--casino-text-muted);
}

.responsible-link {
    color: var(--casino-text-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.responsible-link:hover {
    color: var(--casino-primary-light);
}

.footer-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-logo a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-logo a:hover {
    opacity: 0.8;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.footer-policies {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-policy-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.footer-policy-links li {
    margin: 0;
    padding: 0;
}

.footer-policy-links li a {
    color: var(--casino-text-primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-policy-links li a:hover {
    color: var(--casino-primary-light);
}

/* Footer Social Media */
.footer-social {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-social-title {
    color: var(--casino-text-primary);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.footer-social-links li {
    margin: 0;
}

.footer-social-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--casino-text-primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-social-links li a i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.footer-social-links li a:hover {
    color: #fff;
    background: rgba(224, 64, 253, 0.2);
    border-color: rgba(224, 64, 253, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 64, 253, 0.3);
}

.footer-social-links li a:hover i {
    transform: scale(1.2);
}

/* Social Media Specific Colors */
.footer-social-links li a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
    box-shadow: 0 4px 12px rgba(188, 24, 136, 0.4);
}

.footer-social-links li a[aria-label="X (Twitter)"]:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.footer-social-links li a[aria-label="Facebook"]:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.footer-social-links li a[aria-label="YouTube"]:hover {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

.footer-right {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footer-nav-links {
    list-style: none;
    padding: 0;
    text-align: right;
    display: flex;
    gap: 10px;
}

.footer-nav-links li {
    margin-bottom: 8px;
}

.footer-nav-links li a {
    color: var(--casino-text-primary);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.footer-nav-links li a:hover {
    color: var(--casino-primary-light);
}

.footer-nav-links li a i {
    font-size: 12px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--casino-bg-dark);
    color: var(--casino-text-primary);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--casino-bg-secondary);
    transform: translateY(-2px);
    color: var(--casino-primary-light);
}

.social-icon i {
    font-size: 18px;
}

/* Disclaimer Section */
.footer-disclaimer {
    background: var(--casino-bg-card);
    padding: 15px 0;
    border-top: 1px solid var(--casino-border-light);
}

.disclaimer-content {
    text-align: center;
}

.disclaimer-text {
    font-size: 11px;
    color: var(--casino-text-muted);
    line-height: 1.8;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-text strong {
    color: var(--casino-text-primary);
    font-weight: 600;
}

.disclaimer-link {
    color: var(--casino-primary-light);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.disclaimer-link:hover {
    color: var(--casino-primary);
}

@media (max-width: 767px) {

    /* Footer Main - Reduce Padding */
    .footer-main {
        padding: 30px 0;
    }

    .footer-content-wrapper {
        gap: 20px;
    }

    .footer-logo {
        margin-bottom: 5px;
    }

    .footer-logo img {
        width: 120px;
        height: auto;
    }

    .footer-policy-links {
        gap: 12px;
        flex-wrap: wrap;
    }

    .footer-policy-links li a {
        font-size: 12px;
    }

    .footer-disclaimer {
        padding: 15px 0;
    }

    .disclaimer-text {
        font-size: 10px;
        padding: 0 15px;
    }

    /* Footer Social Media Responsive */
    .footer-social {
        gap: 10px;
    }

    .footer-social-title {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .footer-social-links {
        gap: 8px;
    }

    .footer-social-links li a {
        padding: 8px 12px;
        font-size: 12px;
        gap: 6px;
    }

    .footer-social-links li a i {
        font-size: 14px;
    }
}

@media (max-width: 575px) {

    /* Footer Main - Even More Compact */
    .footer-main {
        padding: 25px 0;
    }

    .footer-content-wrapper {
        gap: 15px;
    }

    .footer-logo img {
        width: 100px;
    }

    .footer-policy-links {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }

    .footer-policy-links li a {
        font-size: 11px;
    }

    .footer-disclaimer {
        padding: 12px 0;
    }

    .copyright-text {
        font-size: 11px !important;
    }

    /* Footer Social Media - Compact */
    .footer-social {
        gap: 8px;
        width: 100%;
    }

    .footer-social-title {
        font-size: 12px;
        margin-bottom: 0;
    }

    .footer-social-links {
        flex-direction: column;
        width: 100%;
        gap: 6px;
    }

    .footer-social-links li {
        width: 100%;
    }

    .footer-social-links li a {
        width: 100%;
        justify-content: center;
        padding: 8px 14px;
        font-size: 12px;
        gap: 6px;
    }

    .footer-social-links li a i {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .footer-payment-section .row {
        text-align: center;
    }

    .payment-methods {
        justify-content: center;
        margin-bottom: 15px;
    }

    .age-restriction {
        justify-content: center;
    }

    .footer-content-wrapper {
        gap: 25px;
    }

    .footer-policy-links {
        gap: 15px;
    }

    .footer-right {
        align-items: flex-start;
        margin-top: 30px;
    }

    .footer-nav-links {
        text-align: left;
        margin-bottom: 20px;
    }

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

    /* Section header titles - tablet */
    .section-header__title {
        font-size: 22px !important;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 40px 0;
    }

    .footer-content-wrapper {
        gap: 15px;
    }

    .footer-logo {
        margin-bottom: 5px;
    }

    .footer-logo img {
        width: 120px;
        height: auto;
    }

    .footer-policy-links {
        flex-direction: column;
        gap: 12px;
    }

    .footer-policy-links li a {
        font-size: 13px;
    }

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

    .copyright-text {
        font-size: 14px !important;
    }

    /* Footer menu spacing on mobile */
    .footer-nav-links {
        margin-bottom: 15px;
    }

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

    .footer-nav-links li a {
        font-size: 12px;
        padding: 8px 0;
    }

}

.pagination {
    margin: 0;
    margin-top: 55px;
    justify-content: center;
}

@media (max-width: 575px) {
    .pagination {
        margin-top: 30px;
    }
}

.pagination .page-item {
    text-align: center;
    padding: 3px;
}

.pagination .page-item a,
.pagination .page-item span {
    font-weight: 600;
    width: 45px;
    height: 45px;
    color: #FFC827;
    line-height: 45px;
    padding: 0;
    border-radius: 50% !important;
    border-color: rgba(255, 200, 39, 0.1);
    background: var(--casino-bg-card);
    box-shadow: none;
    outline: 0;
}

.pagination .page-item span {
    border: none;
}

.pagination .page-item.active span,
.pagination .page-item.active a,
.pagination .page-item:hover span,
.pagination .page-item:hover a {
    background: #FFC827;
    color: #1f1f23;
    border-color: #ffc827;
}

.pagination .page-item.disabled {
    cursor: no-drop !important;
}

.pagination .page-item.disabled span,
.pagination .page-item.disabled a {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
}

.account-section {
    min-height: auto;
    overflow-y: auto;
    background: var(--casino-bg-primary);
}

.account__main__wrapper {
    display: flex;
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (max-width: 991px) {
    .account__main__wrapper {
        flex-wrap: wrap;
    }
}

.account__form__wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 50px 40px;
    border-radius: 20px;
    overflow-y: auto;
    position: relative;
    background: var(--casino-bg-card);
    border: 2px solid var(--casino-border-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(224, 64, 253, 0.1);
    transition: all 0.3s ease;
}

.account__form__wrapper:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(224, 64, 253, 0.2);
    border-color: var(--casino-primary);
}

@media (max-width: 767px) {
    .account__form__wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 575px) {
    .account__form__wrapper {
        padding: 35px 25px;
    }
}

@media (max-width: 450px) {
    .account__form__wrapper {
        padding: 30px 20px;
    }
}

.account-form-header {
    margin-bottom: 30px;
}

.account-form-header .logo {
    margin-bottom: 25px;
    position: relative;
}

.account-form-header .logo img {
    max-width: 180px;
    height: auto;
}

.account-form-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--casino-text-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.account-form-subtitle {
    font-size: 16px;
    color: var(--casino-text-secondary);
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .account-form-title {
        font-size: 26px;
    }

    .account-form-subtitle {
        font-size: 14px;
    }
}

.account__form__wrapper.sign-up {
    padding: 50px 50px;
    max-width: 100%;
    width: 100%;
}

@media (max-width: 1199px) {
    .account__form__wrapper.sign-up {
        padding: 45px 40px;
    }
}

@media (max-width: 767px) {
    .account__form__wrapper.sign-up {
        padding: 40px 30px;
    }
}

@media (max-width: 575px) {
    .account__form__wrapper.sign-up {
        padding: 35px 25px;
    }
}

@media (max-width: 450px) {
    .account__form__wrapper.sign-up {
        padding: 30px 20px;
    }
}

.account__form {
    position: relative;
    text-align: left;
}

.account__form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--casino-text-primary);
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.input-wrapper {
    position: relative;
}

.account__form .input-wrapper {
    position: relative;
}

.account__form .cmn--btn,
.account__form .btn {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.account-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.account-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 64, 253, 0.4);
}

.account-submit-btn i {
    transition: transform 0.3s ease;
}

.account-submit-btn:hover i {
    transform: translateX(5px);
}

.account__form .forgot-pass {
    cursor: pointer;
    font-size: 14px;
    color: var(--casino-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.account__form .forgot-pass:hover {
    color: var(--casino-accent-2);
    text-decoration: underline;
}

.account-switch {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--casino-border-light);
}

.account-switch p {
    color: var(--casino-text-secondary);
    font-size: 14px;
}

.account-switch a {
    color: var(--casino-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.account-switch a:hover {
    color: var(--casino-accent-2);
    text-decoration: underline;
}

.form--control.style--two {
    padding-left: 65px;
    background: var(--casino-bg-dark);
    border: 2px solid var(--casino-border-light);
    color: var(--casino-text-primary);
    font-size: 15px;
    transition: all 0.3s ease;
    height: 55px;
}

.form--control.style--two:focus {
    background: var(--casino-bg-dark);
    border-color: var(--casino-primary);
    color: var(--casino-text-primary);
    box-shadow: 0 0 0 3px rgba(224, 64, 253, 0.1);
    outline: none;
}

.form--control.style--two::placeholder {
    color: var(--casino-text-muted);
}

select.form--control {
    color: var(--casino-text-primary);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e040fd' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

select.form--control.style--two {
    padding-left: 65px;
    padding-right: 40px;
}

select.form--control option {
    color: var(--casino-text-primary);
    background: var(--casino-bg-card);
    padding: 10px;
}

select.form--control option:hover {
    background: var(--casino-bg-dark);
}

.input-group-text {
    border-color: var(--casino-border-light);
    background: var(--casino-bg-dark);
    border-right: none;
    color: var(--casino-primary);
    font-weight: 600;
    padding: 0 20px;
    border: 2px solid var(--casino-border-light);
    border-right: none;
}

.input-group-text.style--two {
    position: relative;
    border-radius: 8px 0 0 8px;
}

.input-group-text.style--two::before {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: var(--casino-bg-dark);
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    clip-path: polygon(0 0, 0 100%, 42% 50%);
    z-index: 2;
}

.input-group .form--control {
    padding-left: 20px;
    border-left: none;
    border-radius: 0 8px 8px 0;
}

.input-group .form--control.style--two {
    border-left: 0;
    border: 2px solid var(--casino-border-light);
    border-left: none;
}

.input-group .form--control.style--two:focus {
    border-color: var(--casino-primary);
    border-left: none;
}

.form-group {
    position: relative;
    margin-bottom: 0;
}

.form-group .form-label {
    margin-bottom: 8px;
    display: block;
}

.form-group .input-wrapper {
    margin-top: 0;
}

.input-pre-icon {
    position: absolute;
    left: 2px;
    top: 2px;
    bottom: 2px;
    width: 50px;
    border-radius: 8px 0 0 8px;
    color: var(--casino-primary);
    padding: 0;
    background: var(--casino-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border-right: 1px solid var(--casino-border-light);
    pointer-events: none;
}

.input-pre-icon i {
    font-size: 18px;
}

.input-pre-icon::before {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: var(--casino-bg-dark);
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    clip-path: polygon(0 0, 0 100%, 42% 50%);
    z-index: 2;
}

.contact-section {
    background: var(--casino-bg-primary);
}

.contact-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--casino-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.contact-section-subtitle {
    font-size: 15px;
    color: var(--casino-text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-info-wrapper {
    padding: 40px;
    background: var(--casino-bg-card);
    border: 2px solid var(--casino-border-light);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-wrapper:hover {
    border-color: var(--casino-primary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(224, 64, 253, 0.2);
}

@media (max-width: 991px) {
    .contact-info-wrapper {
        margin-bottom: 30px;
        height: auto;
    }
}

@media (max-width: 767px) {
    .contact-info-wrapper {
        padding: 30px 25px;
    }
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    padding: 0;
    margin-bottom: 25px;
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--casino-bg-dark);
    border: 2px solid var(--casino-border-light);
    border-radius: 12px;
    color: var(--casino-primary);
    font-size: 22px;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    background: var(--casino-primary);
    color: var(--casino-text-primary);
    border-color: var(--casino-primary);
    transform: scale(1.1);
}

.contact-info-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--casino-text-primary);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-content p {
    font-size: 14px;
    color: var(--casino-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.contact-info-content a {
    color: var(--casino-text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--casino-primary);
}

.contact-social-links h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--casino-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.contact-social-links .social-links {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-social-links .social-links li a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--casino-bg-dark);
    border: 2px solid var(--casino-border-light);
    border-radius: 10px;
    color: var(--casino-text-secondary);
    font-size: 20px;
    transition: all 0.3s ease;
}

.contact-social-links .social-links li a:hover {
    background: var(--casino-primary);
    border-color: var(--casino-primary);
    color: var(--casino-text-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(224, 64, 253, 0.4);
}

.contact-form-wrapper {
    padding: 40px;
    background: var(--casino-bg-card);
    border: 2px solid var(--casino-border-light);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    border-color: var(--casino-primary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(224, 64, 253, 0.2);
}

@media (max-width: 767px) {
    .contact-form-wrapper {
        padding: 30px 25px;
    }
}

.contact-form {
    position: relative;
}

.contact-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--casino-text-primary);
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.contact-form .form--control {
    height: 55px;
    border: 2px solid var(--casino-border-light);
    background: var(--casino-bg-dark);
    color: var(--casino-text-primary);
    font-size: 15px;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .form--control:focus {
    border-color: var(--casino-primary);
    background: var(--casino-bg-dark);
    color: var(--casino-text-primary);
    box-shadow: 0 0 0 3px rgba(224, 64, 253, 0.1);
    outline: none;
}

.contact-form textarea.form--control {
    height: auto;
    min-height: 150px;
    resize: vertical;
    padding-top: 15px;
}

.contact-form .cmn--btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-form .cmn--btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 64, 253, 0.4);
}

.contact-form .cmn--btn i {
    transition: transform 0.3s ease;
}

.contact-form .cmn--btn:hover i {
    transform: translateX(5px);
}

.dashboard-section {
    background: var(--casino-bg-primary);
}

.dashboard__card {
    background: var(--casino-bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid var(--casino-border-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dashboard__card:hover {
    border-color: var(--casino-primary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(224, 64, 253, 0.2);
    transform: translateY(-5px);
}

.dashboard__card--balance {
    border-color: var(--casino-primary);
}

.dashboard__card--balance:hover {
    box-shadow: 0 12px 40px rgba(224, 64, 253, 0.4), 0 0 0 1px rgba(224, 64, 253, 0.3);
}

.dashboard__card--deposit {
    border-color: var(--casino-accent-2);
}

.dashboard__card--deposit:hover {
    box-shadow: 0 12px 40px rgba(140, 89, 252, 0.4), 0 0 0 1px rgba(140, 89, 252, 0.3);
}

.dashboard__card--withdraw {
    border-color: var(--casino-accent-3);
}

.dashboard__card--withdraw:hover {
    box-shadow: 0 12px 40px rgba(179, 29, 163, 0.4), 0 0 0 1px rgba(179, 29, 163, 0.3);
}

@media (max-width: 1399px) and (min-width: 1200px) {
    .dashboard__card {
        padding: 25px;
    }
}

.dashboard__card-content {
    position: relative;
    z-index: 1;
}

.dashboard__card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.dashboard__card--balance .dashboard__card-icon {
    background: linear-gradient(135deg, var(--casino-primary), var(--casino-accent-2));
    color: var(--casino-text-primary);
}

.dashboard__card--deposit .dashboard__card-icon {
    background: linear-gradient(135deg, var(--casino-accent-2), var(--casino-accent-3));
    color: var(--casino-text-primary);
}

.dashboard__card--withdraw .dashboard__card-icon {
    background: linear-gradient(135deg, var(--casino-accent-3), var(--casino-primary));
    color: var(--casino-text-primary);
}

.dashboard__card:hover .dashboard__card-icon {
    transform: scale(1.1) rotate(5deg);
}

.dashboard__card-content .price {
    font-family: var(--casino-font-body);
    font-size: 36px;
    font-weight: 700;
    color: var(--casino-text-primary);
    margin-bottom: 8px;
    line-height: 1.2;
}

@media (max-width: 1399px) {
    .dashboard__card-content .price {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .dashboard__card-content .price {
        font-size: 28px;
    }
}

.dashboard__card-content .info {
    color: var(--casino-text-secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.dashboard__card .view-btn {
    margin-top: auto;
    padding: 10px 20px;
    border-radius: 8px;
    color: var(--casino-text-primary);
    background: var(--casino-bg-dark);
    border: 2px solid var(--casino-border-light);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard__card .view-btn:hover {
    background: var(--casino-primary);
    border-color: var(--casino-primary);
    color: var(--casino-text-primary);
    transform: translateX(5px);
}

.dashboard__card--balance .view-btn:hover {
    background: var(--casino-primary);
    border-color: var(--casino-primary);
}

.dashboard__card--deposit .view-btn:hover {
    background: var(--casino-accent-2);
    border-color: var(--casino-accent-2);
}

.dashboard__card--withdraw .view-btn:hover {
    background: var(--casino-accent-3);
    border-color: var(--casino-accent-3);
}

.method-card {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 10px;
    background: var(--casino-bg-card);
}

.method-card-info {
    font-size: 14px;
    margin: 0;
}

.method-card-info li {
    padding: 5px 0;
}

.deposit-group {
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.deposit-group .title {
    font-size: 17px;
    font-weight: 500;
}

.custom--card {
    border-radius: 10px;
    overflow: hidden;
}

.profile-section {
    background: var(--casino-bg-primary);
}

.profile-card {
    background: var(--casino-bg-card);
    border: 2px solid var(--casino-border-light);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.profile-card:hover {
    border-color: var(--casino-primary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(224, 64, 253, 0.2);
}

/* Diamond-only premium profile card */
.profile-card--diamond {
    position: relative;
    border-width: 3px;
    border-style: solid;
    border-color: rgba(56, 189, 248, 0.9);
    box-shadow:
        0 0 0 2px rgba(56, 189, 248, 0.6),
        0 0 32px rgba(56, 189, 248, 0.4),
        0 18px 50px rgba(15, 23, 42, 0.95);
    background: radial-gradient(circle at top, rgba(56, 189, 248, 0.16), transparent 60%),
                radial-gradient(circle at bottom, rgba(129, 140, 248, 0.16), transparent 55%),
                var(--casino-bg-card);
}

.profile-card--diamond::before {
    content: "DIAMOND VIP";
    position: absolute;
    top: 14px;
    right: 22px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #22d3ee, #a855f7);
    color: #020617;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.7);
}

/* Diamond profile: blue neon text + circle shine */
.profile-card--diamond .profile-thumb-wrapper .thumb {
    border-color: #38bdf8;
    box-shadow:
        0 0 0 2px rgba(56, 189, 248, 0.7),
        0 0 24px rgba(56, 189, 248, 0.85),
        0 12px 36px rgba(15, 23, 42, 0.95);
}

.profile-card--diamond .profile__info .name {
    color: #e0f2fe;
    text-shadow:
        0 0 6px rgba(56, 189, 248, 0.9),
        0 0 18px rgba(56, 189, 248, 0.8);
}

.profile-card--diamond .profile__info .username {
    color: #93c5fd;
    text-shadow: 0 0 8px rgba(56, 189, 248, 0.7);
}

.profile-thumb-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.profile-thumb-wrapper .thumb {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--casino-primary);
    box-shadow: 0 4px 20px rgba(224, 64, 253, 0.3);
    transition: all 0.3s ease;
}

/* Tier-based profile avatar frames (subtle for non-final tiers) */
.profile-thumb-wrapper--bronze .thumb {
    border-color: #b45309;
    box-shadow: 0 4px 20px rgba(180, 83, 9, 0.35);
}

.profile-thumb-wrapper--silver .thumb {
    border-color: #9ca3af;
    box-shadow: 0 4px 20px rgba(148, 163, 184, 0.4);
}

.profile-thumb-wrapper--gold .thumb {
    border-color: #facc15;
    box-shadow: 0 4px 22px rgba(250, 204, 21, 0.45);
}

/* Final tier: VIP glow frame (more distinct, still not overdone) */
.profile-thumb-wrapper--diamond {
    position: relative;
}

.profile-thumb-wrapper--diamond::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0, rgba(56, 189, 248, 0.45), transparent 55%),
                radial-gradient(circle at 70% 100%, rgba(244, 114, 182, 0.45), transparent 55%);
    opacity: 0.75;
    filter: blur(1.5px);
    z-index: -1;
}

.profile-thumb-wrapper--diamond .thumb {
    border-color: #22d3ee;
    box-shadow:
        0 0 0 2px rgba(56, 189, 248, 0.55),
        0 0 20px rgba(56, 189, 248, 0.7),
        0 10px 30px rgba(15, 23, 42, 0.85);
}

.profile-thumb-wrapper:hover .thumb {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(224, 64, 253, 0.5);
}

.profile-thumb-wrapper .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tier badge at bottom-right of profile image */
.profile-thumb-wrapper .user-tier-badge-img,
.user-thumb--with-tier .user-tier-badge-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
    border-radius: 50%;
    border: 2px solid var(--casino-bg-card);
    background: var(--casino-bg-card);
    z-index: 2;
}

.user-thumb--with-tier {
    position: relative;
}

.dashboard-user-avatar-wrapper .dashboard-user-tier-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    border-radius: 50%;
    border: 2px solid var(--casino-bg-card);
    background: var(--casino-bg-card);
    z-index: 2;
}

.profile-edit-overlay {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: var(--casino-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--casino-bg-card);
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-edit-overlay:hover {
    background: var(--casino-accent-2);
    transform: scale(1.1);
}

.profile-edit-btn {
    color: var(--casino-text-primary);
    font-size: 20px;
    cursor: pointer;
    margin: 0;
}

.profile__info {
    text-align: center;
}

.profile__info .name {
    font-size: 24px;
    font-weight: 700;
    color: var(--casino-text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile__info .username {
    font-size: 15px;
    color: var(--casino-text-secondary);
    margin-bottom: 20px;
}

.profile-form-wrapper {
    background: var(--casino-bg-card);
    border: 2px solid var(--casino-border-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.profile-form-wrapper:hover {
    border-color: var(--casino-primary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(224, 64, 253, 0.2);
}

@media (max-width: 767px) {
    .profile-form-wrapper {
        padding: 30px 25px;
    }
}

.profile-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--casino-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.profile-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--casino-text-primary);
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.profile-form .form--control.style--two {
    height: 55px;
    border: 2px solid var(--casino-border-light);
    background: var(--casino-bg-dark);
    color: var(--casino-text-primary);
    font-size: 15px;
    padding-left: 65px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.profile-form .form--control.style--two:focus {
    border-color: var(--casino-primary);
    background: var(--casino-bg-dark);
    color: var(--casino-text-primary);
    box-shadow: 0 0 0 3px rgba(224, 64, 253, 0.1);
    outline: none;
}

.profile-form textarea.form--control.style--two {
    height: auto;
    min-height: 120px;
    padding-top: 15px;
    resize: vertical;
}

.profile-form .cmn--btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.profile-form .cmn--btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 64, 253, 0.4);
}

.profile-form .cmn--btn i {
    transition: transform 0.3s ease;
}

.profile-form .cmn--btn:hover i {
    transform: translateX(5px);
}

.change-password-wrapper {
    background: var(--casino-bg-card);
    border: 2px solid var(--casino-border-light);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.change-password-wrapper:hover {
    border-color: var(--casino-primary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(224, 64, 253, 0.2);
}

@media (max-width: 767px) {
    .change-password-wrapper {
        padding: 40px 30px;
    }
}

.change-password-header {
    margin-bottom: 40px;
}

.password-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--casino-primary), var(--casino-accent-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--casino-text-primary);
    box-shadow: 0 4px 20px rgba(224, 64, 253, 0.4);
}

.change-password-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--casino-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.change-password-subtitle {
    font-size: 15px;
    color: var(--casino-text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.change-password-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--casino-text-primary);
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.change-password-form .form--control.style--two {
    height: 55px;
    border: 2px solid var(--casino-border-light);
    background: var(--casino-bg-dark);
    color: var(--casino-text-primary);
    font-size: 15px;
    padding-left: 65px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.change-password-form .form--control.style--two:focus {
    border-color: var(--casino-primary);
    background: var(--casino-bg-dark);
    color: var(--casino-text-primary);
    box-shadow: 0 0 0 3px rgba(224, 64, 253, 0.1);
    outline: none;
}

.change-password-form .cmn--btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.change-password-form .cmn--btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 64, 253, 0.4);
}

.change-password-form .cmn--btn i {
    transition: transform 0.3s ease;
}

.change-password-form .cmn--btn:hover i {
    transform: translateX(5px);
}

.copybtn {
    font-size: 20px !important;
    padding: 0 18px !important;
    line-height: 45px;
}

.ticket-box {
    background: var(--casino-bg-card);
    border-radius: 10px;
}

@media (max-width: 991px) {

    .ticket-box .btn,
    .ticket-box .cmn--btn {
        padding: 10px 20px;
        font-size: 16px;
    }
}

.reset-header .icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 15px;
    background: linear-gradient(0deg, #ff9c19 40%, #ffdd2d 110%);
    font-size: 30px;
    border-radius: 50%;
    color: #1f1f23;
}

.dashboard-sidebar {
    background: var(--casino-bg-card);
    border: 2px solid var(--casino-border-light);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.dashboard-sidebar .close-dashboard {
    font-size: 42px;
    right: 10px;
    top: 10px;
    position: absolute;
    cursor: pointer;
}

@media (max-width: 991px) {
    .dashboard-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 999;
        height: 100vh;
        overflow-y: auto;
        max-width: 300px;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100px);
        -webkit-transition: all ease .3s;
        -moz-transition: all ease .3s;
        transition: all ease .3s;
    }

    .dashboard-sidebar.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0px);
        border-radius: 0px;
    }
}

@media (max-width: 991px) {
    .user-dashboard {
        padding-top: 0 !important;
    }
}

.user-toggler-wrapper {
    width: 100%;
    padding: 15px 25px;
    background: var(--casino-bg-card);
    border: 2px solid var(--casino-border-light);
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.user-toggler-wrapper .title {
    color: var(--casino-text-primary);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

@media (max-width: 767px) {
    .user-toggler-wrapper .title {
        font-size: 18px !important;
    }
}

.user-toggler-wrapper .user-toggler {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--casino-bg-dark);
    border: 2px solid var(--casino-border-light);
    border-radius: 10px;
    font-size: 24px;
    color: var(--casino-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-toggler-wrapper .user-toggler:hover {
    background: var(--casino-primary);
    color: var(--casino-text-primary);
    border-color: var(--casino-primary);
    transform: scale(1.1);
}

.dashboard-user {
    text-align: center;
    padding: 30px 25px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--casino-border-light);
}

@media (max-width: 1199px) {
    .dashboard-user {
        padding: 25px 20px;
    }
}

.dashboard-user-avatar-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: inline-block;
}

.dashboard-user .user-thumb {
    width: 100px;
    height: 100px;
    margin: 0;
    border-radius: 50%;
    border: 3px solid var(--casino-primary);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(224, 64, 253, 0.3);
    transition: all 0.3s ease;
}

.dashboard-user-avatar-wrapper:hover .user-thumb {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(224, 64, 253, 0.5);
}

/* Tier-based dashboard avatar circle (matches Profile page) */
.dashboard-user-avatar-wrapper--bronze .user-thumb {
    border-color: #b45309;
    box-shadow: 0 4px 20px rgba(180, 83, 9, 0.35);
}

.dashboard-user-avatar-wrapper--silver .user-thumb {
    border-color: #9ca3af;
    box-shadow: 0 4px 20px rgba(148, 163, 184, 0.4);
}

.dashboard-user-avatar-wrapper--gold .user-thumb {
    border-color: #facc15;
    box-shadow: 0 4px 22px rgba(250, 204, 21, 0.45);
}

.dashboard-user-avatar-wrapper--diamond {
    position: relative;
}

.dashboard-user-avatar-wrapper--diamond::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0, rgba(56, 189, 248, 0.45), transparent 55%),
                radial-gradient(circle at 70% 100%, rgba(244, 114, 182, 0.45), transparent 55%);
    opacity: 0.75;
    filter: blur(1.5px);
    z-index: -1;
}

.dashboard-user-avatar-wrapper--diamond .user-thumb {
    border-color: #22d3ee;
    box-shadow:
        0 0 0 2px rgba(56, 189, 248, 0.55),
        0 0 20px rgba(56, 189, 248, 0.7),
        0 10px 30px rgba(15, 23, 42, 0.85);
}

.dashboard-user .user-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard-user .user-content .user-welcome {
    display: block;
    font-size: 13px;
    color: var(--casino-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.dashboard-user .user-content .name {
    font-size: 20px;
    font-weight: 700;
    color: var(--casino-text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-user .user-content .user-option {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-user .user-content .user-option li a {
    width: 45px;
    height: 45px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--casino-text-primary);
    background: var(--casino-bg-dark);
    border: 2px solid var(--casino-border-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.dashboard-user .user-content .user-option li a:hover {
    background: var(--casino-primary);
    border-color: var(--casino-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(224, 64, 253, 0.4);
}

.user-dashboard-tab {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 15px;
}

.user-dashboard-tab li {
    padding: 0;
    border-bottom: 1px solid var(--casino-border-light);
}

.user-dashboard-tab li:last-child {
    border: none;
}

.user-dashboard-tab li a,
.user-dashboard-tab li div {
    padding: 14px 25px;
    display: flex;
    align-items: center;
    color: var(--casino-text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.user-dashboard-tab li a i,
.user-dashboard-tab li div i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

@media (max-width: 1199px) {

    .user-dashboard-tab li a,
    .user-dashboard-tab li div {
        padding: 12px 20px;
        font-size: 13px;
    }
}

.user-dashboard-tab li a:hover,
.user-dashboard-tab li div:hover {
    background: var(--casino-bg-dark);
    color: var(--casino-text-primary);
    padding-left: 30px;
}

.user-dashboard-tab li a.active,
.user-dashboard-tab li div.active {
    background: linear-gradient(135deg, var(--casino-primary), var(--casino-accent-2));
    color: var(--casino-text-primary);
    font-weight: 700;
    border-left: 4px solid var(--casino-text-primary);
}

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

.dashboard-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--casino-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.view-all-link {
    color: var(--casino-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: var(--casino-accent-2);
    transform: translateX(5px);
}

.dashboard-recent-transactions {
    background: var(--casino-bg-card);
    border: 2px solid var(--casino-border-light);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .dashboard-recent-transactions {
        padding: 20px 15px;
    }
}

.dashboard-table {
    background: transparent;
}

.dashboard-table thead tr th {
    background: var(--casino-bg-dark);
    color: var(--casino-text-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    padding: 15px 20px;
    border: 2px solid var(--casino-border-light);
    border-bottom: none;
}

.dashboard-table thead tr th:first-child {
    border-top-left-radius: 12px;
}

.dashboard-table thead tr th:last-child {
    border-top-right-radius: 12px;
}

.dashboard-table tbody tr {
    background: var(--casino-bg-card);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--casino-border-light);
}

.dashboard-table tbody tr:hover {
    background: var(--casino-bg-dark);
    transform: scale(1.01);
}

.dashboard-table tbody tr:last-child {
    border-bottom: none;
}

.dashboard-table tbody tr td {
    color: var(--casino-text-primary);
    padding: 18px 20px;
    font-size: 14px;
    vertical-align: middle;
    border: none;
}

.dashboard-table .trx-code {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: var(--casino-primary);
    font-size: 13px;
}

.dashboard-table .badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-table .badge-deposit {
    background: rgba(140, 89, 252, 0.2);
    color: var(--casino-accent-2);
    border: 1px solid var(--casino-accent-2);
}

.dashboard-table .badge-withdraw {
    background: rgba(179, 29, 163, 0.2);
    color: var(--casino-accent-3);
    border: 1px solid var(--casino-accent-3);
}

.dashboard-table .badge-warning,
.badge-warning {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
    border: 1px solid #eab308;
}

.dashboard-table .badge-success,
.badge-success {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid #22c55e;
}

.dashboard-table .badge-danger,
.badge-danger {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid #ef4444;
}

.dashboard-table .badge-secondary,
.badge-secondary {
    background: rgba(156, 163, 175, 0.2);
    color: #9ca3af;
    border: 1px solid #9ca3af;
}

.dashboard-table .amount-positive {
    color: var(--casino-green);
    font-weight: 700;
    font-size: 15px;
}

.dashboard-table .amount-negative {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 15px;
}

.dashboard-table .date {
    color: var(--casino-text-secondary);
    font-size: 13px;
}

.shape {
    position: absolute;
}

.bg_img {
    position: relative;
    background-color: var(--casino-bg-primary) !important;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.bg_img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--casino-bg-overlay);
    opacity: 0.85;
    z-index: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.bg_img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:
        radial-gradient(ellipse at top, rgba(224, 64, 253, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at bottom, rgba(140, 89, 252, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.bg_img .container,
.bg_img>* {
    position: relative;
    z-index: 2;
}

.about-section {
    position: relative;
    background-color: var(--casino-bg-primary);
    overflow: hidden;
}

.about-section::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(224, 64, 253, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(140, 89, 252, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.purchase-credits-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease-out;
}

.purchase-credits-section:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(224, 64, 253, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(140, 89, 252, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-section .shape1 {
    top: 30px;
    opacity: .1;
    left: 50px;
    max-width: 300px;
    z-index: -1;
}

@media (max-width: 991px) {
    .section-thumb {
        max-width: 100%;
        margin: 0;
        margin-top: 50px;
    }

    .section-thumb img {
        width: 100%;
    }
}

@media (max-width: 450px) {
    .section-thumb {
        margin-top: 40px;
    }
}

.game-item {
    text-align: center;
    padding: 20px 25px;
    border-radius: 15px;
    background: var(--casino-bg-card);
    position: relative;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--casino-border-light);
}

.game-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../images/game/shape.png);
    border-radius: 10px;
    z-index: -1;
    overflow: hidden;
}

@media (max-width: 1399px) {
    .game-item {
        padding: 20px 20px;
    }
}

.game-item .ball {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transform: rotate(45deg);
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
}

.game-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--casino-bg-card);
    opacity: 0.95;
}

.game-item:hover .ball {
    width: 45px;
    height: 45px;
}

.game-item .game-inner {
    position: relative;
    z-index: 1;
}

.game-item__thumb {
    width: 100%;
    height: 100px;
    margin: 0 auto 15px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 7px;
    background: var(--casino-bg-card);
    padding: 8px;
}

@media (max-width: 1399px) {
    .game-item__thumb {
        height: 90px;
    }
}

.game-item__thumb img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.game-item__content .title {
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .game-item__content .title {
        margin-bottom: 10px;
    }
}

.game-item__content p {
    font-size: 18px;
}

@media (max-width: 767px) {
    .game-item__content p {
        font-size: 16px;
    }
}

.game-item__content .invest-info {
    text-transform: uppercase;
}

.game-item__content .invest-amount {
    color: #FFC827;
}

.game-item__content .cmn--btn {
    margin-top: 25px;
}

/* New Game Card Structure - Reference Layout */
.Game__container {
    position: relative;
    width: 100%;
    cursor: pointer;
    outline: none;
    padding: 12px;
    background: #1a1a2e;
    /* background: #2d1b6e; */
    border-radius: 12px;
}

.Game__container:focus {
    outline: 2px solid var(--casino-primary);
    outline-offset: 2px;
    border-radius: 12px;
}

.Game__container-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--casino-bg-card);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.Game__container-inner:hover {
    transform: scale(1.05);
}


.Game__container:hover .Game__overlay {
    transform: translateY(0);
    opacity: 1;
}

.Game__overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 320ms cubic-bezier(.2, .8, .2, 1), opacity 220ms ease;
    z-index: 5;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 60%);
    padding: 12px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.Game__overlay-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    pointer-events: none;
}

.Game__overlay-title {
    margin: 0;
    font-weight: 700;
    pointer-events: auto;
    text-align: center;
}


.Game__overlay-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    pointer-events: auto;
}


.Game__imageContainer {
    position: relative;
    width: 100%;
    height: 100%;
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Game__image {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.Game__container-inner:hover .Game__image {
    transform: scale(1.08);
}



.Game__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.Game__container-inner:hover .Game__background {
    opacity: 1;
}

.Game__sideLabels {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
}

.Game__labels {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.Game__label {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(224, 64, 253, 0.9);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.Game__sideIcons {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
}

.Game__titleWrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.Game__name {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.Game__ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 1399px) {
    .Game__name {
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .Game__name {
        font-size: 12px;
    }

    .Game__label {
        font-size: 10px;
        padding: 3px 8px;
    }

    .Game__imageContainer {
        padding: 10px;
    }

    .Game__image {
        width: 85%;
        height: 85%;
    }
}

@media (max-width: 767px) {

    .Game__titleWrapper {
        padding: 10px;
    }

    .Game__name {
        font-size: 11px;
    }

    .Game__imageContainer {
        padding: 8px;
    }

    .Game__image {
        width: 100%;
        height: 100%;
    }

    .Game__container-inner:hover {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 12px 35px rgba(224, 64, 253, 0.4), 0 0 25px rgba(224, 64, 253, 0.25);
    }
}


@media (max-width: 767px) {

    .Game__overlay {
        top: auto;
        bottom: 0;
        transform: translateY(100%);
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.45) 60%);
    }

    .Game__container:hover .Game__overlay,
    .Game__container:focus-within .Game__overlay,
    .Game__container:focus .Game__overlay {
        transform: translateY(0);
    }

    .Game__overlay-title {
        display: none;

    }

    .Game__overlay-actions {
        gap: 6px;
        flex-direction: column;
    }

    .Game__overlay-actions button {
        padding: 7px 10px;
        font-size: 0.85rem;
    }

}

/* Game Category Sections */
.game-category-section {
    margin-bottom: 60px;
}

.game-category-section:last-child {
    margin-bottom: 0;
}

.game-category-section .section-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.game-category-section .section-header__title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.game-category-section .section-header__title i {
    font-size: 18px;
    color: var(--casino-primary);
}

.view-all-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: #ffffff;
    text-decoration: none;
}

.view-all-link .count {
    color: #ffffff;
    font-weight: 600;
    margin: 0 4px;
}

.view-all-link i {
    font-size: 12px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.view-all-link:hover i {
    transform: translateY(2px);
}

@media (max-width: 991px) {
    .game-category-section .section-header__title {
        font-size: 28px;
    }

    .view-all-link {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .game-category-section {
        margin-bottom: 40px;
    }

    .game-category-section .section-header {
        align-items: center !important;
        gap: 15px;
    }

    .game-category-section .section-header__title {
        font-size: 16px;
        line-height: normal;
    }

    .view-all-link {
        font-size: 12px;
    }
}

/* 5 Cards Per Row Responsive */
@media (min-width: 1200px) {
    .col-xl-2 {
        flex: 0 0 auto;
        width: 20%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .col-lg-2 {
        flex: 0 0 auto;
        width: 20%;
    }
}

.transaction-section {
    position: relative;
}

.transaction-section .shape1 {
    top: 0;
    left: 0;
    opacity: .1;
    z-index: -1;
}

.tab-menu {
    margin-bottom: 40px;
}

.tab-menu li {
    padding: 3px 8px;
}

.tab-menu li .cmn--btn {
    color: #FFC827;
    background: transparent;
}

.tab-menu li .cmn--btn::before {
    visibility: hidden;
    opacity: 0;
}

.tab-menu li .cmn--btn.active {
    color: #ffffff;
    background: var(--casino-gradient-primary);
    box-shadow: 0 4px 20px rgba(224, 64, 253, 0.4);
}

.table thead tr th {
    color: #fff;
    font-size: 16px;
}

.table tbody tr td {
    font-size: 16px;
}

.table tbody tr .amount {
    color: #FFC827;
}

.why-section {
    position: relative;
    background-color: var(--casino-bg-primary);
    overflow: hidden;
}

.why-section::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:
        radial-gradient(circle at 80% 50%, rgba(140, 89, 252, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(224, 64, 253, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.why-section .shape1 {
    left: -100px;
    top: 50px;
    z-index: -1;
    opacity: .1;
}

.why-section .container {
    position: relative;
    z-index: 1;
}

.why-section .row {
    justify-content: center;
}

.why-section .col-lg-12 {
    max-width: 900px;
    margin: 0 auto;
}

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

.why-section .section-header__title {
    margin-bottom: 20px;
}

.why-content {
    max-width: 100%;
    margin: 0 auto;
}

.why-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--casino-text-secondary);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.2px;
}

.why-content p:last-child {
    margin-bottom: 0;
}

.why-item {
    max-width: 350px;
}

.why-item__thumb {
    color: var(--casino-text-primary);
    border: 4px solid var(--casino-bg-card);
    background: rgba(224, 64, 253, 0.1);
    font-size: 34px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(224, 64, 253, 0.2);
}

@media (max-width: 767px) {
    .why-item__thumb {
        margin-bottom: 15px;
    }

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

    .why-section .section-header__title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .why-content p {
        font-size: 15px;
        line-height: 1.7;
        padding: 0 10px;
        margin-bottom: 18px;
    }

    .why-section .col-lg-12 {
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    .why-section .section-header {
        margin-bottom: 35px;
    }

    .why-content p {
        font-size: 16px;
    }
}

.why-item__content .title {
    margin-bottom: 7px;
    font-size: 26px;
}

@media (max-width: 1199px) {
    .why-item__content .title {
        font-size: 22px;
    }
}

.how-section {
    position: relative;
    background-color: var(--casino-bg-primary) !important;
}

.how-section::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--casino-bg-overlay);
    opacity: 0.85;
    z-index: 0;
}

.how-section::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:
        radial-gradient(ellipse at center, rgba(224, 64, 253, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse at 30% 60%, rgba(140, 89, 252, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.how-section .container {
    position: relative;
    z-index: 1;
}

div[class*='col']:last-child .how-item::before {
    display: none;
}

.how-item {
    text-align: center;
    padding: 0 25px;
    position: relative;
}

.how-item:hover .title,
.how-item.active .title {
    color: var(--casino-primary-light);
    text-shadow: 0 0 15px rgba(224, 64, 253, 0.8);
}

.how-item:hover .how-item__thumb,
.how-item.active .how-item__thumb {
    transform: translate3d(0, -5px, 0) scale(1.15);
    box-shadow: 0 0 40px rgba(224, 64, 253, 0.8),
        0 0 60px rgba(140, 89, 252, 0.6),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    border-color: var(--casino-primary-light);
}

.how-item::before {
    position: absolute;
    content: '';
    width: calc(100% - 240px);
    height: 2px;
    border: none;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(224, 64, 253, 0.5) 20%,
            rgba(224, 64, 253, 0.8) 50%,
            rgba(224, 64, 253, 0.5) 80%,
            transparent 100%);
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(224, 64, 253, 0.6);
    animation: how-line-glow 2s ease-in-out infinite;
    will-change: opacity;
}

@keyframes how-line-glow {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .how-item::before {
        display: none;
    }
}

.how-item__thumb {
    width: 120px;
    height: 120px;
    background: var(--casino-gradient-primary);
    border-radius: 50%;
    font-size: 46px;
    margin: 0 auto 30px;
    position: relative;
    border: 3px solid var(--casino-primary);
    box-shadow: 0 0 30px rgba(224, 64, 253, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .how-item__thumb {
        width: 100px;
        height: 100px;
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .how-item__thumb {
        margin-bottom: 15px;
    }
}

.how-item__thumb .badge {
    position: absolute;
    right: -10px;
    top: 10px;
    width: 36px;
    height: 36px;
    color: #ffffff !important;
    background: var(--casino-gradient-accent2) !important;
    border: 2px solid var(--casino-primary-light);
    box-shadow: 0 0 15px rgba(140, 89, 252, 0.8);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badge-pulse 2s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);
}

@keyframes badge-pulse {

    0%,
    100% {
        transform: translateZ(0) scale(1);
    }

    50% {
        transform: translateZ(0) scale(1.1);
    }
}

.how-item__thumb img {
    max-width: 70px;
}

.how-item__content .title {
    margin-bottom: 5px;
    font-family: var(--casino-font-primary);
    font-weight: 700;
    font-size: 20px;
    color: var(--casino-text-primary);
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

@media (max-width: 991px) {
    .how-item__content .title {
        font-size: 20px;
    }
}

.how-item__content .continue-button {
    margin-top: 25px;
}

.continue-button {
    padding: 10px 30px;
    border-radius: 35px;
    text-align: center;
    font-size: 24px;
    line-height: 1;
}

.faq-section {
    position: relative;
    background-color: var(--casino-bg-primary);
    overflow: hidden;
}

.faq-section::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:
        radial-gradient(ellipse at center, rgba(224, 64, 253, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(140, 89, 252, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.faq-section .shape1 {
    position: absolute;
    right: 0px;
    top: 50px;
    max-width: 500px;
    z-index: -1;
    opacity: .15;
}

.faq-item {
    height: auto;
    padding: 10px 25px;
    background: var(--casino-bg-card);
    border: 1px solid rgba(255, 200, 39, 0.15);
}

.faq-item:not(.faq-item:last-child) {
    margin-bottom: 10px;
}

.faq-item.open .faq-item__title .title {
    color: #FFC827;
}

.faq-item.open .faq-item__title::before {
    transform: translateY(-50%) rotate(180deg);
    color: #FFC827;
}

.faq-item__title {
    padding: 10px 0;
    cursor: pointer;
    position: relative;
}

.faq-item__title::before {
    position: absolute;
    font-weight: 900;
    font-size: 16px;
    font-family: "Line Awesome Free";
    content: '\f107';
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
}

.faq-item__title .title {
    font-weight: 400;
}

.faq-item__content {
    display: none;
    padding-bottom: 10px;
}

div[class*='col']:nth-child(even)>.faq-item {
    padding-left: 25px;
}

.top-section {
    position: relative;
    background-color: var(--casino-bg-primary) !important;
}

.top-section::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--casino-bg-overlay);
    opacity: 0.85;
    z-index: 0;
}

.top-section::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(224, 64, 253, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(140, 89, 252, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.top-section .container {
    position: relative;
    z-index: 1;
}

.top-section .part-title {
    font-size: 20px;
    text-align: center;
}

.top-investor-slider .slick-list {
    padding: 15px 0 !important;
}

.investor-item,
.winner-item {
    text-align: center;
}

.investor-item__thumb,
.winner-item__thumb {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    position: relative;
}

@media (max-width: 1199px) {

    .investor-item__thumb,
    .winner-item__thumb {
        width: 80px;
        height: 80px;
    }
}

.investor-item__thumb img,
.winner-item__thumb img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    background: #FFC827;
}

@media (max-width: 1199px) {

    .investor-item__thumb img,
    .winner-item__thumb img {
        width: 65px;
        height: 65px;
    }
}

.investor-item__content .name,
.winner-item__content .name {
    font-size: 16px;
    font-weight: 400;
}

@media (max-width: 1199px) {

    .investor-item__content .name,
    .winner-item__content .name {
        font-size: 14px;
    }
}

.investor-item .amount,
.winner-item .amount {
    position: absolute;
    padding: 0px 10px;
    border-radius: 20px;
    font-size: 13px;
    top: calc(100% - 15px);
    left: 50%;
    transform: translateX(-50%);
    color: #1f1f23;
    font-weight: 600;
}

.cla-wrapper {
    max-width: 250px;
    margin: 0 auto;
    position: relative;
}

.cla-wrapper .title {
    font-size: 28px;
}

.cla-wrapper .thumb {
    margin-top: 25px;
}

.cla-wrapper .thumb::before {
    position: absolute;
    content: '';
    box-shadow: 0 0 50px 50px rgba(255, 200, 39, 0.7);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transform: translateY(50px);
}

.cla-wrapper .thumb img {
    width: 100%;
}

.testimonial-section {
    position: relative;
    background-color: var(--casino-bg-primary);
    overflow: hidden;
    padding: 100px 0;
}

.testimonial-section::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(224, 64, 253, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(140, 89, 252, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.testimonial-section .shape1 {
    left: -100px;
    top: 50px;
    z-index: -1;
    opacity: .1;
}

.testimonial-item {
    text-align: center;
    padding: 40px 35px;
    position: relative;
    background: var(--casino-bg-card);
    border: 1px solid var(--casino-border-light);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    border-color: var(--casino-border-medium);
    box-shadow: 0 12px 40px rgba(224, 64, 253, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 1199px) {
    .testimonial-item {
        padding: 35px 30px;
        min-height: 260px;
    }
}

@media (max-width: 767px) {
    .testimonial-item {
        padding: 30px 25px;
        min-height: auto;
    }

    .testimonial-item__content p {
        font-size: 15px;
    }

    .testimonial-item .quote-icon {
        font-size: 40px;
    }
}


.testimonial-item .testimonial-inner {
    position: relative;
    z-index: 1;
}

.testimonial-item .quote-icon {
    font-size: 50px;
    line-height: 1;
    color: var(--casino-primary);
    margin-bottom: 20px;
    display: inline-block;
    opacity: 0.6;
    position: relative;
    z-index: 2;
}

.testimonial-item__content {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-item__content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--casino-text-secondary);
    font-family: var(--casino-font-body);
    font-weight: 400;
    font-style: italic;
    position: relative;
    padding: 0 10px;
}


.testimonial-item .thumb-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

.testimonial-item .thumb {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--casino-bg-card);
    border: 2px solid var(--casino-border-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-item:hover .thumb {
    border-color: var(--casino-border-medium);
    box-shadow: 0 6px 20px rgba(224, 64, 253, 0.3);
}

.testimonial-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-item .content {
    padding-left: 20px;
    text-align: left;
}

.testimonial-item .content .name {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--casino-font-primary);
    color: var(--casino-text-primary);
    margin-bottom: 5px;
}

.testimonial-item .content .designation {
    font-size: 13px;
    color: var(--casino-text-secondary);
    font-family: var(--casino-font-body);
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

.blog-section {
    position: relative;
}

.blog-section::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--casino-bg-card);
    opacity: .9;
}

.blog-section .container {
    position: relative;
    z-index: 1;
}

.blog-item {
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(255, 200, 39, 0.15);
    background: var(--casino-bg-card);
    padding: 20px;
}

.blog-item__thumb {
    overflow: hidden;
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}

.blog-item__thumb img {
    width: 100%;
}

.blog-item__content {
    padding: 5px;
    padding-top: 25px;
    padding-bottom: 0;
}

@media (max-width: 1199px) {
    .blog-item__content {
        padding: 15px;
    }
}

.blog-item__content .title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

.blog-item:hover .blog-item__thumb img {
    transform: scale(1.1);
}

.blog__meta {
    font-size: 14px;
}

.blog__meta i {
    color: #FFC827;
    font-size: 16px;
}

.blog-details-wrapper {
    padding-right: 40px;
}

@media (max-width: 1199px) {
    .blog-details-wrapper {
        padding-right: 0;
    }
}

.blog-details-wrapper .details-thumb img {
    width: 100%;
}

.blog-details-wrapper .details-content {
    padding: 40px 0;
}

.blog-details-wrapper .details-content .meta-post {
    align-items: center;
    padding: 15px 0;
    padding-bottom: 25px;
    font-size: 15px;
}

.blog-details-wrapper .details-content .meta-post li {
    margin-right: 25px;
}

.blog-details-wrapper .details-content .meta-post li i {
    margin-right: 5px;
    font-size: 17px;
}

.blog-details-wrapper .details-content .meta-post li a {
    color: #FFC827;
}

.blog-details-wrapper .details-content .meta-post li:last-child {
    margin-right: 0;
}

.blog-details-wrapper .details-content .details-inner {
    padding: 12px 0;
}

.blog-details-wrapper .details-content .details-inner .subtitle {
    margin-bottom: 10px;
}

.comment__area {
    padding: 30px 30px 35px;
    background: var(--casino-bg-card);
    border-radius: 5px;
}

@media (max-width: 575px) {
    .comment__area {
        padding: 25px 20px;
    }
}

.comment__area-title {
    margin-bottom: 25px;
}

.comment__area .poster__item .thumb {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

@media (max-width: 450px) {
    .comment__area .poster__item .thumb {
        width: 50px;
        height: 50px;
    }
}

.comment__area .poster__item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment__area .poster__item .content {
    width: calc(100% - 70px);
    padding-left: 20px;
}

@media (max-width: 450px) {
    .comment__area .poster__item .content {
        width: calc(100% - 50px);
        padding-left: 15px;
    }
}

.comment__area .poster__item .content .date {
    font-weight: 500;
    color: #fff;
    margin-top: 3px;
    font-size: 15px;
}

@media (max-width: 767px) {
    .comment__area .poster__item .content .date {
        font-size: 14px;
    }
}

.comment__area .comment__item {
    padding: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.comment__area .comment__item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.comment__area .comment__item .comment__body {
    margin-top: 20px;
    padding-left: 90px;
}

@media (max-width: 767px) {
    .comment__area .comment__item .comment__body {
        padding-left: 0;
    }
}

.write__comment__area {
    padding: 30px 30px 35px;
    background: var(--casino-bg-card);
    border-radius: 5px;
}

@media (max-width: 575px) {
    .write__comment__area {
        padding: 25px 20px;
    }
}

.write__comment__area-title {
    margin-bottom: 25px;
}

.blog-sidebar {
    position: sticky;
    top: 20px;
    padding: 35px 25px;
    background: var(--casino-bg-card);
}

@media (max-width: 1199px) and (min-width: 992px) {
    .blog-sidebar {
        padding: 0;
        background: transparent;
    }
}

@media (max-width: 1199px) and (max-width: 450px) {
    .blog-sidebar {
        padding: 0;
        background: transparent;
    }
}

.recent-post-item {
    align-items: center;
    margin-bottom: 20px;
}

.recent-post-item:hover .hover-line a {
    background-size: 100% 2px !important;
}

.recent-post-item:last-child {
    margin-bottom: 0;
}

.recent-post-item .thumb {
    width: 110px;
    height: 80px;
}

.recent-post-item .thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.recent-post-item .content {
    width: calc(100% - 110px);
    padding-left: 15px;
}

.recent-post-item .content .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    font-size: 16px;
}

.recent-post-item .content .hover-line a {
    position: relative;
    display: inline;
    background: linear-gradient(to right, currentColor 0%, currentColor 100%);
    background-size: 0px 2px;
    background-position: 0 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    padding: .1% 0;
    background-repeat: no-repeat;
    width: 100%;
    color: inherit;
}

.recent-post-item .content .date {
    font-size: 13px;
}

.recent-post-item .content .date i {
    color: #FFC827;
    margin-right: 4px;
    font-size: 15px;
}

.info__list li {
    width: 50%;
    position: relative;
    padding-left: 20px;
    font-weight: 500;
}

@media (max-width: 450px) {
    .info__list li {
        width: 100%;
    }
}

.info__list li::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FFC827;
    left: 0;
    top: 16px;
}

.sidebar__item {
    margin-bottom: 35px;
}

.search__form .form-group {
    position: relative;
}

.search__form .form-group .btn,
.search__form .form-group .cmn--btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 25px;
}

@media (max-width: 575px) {

    .search__form .form-group .btn,
    .search__form .form-group .cmn--btn {
        padding: 12px 25px;
        font-size: 15px;
    }
}

@media (max-width: 450px) {

    .search__form .form-group .btn,
    .search__form .form-group .cmn--btn {
        position: relative;
        width: 100%;
        margin-top: 10px;
    }
}

.cate-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    font-weight: 500;
}

.cate-list li a:hover {
    color: #FFC827;
}

.cate-list li:last-child {
    border: none;
}

.privacy-policy {
    overflow: initial !important;
}

.privacy-policy-sidebar-menu {
    position: sticky;
    top: 20px;
}

.privacy-policy-sidebar-menu li {
    width: 100%;
    padding: 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.17);
}

.privacy-policy-sidebar-menu li:last-child {
    border: 0;
}

.privacy-policy-sidebar-menu li a {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.privacy-policy-sidebar-menu li a::before {
    position: absolute;
    content: '';
    width: 3px;
    height: 0;
    background: #FFC827;
    right: 0;
    top: 0;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
}

.privacy-policy-sidebar-menu li a.active {
    color: #FFC827;
}

.privacy-policy-sidebar-menu li a.active::before {
    height: 100%;
    transform-origin: bottom;
}

.privacy-policy-sidebar-menu li a:hover {
    color: #FFC827;
}

.privacy-policy-content {
    padding-left: 40px;
}

@media (max-width: 1199px) {
    .privacy-policy-content {
        padding-left: 20px;
    }
}

@media (max-width: 991px) {
    .privacy-policy-content {
        padding-left: 0px;
    }
}

.privacy-policy-content .content-item {
    margin-bottom: 40px;
}

.privacy-policy-content .content-item:last-child {
    margin-bottom: 0;
}

.privacy-policy-content .content-item .title {
    margin-bottom: 15px;
}

.privacy-policy-content .content-item .info-list {
    margin-top: 15px;
}

.privacy-policy-content .content-item .info-list li {
    padding-left: 25px;
    position: relative;
}

.privacy-policy-content .content-item .info-list li::before {
    position: absolute;
    font-weight: 900;
    font-size: 16px;
    font-family: "Line Awesome Free";
    content: "\f101";
    left: 0;
    top: 6px;
    color: #FFC827;
}

.game-details-left {
    padding: 50px;
    background-color: var(--casino-bg-card);
    border-radius: 8px;
    min-height: 100%;
}

.game-details-right {
    padding: 50px;
    background: var(--casino-bg-card);
    border-radius: 8px;
}

@media (max-width: 575px) {
    .game-details-right {
        padding: 25px;
    }
}

@media (max-width: 440px) {
    .game-details-right {
        padding: 30px 15px;
    }
}

.single-select {
    padding: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 8px;
    width: 200px;
    height: 200px;
    position: relative;
}

@media (max-width: 1199px) {
    .single-select {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 450px) {
    .single-select {
        width: 110px;
        height: 110px;
    }
}

.single-select.active {
    position: relative;
    border-color: #e6a25d;
}

.single-select img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.single-select.active::after {
    position: absolute;
    font-weight: 900;
    font-size: 16px;
    font-family: "Line Awesome Free";
    font-size: 14px;
    content: "\f00c";
    top: -8px;
    right: -10px;
    width: 25px;
    height: 25px;
    background-color: #28C76F;
    color: #fff;
    border-radius: 50%;
}

.coins-wrapper {
    position: relative;
    transform-style: preserve-3d;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
    width: 300px;
    height: 300px;
    animation: coin-rotate 2s linear infinite;
    will-change: transform;
    transform: translateZ(0);
}

.coins-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1199px) {
    .coins-wrapper {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 767px) {
    .coins-wrapper {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 450px) {
    .coins-wrapper {
        width: 150px;
        height: 150px;
    }
}

.coins-wrapper:hover {
    transform: rotateY(180deg);
}

.coins-wrapper .front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.coins-wrapper .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform: rotateY(180deg);
}

@keyframes coin-rotate {
    0% {
        transform: rotateY(0);
    }

    100% {
        transform: rotateY(360deg);
    }
}

/* game details css end */
.header-bottom-area,
.menu,
.pagination,
.dashboard__card,
.deposit-group,
.testimonial-item .thumb-wrapper,
.blog-details-wrapper .details-content .meta-post,
.recent-post-item,
.social-links,
.rating {
    display: flex;
    flex-wrap: wrap;
}

.header-bottom-area {
    flex-wrap: nowrap;
}

@media (max-width: 991px) {
    .header-bottom-area {
        flex-wrap: wrap;
    }
}

.video-button,
.account-section,
.input-pre-icon,
.dashboard__card-icon,
.reset-header .icon,
.why-item__thumb,
.how-item__thumb,
.investor-item__thumb,
.winner-item__thumb,
.game-details-left,
.single-select.active::after,
.social-links li a,
.preloader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn,
.cmn--btn,
.video-button,
.social-links li a,
.dashboard__card,
.game-item,
.game-item .ball,
.continue-button,
.testimonial-item,
.slick-arrow {
    box-shadow: -3.828px -3.828px 6px 0px rgba(255, 200, 39, 0.4), 3px 5px 8px 0px rgba(255, 82, 1, 0.2);
}

.dashboard__card:hover,
.game-item:hover,
.why-item__thumb,
.how-item__thumb,
.investor-item__thumb,
.winner-item__thumb,
.investor-item .amount,
.winner-item .amount {
    box-shadow: -4.828px -4.828px 12px 0px rgba(255, 200, 39, 0.4), 3px 5px 15px 0px rgba(255, 82, 1, 0.2);
}

.btn:hover,
.cmn--btn:hover {
    box-shadow: 11px 11px 32px rgba(255, 82, 1, 0.2), -11px -11px 32px rgba(255, 200, 39, 0.4);
}

.btn,
.cmn--btn,
.banner-content .button-wrapper .cmn--btn,
.tab-menu li .cmn--btn.active,
.table thead tr th,
.why-item__thumb,
.how-item:hover .how-item__thumb,
.how-item.active .how-item__thumb,
.how-item__thumb .badge,
.investor-item .amount,
.winner-item .amount {
    background: var(--casino-gradient-primary);
}

/* Claim Now Button - Vibrant Green Gaming Style */
.cmn--btn.active.claim-btn,
.promo-card .cmn--btn.active {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 50%, #00ff88 100%) !important;
    background-size: 200% 200%;
    color: #0a0230 !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.5),
        0 0 30px rgba(0, 255, 136, 0.3),
        inset 0 0 15px rgba(255, 255, 255, 0.2);
    animation: button-glow-pulse 2s ease-in-out infinite;
    border-color: #00ff88;
    will-change: transform;
    transform: translateZ(0);
}

.cmn--btn.active.claim-btn:hover,
.promo-card .cmn--btn.active:hover {
    box-shadow: 0 8px 35px rgba(0, 255, 136, 0.7),
        0 0 40px rgba(0, 255, 136, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translate3d(0, -4px, 0) scale(1.05);
    background-position: 100% 0;
}

@keyframes button-glow-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(0, 255, 136, 0.5),
            0 0 30px rgba(0, 255, 136, 0.3),
            inset 0 0 15px rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 4px 25px rgba(0, 255, 136, 0.7),
            0 0 40px rgba(0, 255, 136, 0.5),
            inset 0 0 20px rgba(255, 255, 255, 0.3);
    }
}

.social-links {
    align-items: center;
}

.social-links li {
    padding: 3px;
}

.social-links li a {
    width: 40px;
    height: 40px;
    font-size: 22px;
    color: #FFC827;
    border: 1px solid rgba(255, 200, 39, 0.6);
    border-radius: 50%;
}

.social-links li a:hover {
    color: #fff;
    background: #FFC827;
    border-color: #FFC827;
}

.slick-dots {
    left: 0;
}

.slick-dots li {
    height: auto;
    width: auto;
}

.slick-dots li.slick-active button {
    background: #FFC827;
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 5px !important;
    background: rgba(255, 200, 39, 0.2);
}

.slick-dots li button::before {
    display: none;
}

.slick-arrow {
    position: absolute;
    cursor: pointer;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    box-shadow: none;
}

.slick-arrow.arrow-left {
    left: -60px;
    z-index: 1;
}

.slick-arrow.arrow-right {
    right: -60px;
    z-index: 1;
}

iframe {
    margin-bottom: -8px;
}

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

@media (max-width: 767px) {
    .section-header {
        margin-bottom: 45px;
    }
}

@media (max-width: 450px) {
    .section-header {
        margin-bottom: 40px;
    }
}

.section-header.text-center::before {
    left: 50%;
    transform: translateX(-50%);
}

.section-header.color-white * {
    color: #fff;
}

.section-header__title {
    display: block;
    color: var(--casino-text-primary);
    margin-bottom: 15px;
    position: relative;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vip-intro-section .section-header__title,
.vip-levels-section .section-header__title,
.vip-benefits-section .section-header__title,
.vip-how-section .section-header__title,
.vip-faq-section .section-header__title {
    color: var(--casino-text-primary);
}

@media (max-width: 767px) {
    .section-header__title {
        margin-bottom: 10px;
    }
}

@keyframes moveab {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-100%);
        left: 100%;
    }

    100% {
        transform: translateX(0%);
    }
}

.section-header p {
    margin-bottom: 15px;
    font-size: 19px;
}

@media (max-width: 1199px) {
    .section-header p {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .section-header p {
        font-size: 16px;
    }
}

.rating li {
    padding: 0 3px;
}

.preloader {
    width: 100%;
    height: 100vh;
    background: var(--casino-bg-primary);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.preloader-logo {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.preloader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(224, 64, 253, 0.2);
    border-top-color: var(--casino-primary);
    border-right-color: var(--casino-accent-2);
    border-radius: 50%;
    animation: preloader-spin 1s linear infinite;
    position: relative;
}

.preloader-spinner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(140, 89, 252, 0.2);
    border-top-color: var(--casino-accent-2);
    border-right-color: var(--casino-accent-3);
    border-radius: 50%;
    animation: preloader-spin-reverse 0.8s linear infinite;
}

@keyframes preloader-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes preloader-spin-reverse {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

/* Preloader fade out animation */
.preloader.fade-out {
    animation: preloader-fade-out 0.5s ease-out forwards;
}

@keyframes preloader-fade-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        visibility: hidden;
    }
}

@media (max-width: 767px) {
    .preloader-logo {
        max-width: 140px;
    }

    .preloader-spinner {
        width: 50px;
        height: 50px;
        border-width: 3px;
    }

    .preloader-spinner::before {
        width: 35px;
        height: 35px;
        border-width: 2px;
    }
}

/* ============================================
   Modern Casino Design Enhancements
   ============================================ */

/* Header Actions & Balance Display */
.header-actions {
    gap: 15px;
}

.header-trigger-wrapper {
    margin-left: 15px;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .header-top .header-trigger-wrapper {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .header-top .header-trigger-wrapper {
        display: flex !important;
        margin-left: 0;
    }

    .header-bottom .header-trigger-wrapper {
        display: none !important;
    }
}

.balance-display {
    background: var(--casino-gradient-gold);
    padding: 8px 20px;
    border-radius: 25px;
    color: var(--casino-text-primary);
    font-weight: 600;
    box-shadow: 0 4px 15px var(--casino-shadow-gold);
    white-space: nowrap;
    flex-shrink: 0;
}

.balance-display i {
    font-size: 20px;
}

.balance-amount {
    font-size: 16px;
    font-weight: 700;
}

.balance-amount small {
    font-size: 12px;
    opacity: 0.9;
}

.header-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-icon:hover {
    background: var(--casino-gradient-gold);
    color: var(--casino-text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--casino-shadow-gold);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    white-space: nowrap;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--casino-notification);
    color: var(--casino-text-primary);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--casino-bg-card);
}

.user-profile-dropdown {
    position: relative;
}

.user-profile {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 25px;
    color: var(--casino-text-primary);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--casino-border-light);
    white-space: nowrap;
    flex-shrink: 0;
}

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

.user-avatar {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--casino-gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--casino-text-primary);
    font-size: 16px;
    overflow: hidden;
}

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

/* Navbar profile avatar with tier badge */
.header-avatar-wrapper {
    position: relative;
}

.header-tier-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--casino-bg-card);
    border-radius: 50%;
    border: 2px solid var(--casino-bg-card);
    z-index: 1000;
}

.header-tier-badge--sm {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    line-height: 0;
}

.header-tier-badge--large {
    width: 24px;
    height: 24px;
    font-size: 16px;
    line-height: 1;
}

/* User Profile Dropdown */
.user-profile-dropdown {
    position: relative;
}

.user-profile.has-sub-menu {
    position: relative;
}

.user-profile.has-sub-menu i.las.la-angle-down {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.user-profile-dropdown:hover .user-profile.has-sub-menu i.las.la-angle-down,
.user-profile-dropdown.open .user-profile.has-sub-menu i.las.la-angle-down {
    transform: rotate(180deg);
}

.user-profile-submenu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    background: var(--casino-bg-dark);
    border: 2px solid var(--casino-border-medium);
    border-radius: 12px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
}

.user-profile-dropdown:hover .user-profile-submenu,
.user-profile-dropdown.open .user-profile-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.user-profile-submenu li {
    list-style: none;
    margin: 0;
    padding: 0;
}


.user-profile-submenu li a,
.user-profile-submenu li div {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.user-profile-submenu li a i,
.user-profile-submenu li div i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.user-profile-submenu li a:hover,
.user-profile-submenu li div:hover {
    background: var(--casino-primary);
    color: #fff;
    padding-left: 20px;
}

.user-profile-submenu li:not(:last-child) a {
    margin-bottom: 5px;
}

@media (max-width: 991px) {

    /* Hide dropdown submenu on mobile - use sidebar instead */
    .user-profile-submenu {
        display: none !important;
    }

    .user-profile.has-sub-menu i.las.la-angle-down,
    .user-profile.has-sub-menu div.las.la-angle-down {
        display: inline-block !important;
    }
}

/* Live Winners Section - Enhanced Professional Design */
.live-winners-section {
    background: var(--casino-bg-primary);
    position: relative;
    z-index: 1;
    padding: 80px 0;
    overflow: hidden;
}

/* Primary background overlay - vibrant gradient effect */
.live-winners-section::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(224, 64, 253, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(140, 89, 252, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at center, rgba(179, 29, 163, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse at 50% 50%, rgba(224, 64, 253, 0.1) 0%, transparent 80%);
    pointer-events: none;
    z-index: 0;
    animation: background-pulse 8s ease-in-out infinite;
    will-change: transform, opacity;
}

/* Secondary overlay - vibrant animated pattern */
.live-winners-section::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(224, 64, 253, 0.05) 2px,
            rgba(224, 64, 253, 0.05) 4px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 2px,
            rgba(140, 89, 252, 0.04) 2px,
            rgba(140, 89, 252, 0.04) 4px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
    animation: pattern-move 20s linear infinite;
    will-change: background-position;
}

@keyframes background-pulse {

    0%,
    100% {
        opacity: 1;
        transform: translateZ(0) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translateZ(0) scale(1.05);
    }
}

@keyframes pattern-move {
    0% {
        background-position: 0 0, 0 0;
    }

    100% {
        background-position: 50px 50px, 50px 50px;
    }
}

.live-winners-section .section-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.live-winners-section .section-header__title {
    display: block;
    color: #fff;
    visibility: visible;
    opacity: 1;
}

.live-winners-section .container {
    position: relative;
    z-index: 2;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(224, 64, 253, 0.2) 0%, rgba(140, 89, 252, 0.15) 100%);
    border: 1.5px solid var(--casino-border-medium);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(224, 64, 253, 0.3);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #00FF00;
    border-radius: 50%;
    animation: pulse-live 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
    will-change: transform, opacity;
    transform: translateZ(0);
}

@keyframes pulse-live {

    0%,
    100% {
        opacity: 1;
        transform: translateZ(0) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translateZ(0) scale(1.2);
    }
}

.live-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--casino-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-header__subtitle {
    font-size: 16px;
    color: var(--casino-text-secondary);
    margin-top: 10px;
    line-height: 1.6;
}

.vip-intro-section .section-header__subtitle,
.vip-levels-section .section-header__subtitle,
.vip-benefits-section .section-header__subtitle,
.vip-how-section .section-header__subtitle,
.vip-faq-section .section-header__subtitle {
    color: var(--casino-text-secondary);
}

.live-winners-marquee-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px 0 30px;
    width: 100%;
}

.live-winners-slider {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    padding: 30px 0 50px;
    visibility: visible;
    opacity: 1;
    max-width: 1400px;
    margin: 0 auto;
}

/* Add vibrant glow behind slider */
.live-winners-marquee-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 70%;
    background:
        radial-gradient(ellipse, rgba(224, 64, 253, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse, rgba(140, 89, 252, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    animation: slider-glow 4s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes slider-glow {

    0%,
    100% {
        opacity: 0.8;
        transform: translate3d(-50%, -50%, 0) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate3d(-50%, -50%, 0) scale(1.05);
    }
}


.winner-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--casino-border-light);
    border-radius: 24px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), background 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    visibility: visible;
    opacity: 1;
    will-change: transform;
    transform: translateZ(0);
}

/* Background glow effect on cards */
.winner-card::before {
    position: absolute;
    content: "";
    width: 150%;
    height: 150%;
    left: -25%;
    top: -25%;
    background: radial-gradient(circle, rgba(224, 64, 253, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.winner-card::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, rgba(224, 64, 253, 0.05) 0%, rgba(140, 89, 252, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.winner-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--casino-border-medium);
    transform: translate3d(0, -8px, 0) scale(1.03);
    box-shadow: 0 16px 48px rgba(224, 64, 253, 0.3);
}

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

.winner-card:hover::after {
    opacity: 1;
}

/* Ensure content stays above pseudo-elements */
.winner-card>* {
    position: relative;
    z-index: 1;
}

.winner-card--big {
    width: 260px;
    max-width: 100%;
    background: linear-gradient(135deg, rgba(224, 64, 253, 0.2) 0%, rgba(140, 89, 252, 0.15) 100%);
    border-color: var(--casino-border-medium);
    border-width: 2.5px;
    box-shadow: 0 12px 40px rgba(224, 64, 253, 0.4);
}

.winner-card--big::before {
    background: radial-gradient(circle, rgba(140, 89, 252, 0.2) 0%, transparent 70%);
}

.winner-card--big::after {
    background: linear-gradient(135deg, rgba(140, 89, 252, 0.1) 0%, rgba(179, 29, 163, 0.08) 100%);
}

.winner-card--big:hover {
    box-shadow: 0 16px 48px rgba(224, 64, 253, 0.4);
    border-color: var(--casino-accent-1);
}

.winner-card--big:hover::before {
    opacity: 1;
    animation: glow-pulse 2s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translateZ(0) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateZ(0) scale(1.1);
    }
}

.winner-avatar-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.winner-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--casino-primary);
    box-shadow: 0 0 0 4px rgba(224, 64, 253, 0.25), 0 10px 30px rgba(224, 64, 253, 0.35);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.winner-card:hover .winner-avatar {
    border-color: var(--casino-primary-light);
    box-shadow: 0 0 0 4px rgba(224, 64, 253, 0.3), 0 12px 32px rgba(224, 64, 253, 0.4);
    transform: scale(1.05);
}

.winner-card--big .winner-avatar {
    width: 95px;
    height: 95px;
    border-width: 4px;
    border-color: var(--casino-accent-1);
    box-shadow: 0 0 0 5px rgba(140, 89, 252, 0.25), 0 12px 35px rgba(140, 89, 252, 0.45);
}


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

.winner-rank {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--casino-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--casino-text-primary);
    box-shadow: 0 4px 12px rgba(224, 64, 253, 0.4);
    border: 2px solid var(--casino-bg-primary);
}

.winner-rank--big {
    width: 36px;
    height: 36px;
    font-size: 18px;
    background: linear-gradient(135deg, var(--casino-accent-1) 0%, var(--casino-primary) 100%);
    box-shadow: 0 6px 16px rgba(140, 89, 252, 0.5);
}

.winner-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    width: 100%;
}

.winner-name {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.02em;
}

.winner-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--casino-primary);
    letter-spacing: 0.02em;
    text-shadow: 0 2px 12px rgba(224, 64, 253, 0.35);
    line-height: 1.2;
    transition: all 0.4s ease;
}


.winner-amount--big {
    font-size: 32px;
    color: var(--casino-accent-1);
    text-shadow: 0 3px 18px rgba(140, 89, 252, 0.5);
}


.winner-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-top: 4px;
}

@media (max-width: 1199px) {
    .live-winners-slider {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .live-winners-section {
        padding: 60px 0;
    }

    .live-winners-marquee-wrapper {
        padding: 15px 0 25px;
    }

    .live-winners-slider {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        padding: 20px 0 40px;
    }

    .winner-card {
        padding: 24px 18px;
    }

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

    .winner-card--big .winner-avatar {
        width: 85px;
        height: 85px;
    }

    .winner-amount {
        font-size: 20px;
    }

    .winner-amount--big {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .live-winners-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 575px) {
    .live-winners-section {
        padding: 50px 0;
    }

    .live-winners-marquee-wrapper {
        padding: 10px 0 20px;
    }

    .live-winners-slider {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px 0 40px;
        max-width: 400px;
    }

    .winner-card {
        padding: 20px 16px;
        gap: 16px;
    }

    .winner-avatar {
        width: 65px;
        height: 65px;
    }

    .winner-card--big .winner-avatar {
        width: 80px;
        height: 80px;
    }

    .winner-amount {
        font-size: 18px;
    }

    .winner-amount--big {
        font-size: 24px;
    }
}

/* Promotional Cards */
.promo-section {
    padding: 80px 0;
    background-color: var(--casino-bg-primary);
    position: relative;
    overflow: hidden;
}

.promo-section .section-header {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.promo-slider {
    position: relative;
    z-index: 1;
}

.promo-slider .slick-list {
    overflow: visible;
}

.promo-slider .slick-slide {
    padding: 0 15px;
}

.promo-section::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(224, 64, 253, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(140, 89, 252, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(179, 29, 163, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: promo-bg-shift 8s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes promo-bg-shift {

    0%,
    100% {
        opacity: 1;
        transform: translateZ(0) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translateZ(0) scale(1.05);
    }
}

.promo-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--casino-border-light);
    border-radius: 24px;
    padding: 45px 35px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 0 rgba(224, 64, 253, 0);
}

.promo-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--casino-primary);
    box-shadow: 0 20px 50px rgba(224, 64, 253, 0.5),
        0 0 40px rgba(224, 64, 253, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.05);
}

.promo-card>* {
    position: relative;
    z-index: 1;
}

.promo-card--primary {
    background: linear-gradient(135deg, rgba(224, 64, 253, 0.25) 0%, rgba(140, 89, 252, 0.2) 100%);
    border-color: var(--casino-primary);
    position: relative;
    overflow: hidden;
}

.promo-card--primary::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(224, 64, 253, 0.3) 0%, transparent 70%);
    opacity: 0.8;
    z-index: 0;
    animation: promo-glow-primary 3s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes promo-glow-primary {

    0%,
    100% {
        opacity: 0.6;
        transform: translateZ(0) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateZ(0) scale(1.1);
    }
}

.promo-card--secondary {
    background: linear-gradient(135deg, rgba(224, 64, 253, 0.25) 0%, rgba(179, 29, 163, 0.22) 100%);
    border-color: rgba(224, 64, 253, 0.5);
    position: relative;
    overflow: hidden;
}

.promo-card--secondary::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(224, 64, 253, 0.3) 0%, transparent 70%);
    opacity: 0.8;
    z-index: 0;
    animation: promo-glow-secondary 3s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes promo-glow-secondary {

    0%,
    100% {
        opacity: 0.7;
        transform: translateZ(0) scale(1) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: translateZ(0) scale(1.1) rotate(5deg);
    }
}

.promo-card--secondary:hover {
    border-color: rgba(224, 64, 253, 0.9);
    box-shadow: 0 20px 50px rgba(224, 64, 253, 0.5),
        0 0 40px rgba(224, 64, 253, 0.3);
}

.promo-card--tertiary {
    background: linear-gradient(135deg, rgba(140, 89, 252, 0.25) 0%, rgba(224, 64, 253, 0.22) 100%);
    border-color: rgba(140, 89, 252, 0.5);
    position: relative;
    overflow: hidden;
}

.promo-card--tertiary::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(140, 89, 252, 0.3) 0%, transparent 70%);
    opacity: 0.8;
    z-index: 0;
    animation: promo-glow-tertiary 3s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes promo-glow-tertiary {

    0%,
    100% {
        opacity: 0.7;
        transform: translateZ(0) scale(1) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: translateZ(0) scale(1.1) rotate(-5deg);
    }
}

.promo-card--tertiary:hover {
    border-color: rgba(140, 89, 252, 0.9);
    box-shadow: 0 20px 50px rgba(140, 89, 252, 0.5),
        0 0 40px rgba(140, 89, 252, 0.3);
}

.promo-card__icon {
    font-size: 70px;
    color: var(--casino-primary);
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(224, 64, 253, 0.8));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.promo-card:hover .promo-card__icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 25px rgba(224, 64, 253, 1));
}

.promo-card--secondary .promo-card__icon {
    color: var(--casino-pink);
    filter: drop-shadow(0 0 15px rgba(224, 64, 253, 0.8));
}

.promo-card--secondary:hover .promo-card__icon {
    filter: drop-shadow(0 0 25px rgba(224, 64, 253, 1));
}

.promo-card--tertiary .promo-card__icon {
    color: var(--casino-purple);
    filter: drop-shadow(0 0 15px rgba(140, 89, 252, 0.8));
}

.promo-card--tertiary:hover .promo-card__icon {
    filter: drop-shadow(0 0 25px rgba(140, 89, 252, 1));
}

.promo-card__title {
    font-size: 32px;
    font-weight: 800;
    font-family: var(--casino-font-primary);
    color: var(--casino-text-primary);
    margin-bottom: 12px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(224, 64, 253, 0.5);
    transition: all 0.3s ease;
}

.promo-card:hover .promo-card__title {
    color: var(--casino-primary-light);
    text-shadow: 0 0 30px rgba(224, 64, 253, 0.9);
    transform: translateX(5px);
}

.promo-card__subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-family: var(--casino-font-body);
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.promo-card__decoration {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 180px;
    height: 180px;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.coin-decoration {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--casino-primary) 0%, rgba(224, 64, 253, 0.3) 50%, transparent 80%);
    border-radius: 50%;
    filter: blur(20px);
    animation: coin-decoration-pulse 3s ease-in-out infinite;
}

@keyframes coin-decoration-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.15;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.25;
    }
}

/* Quick Navigation Cards */
.quick-nav-section {
    padding: 40px 0;
    background-color: var(--casino-bg-primary);
    position: relative;
    overflow: hidden;
}

.quick-nav-section::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(224, 64, 253, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(140, 89, 252, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.quick-nav-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--casino-border-light);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.quick-nav-card:hover {
    background: rgba(224, 64, 253, 0.1);
    border-color: var(--casino-border-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--casino-shadow-primary);
    color: var(--casino-text-primary);
}

.quick-nav-card__icon {
    font-size: 48px;
    color: var(--casino-primary);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(224, 64, 253, 0.4));
}

.quick-nav-card:hover .quick-nav-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.quick-nav-card__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--casino-text-primary);
    margin: 0;
}

/* Game Search & Filter */
.game-search-filter {
    margin-bottom: 40px;
}

.game-search {
    position: relative;
}

.game-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}

.game-search input {
    padding-left: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--casino-border-light);
    border-radius: 10px;
    color: var(--casino-text-primary);
    font-size: 16px;
}

.game-search input:focus {
    border-color: var(--casino-border-dark);
    background: rgba(255, 255, 255, 0.08);
}

.game-filter select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--casino-border-light);
    border-radius: 10px;
    color: var(--casino-text-primary);
    padding: 0 20px;
    cursor: pointer;
}

.game-filter select:focus {
    border-color: var(--casino-border-dark);
    background: rgba(255, 255, 255, 0.08);
}

/* Enhanced Game Cards */
.game-item {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.game-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(224, 64, 253, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.game-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(224, 64, 253, 0.3), 0 0 30px rgba(140, 89, 252, 0.2);
}

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

.game-item__thumb {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.game-item__thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.game-item:hover .game-item__thumb::after {
    opacity: 1;
}

.game-item__content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--casino-border-light);
    border-top: none;
    border-radius: 0 0 15px 15px;
    padding: 20px;
}

/* Animation for winner cards */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.winner-card {
    animation: slideIn 0.5s ease-out;
}

/* Pulse animation for promotional cards */
@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(224, 64, 253, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(224, 64, 253, 0);
    }
}

@keyframes glow {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(224, 64, 253, 0.5), 0 0 20px rgba(224, 64, 253, 0.3);
    }

    50% {
        text-shadow: 0 0 20px rgba(224, 64, 253, 0.8), 0 0 30px rgba(224, 64, 253, 0.5);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.promo-card:hover {
    animation: pulse 2s infinite;
}

/* Gaming Neon Text Effects */
.banner-content__title span.text--base,
.section-header__title {
    animation: glow 3s ease-in-out infinite;
}

/* Floating animation for cards */
.game-item:hover,
.promo-card:hover,
.quick-nav-card:hover {
    animation: float 3s ease-in-out infinite;
}

/* Enhanced menu styling */
.menu li a i {
    margin-left: 5px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .header-actions {
        gap: 10px;
    }

    .balance-display {
        padding: 6px 15px;
        font-size: 14px;
    }

    .header-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .promo-card {
        min-height: 250px;
        padding: 30px 20px;
    }

    .promo-card__title {
        font-size: 24px;
    }

    .promo-card__icon {
        font-size: 50px;
    }

    .menu {}
}

@media (max-width: 767px) {

    .balance-display.d-md-flex.align-items-center {
        padding: 5px 10px;
    }

    .balance-amount {
        font-size: 14px;
    }

    .user-profile span {
        display: none;
    }

    .live-winners-section {
        padding: 20px 0;
    }

    .winner-card {
        min-width: 160px;
        padding: 12px;
    }

    .promo-section {
        padding: 40px 0;
    }

    .quick-nav-card {
        padding: 25px 15px;
    }

    .quick-nav-card__icon {
        font-size: 40px;
    }
}

/* ============================================
   Advanced Gaming Visual Effects
   ============================================ */

/* Neon glow effects */
.game-item__thumb {
    position: relative;
}

.game-item__thumb::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--casino-primary), var(--casino-accent-2), var(--casino-accent-1), var(--casino-primary));
    border-radius: 15px;
    opacity: 0;
    z-index: -1;
    filter: blur(10px);
    transition: opacity 0.3s ease;
}

.game-item:hover .game-item__thumb::before {
    opacity: 0.6;
    animation: rotate-gradient 3s linear infinite;
}

@keyframes rotate-gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Enhanced promotional card effects */
.promo-card {
    position: relative;
    overflow: visible;
}

.promo-card::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, transparent, var(--casino-primary), transparent);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    filter: blur(8px);
    transition: opacity 0.3s ease;
}

.promo-card:hover::after {
    opacity: 0.5;
}

/* Particle effect background */
.game-section,
.promo-section,
.top-section {
    position: relative;
}

.game-section::before,
.promo-section::after,
.top-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(224, 64, 253, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(140, 89, 252, 0.2), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(179, 29, 163, 0.15), transparent);
    background-size: 200% 200%;
    animation: particle-float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes particle-float {

    0%,
    100% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }
}

/* Enhanced button glow effects */
.cmn--btn.active {
    position: relative;
    overflow: hidden;
}

.cmn--btn.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cmn--btn.active:hover::after {
    width: 300px;
    height: 300px;
}

/* Gaming-style section dividers */
section {
    position: relative;
}

section::before,
section::after {
    pointer-events: none;
}

/* Enhanced card borders with glow */
.quick-nav-card,
.game-item,
.promo-card {
    border-width: 2px;
    position: relative;
}

.quick-nav-card::before,
.game-item::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(45deg, var(--casino-primary), var(--casino-accent-2), var(--casino-accent-1));
    -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.3s ease;
}

.quick-nav-card:hover::before,
.game-item:hover::after {
    opacity: 0.6;
    animation: border-glow 2s ease-in-out infinite;
}

@keyframes border-glow {

    0%,
    100% {
        filter: blur(3px);
    }

    50% {
        filter: blur(8px);
    }
}

/* Smooth scroll glow trail */
html {
    scroll-behavior: smooth;
}

/* Enhanced header with gaming aesthetics */
.header.sticky {
    background: rgba(17, 3, 78, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(224, 64, 253, 0.2);
    border-bottom: none;
}


/* ============================================
   CLEAN DESIGN IMPROVEMENTS
   Modern, Minimal, User-Attractive Design
   ============================================ */

/* Cleaner Spacing & Layout */
body {
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
}

section {
    position: relative;
    overflow: hidden;
}

/* Improved Typography Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-header__title {
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
}

/* Cleaner Card Designs */
.promo-card,
.game-item,
.quick-nav-card,
.winner-card {
    border: 1px solid var(--casino-border-light);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 45px 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.promo-card:hover {
    transform: translateY(-8px);
    border-color: var(--casino-border-medium);
    box-shadow: 0 16px 48px rgba(224, 64, 253, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.promo-card__icon {
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 12px rgba(224, 64, 253, 0.3));
}

.promo-card__title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.promo-card__subtitle {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 25px;
}

/* Cleaner Game Cards */
.game-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--casino-border-light);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.game-item:hover {
    transform: translateY(-8px);
    border-color: var(--casino-border-medium);
    box-shadow: 0 12px 40px rgba(224, 64, 253, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.game-item__thumb {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.2);
}

.game-item__content .title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.game-item__content p {
    font-size: 15px;
    opacity: 0.8;
}

/* Cleaner Quick Nav Cards */
.quick-nav-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--casino-border-light);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.quick-nav-card:hover {
    transform: translateY(-6px);
    border-color: var(--casino-border-medium);
    box-shadow: 0 12px 32px rgba(224, 64, 253, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.quick-nav-card__icon {
    font-size: 52px;
    margin-bottom: 18px;
    filter: drop-shadow(0 4px 12px rgba(224, 64, 253, 0.3));
    transition: transform 0.3s ease;
}

.quick-nav-card:hover .quick-nav-card__icon {
    transform: scale(1.1);
}

.quick-nav-card__title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Cleaner Buttons */
.cmn--btn {
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 14px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(224, 64, 253, 0.25);
}

.cmn--btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 64, 253, 0.35);
}

.cmn--btn.active {
    background: var(--casino-gradient-primary);
}

/* Improved Section Spacing */
.padding-top {
    padding-top: 100px;
}

.padding-bottom {
    padding-bottom: 100px;
}

@media (max-width: 1199px) {
    .padding-top {
        padding-top: 80px;
    }

    .padding-bottom {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .padding-top {
        padding-top: 70px;
    }

    .padding-bottom {
        padding-bottom: 70px;
    }
}

/* Cleaner Winner Cards */
.winner-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--casino-border-light);
    border-radius: 16px;
    padding: 18px 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.winner-card:hover {
    transform: translateY(-4px);
    border-color: var(--casino-border-medium);
    box-shadow: 0 8px 28px rgba(224, 64, 253, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.winner-avatar {
    border-width: 2.5px;
    box-shadow: 0 4px 12px rgba(224, 64, 253, 0.3);
}

.winner-amount {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

/* Cleaner Header */
.header.sticky {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--casino-border-light);
}

.menu li a {
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu li a:hover {
    background: rgba(224, 64, 253, 0.1);
    color: var(--casino-primary);
}

/* Cleaner Form Controls */
.form--control {
    border-radius: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--casino-border-light);
    transition: all 0.3s ease;
}

.form--control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--casino-border-medium);
    box-shadow: 0 0 0 4px rgba(224, 64, 253, 0.1);
}

.game-search input,
.game-filter select {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--casino-border-light);
}

/* Cleaner FAQ Items */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--casino-border-light);
    border-radius: 16px;
    padding: 20px 25px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--casino-border-medium);
}

.faq-item.open {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--casino-border-medium);
}

/* Enhanced Testimonial Cards - Gaming Style */
.testimonial-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
    border: 2px solid var(--casino-border-light);
    border-radius: 24px;
    padding: 45px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 0 rgba(224, 64, 253, 0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-item::before {
    opacity: 0.6;
    background: linear-gradient(135deg, rgba(224, 64, 253, 0.1) 0%, rgba(140, 89, 252, 0.08) 100%);
}

.testimonial-item:hover::before {
    opacity: 0.8;
}

/* Cleaner Why Items */
.why-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid var(--casino-border-light);
    transition: all 0.3s ease;
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--casino-border-medium);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(224, 64, 253, 0.15);
}

.why-item__thumb {
    border: 4px solid var(--casino-bg-card);
    background: rgba(224, 64, 253, 0.1);
    box-shadow: 0 4px 16px rgba(224, 64, 253, 0.2);
}

/* Enhanced How Items - Gaming Style */
.how-item {
    padding: 25px;
    transition: all 0.3s ease;
}

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

.how-item__thumb {
    background: var(--casino-gradient-primary);
    border: 3px solid var(--casino-primary);
    box-shadow: 0 0 30px rgba(224, 64, 253, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-item:hover .how-item__thumb {
    border-color: var(--casino-primary-light);
    box-shadow: 0 0 40px rgba(224, 64, 253, 0.8),
        0 0 60px rgba(140, 89, 252, 0.6),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    transform: scale(1.15) translateY(-5px);
}

/* Reduced Overlay Opacity for Cleaner Look */
.bg_img::before {
    opacity: 0.75;
}

/* Cleaner Footer */
.footer-section {
    border-top: 1px solid var(--casino-border-light);
}

.footer-bottom {
    border-top: 1px solid var(--casino-border-light);
    padding-top: 25px;
    margin-top: 25px;
}

/* Improved Visual Hierarchy */
.banner-content__title {
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -0.03em;
}

.banner-content__subtitle {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* Cleaner Balance Display */
.balance-display {
    border-radius: 12px;
    padding: 10px 15px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(224, 64, 253, 0.2);
}

/* Remove Excessive Glows - Keep It Clean */
.promo-card:hover,
.game-item:hover {
    animation: none;
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--casino-bg-card);
}

::-webkit-scrollbar-thumb {
    background: var(--casino-border-medium);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--casino-border-dark);
}

/* Cleaner Section Dividers */
.section-header {
    margin-bottom: 60px;
}

.section-header.text-center {
    text-align: center;
}

/* Better Mobile Spacing */
@media (max-width: 767px) {
    .promo-card {
        padding: 35px 25px;
    }

    .game-item {
        padding: 25px 20px;
    }

    .quick-nav-card {
        padding: 30px 20px;
    }

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

    .banner-content__title {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .banner-content__subtitle {
        font-size: 17px;
        margin-bottom: 30px;
    }
}

/* ============================================
   VIP LEVEL PAGE STYLES
   ============================================ */

/* VIP Introduction Section */
.vip-intro-section {
    background: var(--casino-bg-primary);
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(255, 200, 39, 0.2) 0%, rgba(224, 64, 253, 0.2) 100%);
    border: 2px solid var(--casino-primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--casino-primary);
}

.vip-badge i {
    font-size: 20px;
    color: var(--casino-gold);
}

.vip-feature-card {
    background: var(--casino-bg-card);
    border: 2px solid var(--casino-border-light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.vip-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--casino-primary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(224, 64, 253, 0.2);
}

.vip-feature-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--casino-primary), var(--casino-accent-2));
    border-radius: 50%;
    border: 2px solid var(--casino-primary);
    box-shadow: 0 4px 20px rgba(224, 64, 253, 0.4);
    transition: all 0.3s ease;
}

.vip-feature-card:hover .vip-feature-card__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 30px rgba(224, 64, 253, 0.6);
}

.vip-feature-card__icon i {
    font-size: 36px;
    color: var(--casino-text-primary);
}

.vip-feature-card__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--casino-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vip-feature-card p {
    color: var(--casino-text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 15px;
}

/* VIP Status Section */
.vip-status-section {
    background: var(--casino-bg-primary);
}

.vip-status-card {
    background: var(--casino-bg-card);
    border: 2px solid var(--casino-border-light);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.vip-status-card:hover {
    border-color: var(--casino-primary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(224, 64, 253, 0.2);
}

@media (max-width: 767px) {
    .vip-status-card {
        padding: 40px 30px;
    }
}

.vip-status-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--casino-text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.current-vip-level {
    margin-bottom: 30px;
}

.vip-level-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vip-level-badge i {
    font-size: 32px;
}

.vip-level-badge--bronze {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.3) 0%, rgba(184, 115, 51, 0.2) 100%);
    border: 2px solid #CD7F32;
    color: #CD7F32;
}

.vip-level-badge--silver {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.3) 0%, rgba(169, 169, 169, 0.2) 100%);
    border: 2px solid #C0C0C0;
    color: #C0C0C0;
}

.vip-level-badge--gold {
    background: linear-gradient(135deg, rgba(255, 200, 39, 0.3) 0%, rgba(255, 215, 0, 0.2) 100%);
    border: 2px solid var(--casino-gold);
    color: var(--casino-gold);
}

.vip-level-badge--platinum {
    background: linear-gradient(135deg, rgba(229, 228, 226, 0.3) 0%, rgba(206, 206, 206, 0.2) 100%);
    border: 2px solid #E5E4E2;
    color: #E5E4E2;
}

.vip-level-badge--diamond {
    background: linear-gradient(135deg, rgba(185, 242, 255, 0.3) 0%, rgba(135, 206, 250, 0.2) 100%);
    border: 2px solid #B9F2FF;
    color: #B9F2FF;
}

.vip-level-badge--elite {
    background: linear-gradient(135deg, rgba(224, 64, 253, 0.3) 0%, rgba(140, 89, 252, 0.2) 100%);
    border: 2px solid var(--casino-primary);
    color: var(--casino-primary);
}

.vip-progress-wrapper {
    margin-top: 30px;
}

.vip-progress-info {
    font-size: 15px;
    margin-bottom: 10px;
}

.progress-label {
    color: var(--casino-text-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.progress-percentage {
    font-weight: 700;
    color: var(--casino-primary);
    font-size: 16px;
}

.vip-progress-bar {
    width: 100%;
    height: 18px;
    background: var(--casino-bg-dark);
    border: 2px solid var(--casino-border-light);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.vip-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--casino-primary) 0%, var(--casino-gold) 100%);
    border-radius: 10px;
    transition: width 0.6s ease;
    position: relative;
    overflow: hidden;
}

.vip-progress-bar-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    font-weight: 600;
    color: #e5e7eb;
    text-shadow: 0 1px 2px rgba(15, 23, 42, 0.9);
    pointer-events: none;
    white-space: nowrap;
}

/* Gamer-style loyalty card tweaks */
.gamer-tier-card {
    background: radial-gradient(circle at top, rgba(129, 140, 248, 0.24), transparent 55%),
                radial-gradient(circle at bottom, rgba(56, 189, 248, 0.18), transparent 60%),
                var(--casino-bg-card);
    border-color: rgba(96, 165, 250, 0.65);
    box-shadow:
        0 0 0 1px rgba(59, 130, 246, 0.6),
        0 20px 45px rgba(15, 23, 42, 0.95);
}

.gamer-tier-title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #e5e7eb;
}

.gamer-tier-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(34, 197, 235, 0.7);
    box-shadow: 0 0 12px rgba(34, 197, 235, 0.6);
}

.gamer-tier-chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
}

.gamer-tier-chip-text {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e5e7eb;
}

.gamer-current-tier-title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #f9fafb;
    font-family: var(--casino-font-primary);
}

.vip-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progress-shine 2s infinite;
}

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

    100% {
        transform: translateX(100%);
    }
}

.vip-progress-stats {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--casino-border-light);
}

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

.stat-label {
    font-size: 13px;
    color: var(--casino-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--casino-primary);
}

/* VIP Level Cards */
.vip-levels-section {
    background: var(--casino-bg-primary);
}

.vip-level-card {
    background: var(--casino-bg-card);
    border: 2px solid var(--casino-border-light);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.vip-level-card:hover {
    transform: translateY(-8px);
    border-color: var(--casino-primary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(224, 64, 253, 0.2);
}

.vip-level-card.active {
    border-color: var(--casino-primary);
    box-shadow: 0 0 40px rgba(224, 64, 253, 0.5), 0 8px 30px rgba(0, 0, 0, 0.3);
}

.vip-level-badge-active {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--casino-primary);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.vip-level-card__header {
    padding: 40px 30px 30px;
    text-align: center;
    border-bottom: 1px solid var(--casino-border-light);
}

.vip-level-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid;
    font-size: 48px;
}

.vip-level-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--casino-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vip-level-requirement {
    font-size: 14px;
    color: var(--casino-text-secondary);
    margin: 0;
}

.vip-level-card--bronze .vip-level-icon {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.2) 0%, rgba(184, 115, 51, 0.1) 100%);
    border-color: #CD7F32;
    color: #CD7F32;
}

.vip-level-card--silver .vip-level-icon {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2) 0%, rgba(169, 169, 169, 0.1) 100%);
    border-color: #C0C0C0;
    color: #C0C0C0;
}

.vip-level-card--gold .vip-level-icon {
    background: linear-gradient(135deg, rgba(255, 200, 39, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-color: var(--casino-gold);
    color: var(--casino-gold);
}

.vip-level-card--platinum .vip-level-icon {
    background: linear-gradient(135deg, rgba(229, 228, 226, 0.2) 0%, rgba(206, 206, 206, 0.1) 100%);
    border-color: #E5E4E2;
    color: #E5E4E2;
}

.vip-level-card--diamond .vip-level-icon {
    background: linear-gradient(135deg, rgba(185, 242, 255, 0.2) 0%, rgba(135, 206, 250, 0.1) 100%);
    border-color: #B9F2FF;
    color: #B9F2FF;
}

.vip-level-card--elite .vip-level-icon {
    background: linear-gradient(135deg, rgba(224, 64, 253, 0.2) 0%, rgba(140, 89, 252, 0.1) 100%);
    border-color: var(--casino-primary);
    color: var(--casino-primary);
}

.vip-level-card__body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vip-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.vip-benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--casino-text-primary);
    font-size: 15px;
    border-bottom: 1px solid var(--casino-border-light);
    transition: all 0.3s ease;
}

.vip-benefits-list li:hover {
    color: var(--casino-primary);
    padding-left: 5px;
}

.vip-benefits-list li:last-child {
    border-bottom: none;
}

.vip-benefits-list li i {
    color: var(--casino-primary);
    font-size: 18px;
    flex-shrink: 0;
}

.vip-level-points {
    padding: 20px;
    background: var(--casino-bg-dark);
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--casino-border-light);
}

.points-label {
    display: block;
    font-size: 12px;
    color: var(--casino-text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.points-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--casino-primary);
}

/* VIP Benefits Comparison Table */
.vip-comparison-wrapper {
    background: var(--casino-bg-card);
    border: 2px solid var(--casino-border-light);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.vip-comparison-table {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin: 0;
}

.vip-comparison-table thead {
    background: linear-gradient(135deg, var(--casino-primary), var(--casino-accent-2));
}

.vip-comparison-table thead th {
    padding: 20px 15px;
    color: var(--casino-text-primary);
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid var(--casino-primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vip-comparison-table thead th:first-child {
    text-align: left;
}

.vip-comparison-table tbody tr {
    border-bottom: 1px solid var(--casino-border-light);
    transition: background 0.3s ease;
}

.vip-comparison-table tbody tr:hover {
    background: var(--casino-bg-dark);
}

.vip-comparison-table tbody td {
    padding: 18px 15px;
    color: var(--casino-text-primary);
    text-align: center;
    font-size: 14px;
}

.vip-comparison-table tbody td.benefit-name {
    font-weight: 600;
    text-align: left;
    color: var(--casino-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.vip-comparison-table tbody td i {
    font-size: 20px;
}

/* VIP Benefits Section */
.vip-benefits-section {
    background: var(--casino-bg-primary);
}

/* VIP How Section */
.vip-how-section {
    background: var(--casino-bg-primary);
}

/* VIP FAQ Section */
.vip-faq-section {
    background: var(--casino-bg-primary);
}

.vip-faq-section .faq-item {
    background: var(--casino-bg-card);
    border: 2px solid var(--casino-border-light);
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.vip-faq-section .faq-item:hover {
    border-color: var(--casino-primary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(224, 64, 253, 0.2);
}

.vip-faq-section .faq-item:hover {
    border-color: var(--casino-primary);
    background: rgba(255, 255, 255, 0.05);
}

.vip-faq-section .faq-item__title {
    cursor: pointer;
}

.vip-faq-section .faq-item__title .title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.vip-faq-section .faq-item__content {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-faq-section .faq-item__content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .vip-status-card {
        padding: 40px 30px;
    }

    .vip-level-card__header {
        padding: 30px 20px 20px;
    }

    .vip-level-card__body {
        padding: 25px 20px;
    }

    .vip-comparison-table {
        font-size: 12px;
    }

    .vip-comparison-table thead th,
    .vip-comparison-table tbody td {
        padding: 12px 8px;
    }
}

@media (max-width: 767px) {
    .vip-badge {
        padding: 10px 20px;
        font-size: 12px;
    }

    .vip-status-title {
        font-size: 24px;
    }

    .vip-level-badge {
        padding: 15px 30px;
        font-size: 20px;
    }

    .vip-level-badge i {
        font-size: 24px;
    }

    .vip-level-name {
        font-size: 24px;
    }

    .vip-feature-card {
        padding: 30px 20px;
    }

    .vip-comparison-table {
        display: block;
        overflow-x: auto;
    }
}

/* Auto-scrolling Promos Slider (PPT-style) - Enhanced Design */
.promo-slider-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(17, 3, 78, 0.95) 0%, rgba(26, 6, 94, 0.95) 100%) !important;
}

.promo-slider-section::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(224, 64, 253, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(140, 89, 252, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(179, 29, 163, 0.2) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.promo-slider-section .container {
    position: relative;
    z-index: 1;
}

.promo-slider-section .section-header {
    margin-bottom: 50px;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(224, 64, 253, 0.2);
    border: 1px solid var(--casino-primary);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.promo-dot {
    width: 8px;
    height: 8px;
    background: var(--casino-primary);
    border-radius: 50%;
    animation: promo-dot-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(224, 64, 253, 0.8);
}

@keyframes promo-dot-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.promo-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--casino-primary);
    text-shadow: 0 0 10px rgba(224, 64, 253, 0.6);
}

.promo-slider-auto {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.promo-slider-auto .promo-slide {
    padding: 0 20px;
    transition: transform 0.3s ease;
}

.promo-slider-auto .slick-dots {
    bottom: -50px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.promo-slider-auto .slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0;
}

.promo-slider-auto .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    background: rgba(224, 64, 253, 0.3);
    border: 2px solid var(--casino-primary);
    transition: all 0.3s ease;
}

.promo-slider-auto .slick-dots li button:before {
    display: none;
}

.promo-slider-auto .slick-dots li.slick-active button {
    background: var(--casino-primary);
    box-shadow: 0 0 15px rgba(224, 64, 253, 0.8);
    transform: scale(1.2);
}

/* Enhanced Promo Card Styling */
.promo-slider-auto .promo-card {
    position: relative;
    background: rgba(26, 6, 94, 0.8);
    border: 2px solid var(--casino-border-light);
    border-radius: 30px;
    padding: 50px 40px;
    overflow: visible;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 0 0 rgba(224, 64, 253, 0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-slider-auto .promo-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--casino-primary);
    box-shadow: 0 25px 60px rgba(224, 64, 253, 0.6),
        0 0 50px rgba(224, 64, 253, 0.4),
        inset 0 0 40px rgba(255, 255, 255, 0.05);
}

.promo-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: var(--casino-gradient-primary);
    color: var(--casino-bg-dark);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(224, 64, 253, 0.5);
    z-index: 10;
    animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(224, 64, 253, 0.5);
    }

    50% {
        box-shadow: 0 4px 25px rgba(224, 64, 253, 0.8);
    }
}

.promo-slider-auto .promo-card__icon {
    font-size: 80px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(224, 64, 253, 0.8));
    transition: all 0.4s ease;
}

.promo-slider-auto .promo-card:hover .promo-card__icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 30px rgba(224, 64, 253, 1));
}

.promo-slider-auto .promo-card__title {
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.promo-slider-auto .promo-card__subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.promo-card__amount {
    font-size: 48px;
    font-weight: 900;
    font-family: var(--casino-font-primary);
    background: var(--casino-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0;
    text-shadow: 0 0 30px rgba(224, 64, 253, 0.5);
    line-height: 1;
}

.promo-slider-auto .promo-card__decoration {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 200px;
    height: 200px;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.promo-slider-auto .coin-decoration {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--casino-primary) 0%, rgba(224, 64, 253, 0.3) 50%, transparent 80%);
    border-radius: 50%;
    animation: coin-rotate 8s linear infinite;
}

@keyframes coin-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 991px) {
    .promo-slider-section {
        padding: 80px 0;
    }

    .promo-slider-auto .promo-card {
        min-height: 400px;
        padding: 40px 30px;
    }

    .promo-slider-auto .promo-card__icon {
        font-size: 60px;
    }

    .promo-slider-auto .promo-card__title {
        font-size: 28px;
    }

    .promo-card__amount {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .promo-slider-section {
        padding: 60px 0;
    }

    .promo-slider-auto .promo-card {
        min-height: 350px;
        padding: 30px 25px;
    }

    .promo-slider-auto .promo-card__icon {
        font-size: 50px;
        margin-bottom: 20px;
    }

    .promo-slider-auto .promo-card__title {
        font-size: 24px;
    }

    .promo-card__amount {
        font-size: 32px;
    }

    .promo-slider-auto .slick-dots {
        bottom: -40px;
    }
}

/* Banner Logo Styling */
.banner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.banner-logo img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(224, 64, 253, 0.5));
    margin: 0 auto;
    width: 150px;
}

.banner-content__title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 30px rgba(224, 64, 253, 0.6);
}

@media (max-width: 767px) {
    .banner-content__title {
        font-size: 2rem;
    }

    .banner-logo img {
        max-width: 200px;
    }
}

/* Promos Listing Section */
.promos-listing-section {
    background-color: var(--casino-bg-primary);
    padding: 60px 0;
}

/* Promo Navigation Tabs */
.promo-nav-tabs {
    margin-bottom: 40px;
}

.promo-tabs-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 12px;
    flex-wrap: wrap;
    background: var(--casino-bg-card);
    padding: 8px;
    border-radius: 12px;
    border: 1px solid var(--casino-border-light);
}

.promo-tabs-list li {
    margin: 0;
}

.promo-tab {
    display: block;
    padding: 14px 28px;
    color: var(--casino-text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 8px;
    background-color: transparent;
    position: relative;
    border: 1px solid transparent;
}

.promo-tab:hover {
    color: var(--casino-text-primary);
    background-color: rgba(224, 64, 253, 0.15);
    border-color: rgba(224, 64, 253, 0.3);
    transform: translateY(-2px);
}

.promo-tab.active {
    color: var(--casino-text-primary);
    background: linear-gradient(135deg, var(--casino-primary), var(--casino-accent-2));
    border-color: var(--casino-primary);
    box-shadow: 0 4px 15px rgba(224, 64, 253, 0.4);
    transform: translateY(-2px);
}

/* New Promo Cards */
.promo-card-item {
    transition: all 0.4s ease;
}

.promo-card-new {
    background: var(--casino-bg-card);
    border: 2px solid;
    border-radius: 16px;
    min-height: 450px !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.promo-card-new--purple {
    border-color: var(--casino-primary);
    box-shadow: 0 0 0 2px var(--casino-primary), 0 4px 20px rgba(224, 64, 253, 0.4);
}

.promo-card-new--pink {
    border-color: var(--casino-accent-3);
    box-shadow: 0 0 0 2px var(--casino-accent-3), 0 4px 20px rgba(179, 29, 163, 0.4);
}

.promo-card-new--blue {
    border-color: var(--casino-accent-2);
    box-shadow: 0 0 0 2px var(--casino-accent-2), 0 4px 20px rgba(140, 89, 252, 0.4);
}

.promo-card-new--green {
    border-color: var(--casino-green);
    box-shadow: 0 0 0 2px var(--casino-green), 0 4px 20px rgba(50, 205, 50, 0.4);
}

.promo-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.promo-card-new--purple:hover {
    box-shadow: 0 12px 40px rgba(224, 64, 253, 0.5);
}

.promo-card-new--pink:hover {
    box-shadow: 0 12px 40px rgba(179, 29, 163, 0.5);
}

.promo-card-new--blue:hover {
    box-shadow: 0 12px 40px rgba(140, 89, 252, 0.5);
}

.promo-card-new--green:hover {
    box-shadow: 0 12px 40px rgba(50, 205, 50, 0.5);
}

.promo-card-new__image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.promo-card-new__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.promo-card-new:hover .promo-card-new__image img {
    transform: scale(1.1);
}

.promo-card-new__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.promo-card-new__content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: var(--casino-bg-card);
}

/* Title overlay on image */
.promo-card-new__image .promo-card-new__header {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
    margin-bottom: 0;
}

.promo-card-new__image .promo-card-new__title {
    color: var(--casino-text-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 800;
}

.promo-card-new__image .promo-card-new__subtitle {
    color: var(--casino-text-primary);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    font-size: 15px;
    line-height: 1.5;
}

.promo-card-new__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--casino-text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
    text-transform: uppercase;
}

.promo-card-new__subtitle {
    font-size: 14px;
    color: var(--casino-text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.promo-card-new__games {
    margin-bottom: 15px;
    min-height: 45px;
    padding: 10px;
    background: var(--casino-bg-dark);
    border-radius: 6px;
    border: 1px solid var(--casino-border-light);
}

.game-logo {
    font-size: 13px;
    color: var(--casino-text-secondary);
    margin-bottom: 6px;
    font-weight: 500;
    line-height: 1.5;
}

.game-logo:last-child {
    margin-bottom: 0;
}

.promo-card-new__terms {
    flex-grow: 1;
    margin-bottom: 15px;
    max-height: 140px;
    overflow-y: auto;
    padding-right: 8px;
}

.promo-card-new__terms::-webkit-scrollbar {
    width: 4px;
}

.promo-card-new__terms::-webkit-scrollbar-track {
    background: var(--casino-bg-dark);
    border-radius: 2px;
}

.promo-card-new__terms::-webkit-scrollbar-thumb {
    background: var(--casino-border-medium);
    border-radius: 2px;
}

.promo-card-new__terms p {
    font-size: 12px;
    color: var(--casino-text-muted);
    line-height: 1.6;
    margin: 0;
}

.promo-card-new__action {
    margin-top: auto;
}

.btn-more-info {
    display: inline-block;
    width: 100%;
    padding: 14px 20px;
    background: var(--casino-accent-2);
    color: var(--casino-text-primary);
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.5px;
}

.btn-more-info:hover {
    background: var(--casino-accent-2-light);
    color: var(--casino-text-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--casino-shadow-purple);
}

@media (max-width: 991px) {
    .promo-card-new__content {
        padding: 18px;
    }

    .promo-card-new__image {
        height: 180px;
    }

    .promo-card-new__title {
        font-size: 16px;
    }

    .promo-tabs-list {
        gap: 8px;
        padding: 6px;
    }

    .promo-tab {
        padding: 12px 20px;
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .promos-listing-section {
        padding: 40px 0;
    }

    .promo-nav-tabs {
        margin-bottom: 30px;
    }

    .promo-tabs-list {
        justify-content: center;
    }

    .promo-card-new__content {
        padding: 15px;
    }

    .promo-card-new__image {
        height: 160px;
    }

    .promo-card-new__title {
        font-size: 15px;
    }

    .promo-card-new__subtitle {
        font-size: 13px;
    }

    .promo-card-new__terms p {
        font-size: 11px;
    }

    .game-logo {
        font-size: 12px;
    }
}

/* Promo Detail Section */
.promo-detail-section {
    background-color: var(--casino-bg-primary);
    padding: 60px 0;
}

.promo-detail-content {
    background: var(--casino-bg-card);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid var(--casino-border-light);
}

.promo-badge {
    display: inline-block;
}

.badge-text {
    display: inline-block;
    padding: 6px 16px;
    background: var(--casino-primary);
    color: var(--casino-text-primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.promo-detail-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--casino-text-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.promo-detail-subtitle {
    font-size: 20px;
    color: var(--casino-text-secondary);
    margin-bottom: 0;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--casino-text-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--casino-border-light);
}

.promo-description p {
    font-size: 16px;
    color: var(--casino-text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.games-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.game-item {
    padding: 12px 20px;
    background: var(--casino-bg-dark);
    border: 1px solid var(--casino-border-light);
    border-radius: 8px;
    color: var(--casino-text-primary);
    font-size: 14px;
}

.steps-list {
    padding-left: 20px;
}

.steps-list li {
    font-size: 16px;
    color: var(--casino-text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
}

.terms-content {
    font-size: 14px;
    color: var(--casino-text-secondary);
    line-height: 1.8;
}

.terms-content p {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--casino-text-primary);
}

.terms-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.terms-content ul li {
    margin-bottom: 8px;
}

/* Promo Detail Sidebar */
.promo-detail-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--casino-bg-card);
    border: 1px solid var(--casino-border-light);
    border-radius: 12px;
    overflow: hidden;
}

.sidebar-card-header {
    background: var(--casino-bg-dark);
    padding: 15px 20px;
    border-bottom: 1px solid var(--casino-border-light);
}

.sidebar-card-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--casino-text-primary);
    margin: 0;
}

.sidebar-card-body {
    padding: 20px;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
}

.btn-action-primary {
    background: var(--casino-primary);
    color: var(--casino-text-primary);
}

.btn-action-primary:hover {
    background: var(--casino-primary-light);
    color: var(--casino-text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--casino-shadow-primary);
}

.btn-action-secondary {
    background: var(--casino-bg-secondary);
    color: var(--casino-text-primary);
    border: 1px solid var(--casino-border-medium);
}

.btn-action-secondary:hover {
    background: var(--casino-bg-dark);
    color: var(--casino-text-primary);
    border-color: var(--casino-primary);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--casino-border-light);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-size: 14px;
    color: var(--casino-text-muted);
}

.summary-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--casino-text-primary);
}

.other-promo-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--casino-border-light);
}

.other-promo-item:last-child {
    border-bottom: none;
}

.other-promo-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: color 0.3s ease;
}

.other-promo-item a:hover {
    color: var(--casino-primary-light);
}

.other-promo-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--casino-text-primary);
    margin-bottom: 5px;
}

.other-promo-item p {
    font-size: 13px;
    color: var(--casino-text-muted);
    margin: 0;
}

@media (max-width: 991px) {
    .promo-detail-content {
        padding: 30px;
        margin-bottom: 30px;
    }

    .promo-detail-title {
        font-size: 28px;
    }

    .promo-detail-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .promo-detail-content {
        padding: 20px;
    }

    .promo-detail-title {
        font-size: 24px;
    }

    .promo-detail-subtitle {
        font-size: 16px;
    }

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

/* Additional Responsive Styles */
@media (max-width: 991px) {

    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Forms */
    .form-control,
    .form-select {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    /* Containers */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Buttons */
    .btn {
        min-height: 44px;
        /* Touch target size */
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Cards */
    .card {
        margin-bottom: 20px;
    }

    /* Text */
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    /* Section padding */
    .padding-top {
        padding-top: 40px;
    }

    .padding-bottom {
        padding-bottom: 40px;
    }
}

@media (max-width: 767px) {

    /* Smaller text on mobile */
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 16px;
    }

    /* Section header titles - responsive */
    .section-header__title {
        font-size: 20px !important;
        line-height: 1.3;
    }

    /* Section header subtitle */
    .section-header__subtitle {
        font-size: 14px !important;
    }

    /* FAQ item titles */
    .faq-item__title .title {
        font-size: 14px !important;
    }

    /* Why section item titles */
    .why-item__content .title {
        font-size: 16px !important;
    }

    /* Testimonial names */
    .testimonial-item .name {
        font-size: 14px !important;
    }

    /* Hero promo titles - mobile */
    .hero-promo-title {
        font-size: 2.5rem !important;
    }

    .hero-promo-subtitle {
        font-size: 1.1rem !important;
    }

    .hero-promo-amount {
        font-size: 3.5rem !important;
    }

    /* Section padding */
    .padding-top {
        padding-top: 30px;
    }

    .padding-bottom {
        padding-bottom: 30px;
    }

    /* Buttons */
    .btn {
        min-height: 40px;
        padding: 8px 16px;
        font-size: 13px;
    }

    /* Forms */
    .form-control,
    .form-select {
        font-size: 16px;
        padding: 10px 15px;
    }

    /* Tables - ensure horizontal scroll if needed */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    /* Links */
    a {
        display: inline-flex;
        align-items: center;
    }
}

@media (max-width: 575px) {

    /* Extra small devices */
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 18px;
    }

    h3 {
        font-size: 16px;
    }

    /* Section header titles - extra small */
    .section-header__title {
        font-size: 18px !important;
        line-height: 1.3;
    }

    /* Section header subtitle */
    .section-header__subtitle {
        font-size: 13px !important;
    }

    /* FAQ item titles */
    .faq-item__title .title {
        font-size: 13px !important;
    }

    /* Why section item titles */
    .why-item__content .title {
        font-size: 15px !important;
    }

    /* Hero promo titles - extra small */
    .hero-promo-title {
        font-size: 2rem !important;
    }

    .hero-promo-subtitle {
        font-size: 1rem !important;
    }

    .hero-promo-amount {
        font-size: 2.8rem !important;
    }

    /* Section padding */
    .padding-top {
        padding-top: 25px;
    }

    .padding-bottom {
        padding-bottom: 25px;
    }

    /* Buttons */
    .btn {
        min-height: 36px;
        padding: 6px 12px;
        font-size: 12px;
    }

    /* Footer menu spacing on extra small */
    .footer-nav-links li {
        margin-bottom: 8px;
        line-height: normal;
        padding: 0;
    }

    .footer-nav-links li a {
        font-size: 12px;
        padding: 0;
    }
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent text overflow */
p,
span,
div,
a,
li {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Responsive iframes and videos */
iframe,
video,
embed {
    max-width: 100%;
    height: auto;
}

/* User Profile Sidebar for Mobile */
.user-profile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: var(--casino-bg-dark);
    z-index: 10000;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.user-profile-sidebar.active {
    right: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sidebar-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 10001;
}

.sidebar-header {
    padding: 20px;
    background: var(--casino-bg-card);
    border-bottom: 1px solid var(--casino-border-medium);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.sidebar-user-info {
    flex: 1;
}

.user-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--casino-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(224, 64, 253, 0.4);
    overflow: hidden;
    position: relative;
}

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

.sidebar-user-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--casino-text-primary);
    margin: 0 0 10px 0;
}

.balance-display-sidebar {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: rgba(224, 64, 253, 0.1);
    border: 1px solid rgba(224, 64, 253, 0.3);
    border-radius: 8px;
    font-size: 14px;
    color: var(--casino-text-primary);
}

.balance-display-sidebar i {
    color: var(--casino-primary);
}

.sidebar-close-btn {
    background: transparent;
    border: none;
    color: var(--casino-text-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.sidebar-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--casino-primary);
}

.sidebar-menu {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    flex: 1;
    overflow-y: auto;
}

.sidebar-menu li {
    margin: 0;
    padding: 0;
}

.sidebar-menu li a,
.sidebar-menu li div
{
display: flex;
align-items: center;
padding: 15px 20px;
color: var(--casino-text-primary);
text-decoration: none;
font-size: 15px;
font-weight: 500;
transition: all 0.3s ease;
border-left: 3px solid transparent;
}

.sidebar-menu li a i .sidebar-menu li div i {
    font-size: 20px;
    width: 30px;
    text-align: center;
    margin-right: 15px;
    color: var(--casino-text-muted);
    transition: color 0.3s ease;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active,
.sidebar-menu li div:hover,
.sidebar-menu li div.active {
    background: rgba(224, 64, 253, 0.1);
    border-left-color: var(--casino-primary);
    color: var(--casino-primary);
}

.sidebar-menu li a:hover i,
.sidebar-menu li a.active i,
.sidebar-menu li div:hover i,
.sidebar-menu li div.active i {
    color: var(--casino-primary);
}

body.sidebar-open {
    overflow: hidden;
}

@media (max-width: 575px) {
    .user-profile-sidebar {
        width: 280px;
        max-width: 90%;
    }

    .sidebar-header {
        padding: 15px;
    }

    .user-avatar-large {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 12px;
    }

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

    .sidebar-menu li a,
    .sidebar-menu li div {
        padding: 12px 15px;
        font-size: 14px;
    }

    .sidebar-menu li a i,
    .sidebar-menu li div i {
        font-size: 18px;
        width: 25px;
        margin-right: 12px;
    }

    .hero-slider-section .slick-dots {
        bottom: 0;
    }

    .hero-slider-section .slick-dots li {
        width: 12px;
        height: 12px;
    }

    .hero-slider-section .slick-dots li.slick-active button {
        width: 10px;
        height: 10px;
    }

    .hero-slider-section .slick-dots li button {
        width: 12px;
        height: 12px;
    }

}

.header-bottom-area .menu::-webkit-scrollbar {
    display: none;
}

/* Optional: show position indicator in red */
.header-bottom-area .menu::-webkit-scrollbar-thumb {
    display: none;
}

/* Affiliate Section Styles */
.affiliate-section {
    position: relative;
    background-color: var(--casino-bg-primary);
}

.affiliate-content-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.affiliate-header {
    margin-bottom: 40px;
}

.affiliate-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--casino-text-primary);
    line-height: 1.3;
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: 0.5px;
}

.affiliate-intro {
    margin-bottom: 50px;
}

.affiliate-intro .lead-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--casino-text-primary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.affiliate-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--casino-text-secondary);
    margin-bottom: 18px;
}

.affiliate-intro p:last-child {
    margin-bottom: 0;
}

.affiliate-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--casino-border-light);
    border-radius: 24px;
    padding: 40px;
    margin-top: 40px;
}

.contact-form-wrapper {
    width: 100%;
}

.contact-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--casino-text-primary);
    margin-bottom: 10px;
}

.contact-section-subtitle {
    font-size: 15px;
    color: var(--casino-text-secondary);
    line-height: 1.6;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--casino-text-primary);
    margin-bottom: 8px;
    display: block;
}

.contact-form .form--control {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--casino-border-light);
    border-radius: 12px;
    color: var(--casino-text-primary);
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form .form--control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--casino-primary);
    box-shadow: 0 0 0 4px rgba(224, 64, 253, 0.1);
    outline: none;
}

.contact-form .form--control::placeholder {
    color: var(--casino-text-muted);
}

.contact-form textarea.form--control {
    resize: vertical;
    min-height: 120px;
}

.text--danger {
    color: #ff4757;
}

@media (max-width: 991px) {
    .affiliate-title {
        font-size: 28px;
    }

    .affiliate-intro .lead-text {
        font-size: 18px;
    }

    .affiliate-intro p {
        font-size: 16px;
    }

    .affiliate-form-wrapper {
        padding: 30px 25px;
    }
}

@media (max-width: 767px) {
    .affiliate-title {
        font-size: 24px;
    }

    .affiliate-intro {
        margin-bottom: 40px;
    }

    .affiliate-intro .lead-text {
        font-size: 17px;
    }

    .affiliate-intro p {
        font-size: 15px;
        line-height: 1.7;
    }

    .affiliate-form-wrapper {
        padding: 25px 20px;
        border-radius: 16px;
    }

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

    .contact-section-subtitle {
        font-size: 14px;
    }
}

/* Loyalty Rewards Program Styles */
.loyalty-rewards-section {
    position: relative;
    background-color: var(--casino-bg-primary);
}

.loyalty-intro {
    margin-bottom: 50px;
}

.loyalty-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--casino-text-primary);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.loyalty-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--casino-text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.loyalty-tier-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--casino-border-light);
    border-radius: 24px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.loyalty-tier-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.loyalty-tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: currentColor;
}

.loyalty-tier-card:hover::before {
    opacity: 1;
}

.tier-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--casino-border-light);
}

.tier-emoji {
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 1;
}

.tier-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--casino-text-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-subtitle {
    font-size: 15px;
    color: var(--casino-text-secondary);
    margin: 0;
    line-height: 1.5;
}

.tier-body {
    padding-top: 20px;
}

.tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-benefits li {
    padding: 12px 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--casino-text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tier-benefits li i {
    color: currentColor;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.tier-benefits li strong {
    color: var(--casino-text-primary);
    font-weight: 600;
}

/* Platinum Tier */
.loyalty-tier-card--platinum {
    color: #E5E4E2;
    border-color: rgba(229, 228, 226, 0.3);
}

.loyalty-tier-card--platinum:hover {
    background: rgba(229, 228, 226, 0.05);
    border-color: #E5E4E2;
    box-shadow: 0 12px 40px rgba(229, 228, 226, 0.2);
}

.loyalty-tier-card--platinum .tier-benefits li i {
    color: #E5E4E2;
}

/* Gold Tier */
.loyalty-tier-card--gold {
    color: var(--casino-gold, #FFC827);
    border-color: rgba(255, 200, 39, 0.3);
}

.loyalty-tier-card--gold:hover {
    background: rgba(255, 200, 39, 0.05);
    border-color: var(--casino-gold, #FFC827);
    box-shadow: 0 12px 40px rgba(255, 200, 39, 0.2);
}

.loyalty-tier-card--gold .tier-benefits li i {
    color: var(--casino-gold, #FFC827);
}

/* Silver Tier */
.loyalty-tier-card--silver {
    color: #C0C0C0;
    border-color: rgba(192, 192, 192, 0.3);
}

.loyalty-tier-card--silver:hover {
    background: rgba(192, 192, 192, 0.05);
    border-color: #C0C0C0;
    box-shadow: 0 12px 40px rgba(192, 192, 192, 0.2);
}

.loyalty-tier-card--silver .tier-benefits li i {
    color: #C0C0C0;
}

/* Bronze Tier */
.loyalty-tier-card--bronze {
    color: #CD7F32;
    border-color: rgba(205, 127, 50, 0.3);
}

.loyalty-tier-card--bronze:hover {
    background: rgba(205, 127, 50, 0.05);
    border-color: #CD7F32;
    box-shadow: 0 12px 40px rgba(205, 127, 50, 0.2);
}

.loyalty-tier-card--bronze .tier-benefits li i {
    color: #CD7F32;
}

.level-up-section {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(224, 64, 253, 0.1) 0%, rgba(140, 89, 252, 0.08) 100%);
    border: 1px solid var(--casino-border-medium);
    border-radius: 24px;
}

.level-up-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--casino-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.level-up-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--casino-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .loyalty-title {
        font-size: 28px;
    }

    .loyalty-description {
        font-size: 16px;
    }

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

    .level-up-section {
        padding: 30px 25px;
    }

    .level-up-title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .loyalty-title {
        font-size: 24px;
    }

    .loyalty-description {
        font-size: 15px;
    }

    .loyalty-tier-card {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .tier-emoji {
        font-size: 40px;
    }

    .tier-name {
        font-size: 22px;
    }

    .tier-subtitle {
        font-size: 14px;
    }

    .tier-benefits li {
        font-size: 14px;
        padding: 10px 0;
    }

    .level-up-section {
        padding: 25px 20px;
        margin-top: 40px;
    }

    .level-up-title {
        font-size: 20px;
    }

    .level-up-description {
        font-size: 15px;
    }
}

/* Login Modal Styles */
.login-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.login-modal-overlay.active,
.login-modal-overlay[style*="display: block"],
.login-modal-overlay[style*="display:flex"],
.login-modal-overlay[style*="display: flex"] {
    display: flex !important;
    opacity: 1 !important;
}

.login-modal-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: auto;
    animation: modalSlideIn 0.3s ease-out;
    flex-shrink: 0;
}

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

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.login-modal-content {
    background: var(--casino-bg-card);
    border: 2px solid var(--casino-border-medium);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(224, 64, 253, 0.2);
    position: relative;
    overflow: hidden;
}

.login-modal-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--casino-primary), var(--casino-accent-2));
    z-index: 1;
}

.login-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--casino-border-light);
    color: var(--casino-text-primary);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.login-modal-close:hover {
    background: rgba(224, 64, 253, 0.2);
    border-color: var(--casino-primary);
    transform: rotate(90deg);
    color: var(--casino-primary);
}

.login-modal-header {
    position: relative;
    z-index: 2;
}

.login-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--casino-text-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-modal-subtitle {
    font-size: 15px;
    color: var(--casino-text-secondary);
    margin: 0;
}

.login-modal-form {
    position: relative;
    z-index: 2;
}

.login-modal-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--casino-text-primary);
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-modal-form .input-wrapper {
    position: relative;
    width: 100%;
}

.login-modal-form .input-pre-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--casino-text-muted);
    font-size: 18px;
    z-index: 2;
    pointer-events: none;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.login-modal-form .form--control {
    width: 100%;
    padding: 14px 20px 14px 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--casino-border-light);
    border-radius: 12px;
    color: var(--casino-text-primary);
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.login-modal-form .form--control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--casino-primary);
    box-shadow: 0 0 0 4px rgba(224, 64, 253, 0.1);
    outline: none;
}

.login-modal-form .form--control::placeholder {
    color: var(--casino-text-muted);
    opacity: 0.6;
}

.login-modal-form .form--check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-modal-form .form--check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--casino-primary);
}

.login-modal-form .form--check label {
    font-size: 14px;
    color: var(--casino-text-secondary);
    cursor: pointer;
    margin: 0;
    text-transform: none;
    letter-spacing: normal;
}

.login-modal-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--casino-border-light);
}

.login-modal-footer p {
    color: var(--casino-text-secondary);
    font-size: 14px;
    margin: 0;
}

.login-modal-footer a {
    color: var(--casino-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-modal-footer a:hover {
    color: var(--casino-accent-2);
    text-decoration: underline;
}

@media (max-width: 575px) {
    .login-modal-content {
        padding: 30px 25px;
        border-radius: 16px;
    }

    .login-modal-title {
        font-size: 24px;
    }

    .login-modal-subtitle {
        font-size: 14px;
    }

    .login-modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

button.slick-prev.slick-arrow {
    left: 0;
    z-index: 99;
}



/* Games Management Page Styles */
.games-management-page {
    min-height: 100vh;
    background: var(--casino-bg-dark, #0a0230);
    padding: 40px 0;
}

/* Top Banner Section */
.wise-gang-banner {
    background: linear-gradient(135deg, #6a1b9a 0%, #4a148c 50%, #1a0033 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(106, 27, 154, 0.3);
}

.wise-gang-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,215,0,0.3)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,215,0,0.3)"/><circle cx="40" cy="80" r="2" fill="rgba(255,215,0,0.3)"/><circle cx="70" cy="70" r="1" fill="rgba(255,215,0,0.3)"/></svg>');
    opacity: 0.3;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.banner-content-wrapper {
    position: relative;
    z-index: 2;
}

.banner-subtitle {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.banner-title {
    color: var(--casino-text-primary, #ffffff);
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: var(--casino-font-primary, 'Orbitron', 'Exo 2', sans-serif);
    background: linear-gradient(135deg, #fff 0%, var(--casino-primary-light, #f060ff) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.banner-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
}

.banner-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.banner-cta-btn {
    background: var(--casino-gradient-primary, linear-gradient(135deg, #e040fd 0%, #c020dd 100%));
    color: var(--casino-text-primary, #ffffff);
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--casino-shadow-primary, rgba(224, 64, 253, 0.4));
    font-family: var(--casino-font-primary, 'Orbitron', 'Exo 2', sans-serif);
}

.banner-cta-btn:hover {
    background: var(--casino-gradient-accent1, linear-gradient(135deg, #e040fd 0%, #f060ff 100%));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--casino-shadow-primary, rgba(224, 64, 253, 0.6));
}

.banner-character {
    position: absolute;
    right: 40px;
    bottom: 0;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    opacity: 0.3;
}

/* Game Cards Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.game-card {
    background: var(--casino-bg-card, #1a065e);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--casino-border-light, rgba(224, 64, 253, 0.3));
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--casino-shadow-primary, rgba(224, 64, 253, 0.4));
    border-color: var(--casino-border-medium, rgba(224, 64, 253, 0.5));
}


.game-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #28a745;
    font-weight: 600;
    font-size: 14px;
}

.game-status-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}

.game-icon {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card-header {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.game-header-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.game-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--casino-text-primary, #ffffff);
    margin: 0;
    font-family: var(--casino-font-primary, 'Orbitron', 'Exo 2', sans-serif);
}

.game-balance {
    font-size: 20px;
    font-weight: 600;
    color: var(--casino-primary, #e040fd);
    margin: 0;
    font-family: var(--casino-font-accent, 'Rajdhani', 'Orbitron', sans-serif);
}

.game-action-btn {
    background: var(--casino-bg-primary, #11034e);
    color: var(--casino-text-primary, #ffffff);
    border: 1px solid var(--casino-border-light, rgba(224, 64, 253, 0.3));
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    width: fit-content;
    font-family: var(--casino-font-body, 'Exo 2', 'Rajdhani', sans-serif);
}

.game-action-btn:hover {
    background: var(--casino-primary-dark, #c020dd);
    border-color: var(--casino-primary, #e040fd);
}

.game-info-wrapper {
    background: rgba(26, 6, 94, 0.5);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--casino-border-light, rgba(224, 64, 253, 0.2));
}

.game-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--casino-text-secondary, rgba(255, 255, 255, 0.9));
    flex-wrap: wrap;
    font-family: var(--casino-font-body, 'Exo 2', 'Rajdhani', sans-serif);
}

.game-info-item:last-child {
    margin-bottom: 0;
}

.game-info-item i {
    color: var(--casino-primary, #e040fd);
    width: 20px;
}

.game-info-value {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
}

.copy-btn {
    background: transparent;
    border: none;
    color: var(--casino-primary, #e040fd);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s;
}

.copy-btn:hover {
    background: rgba(224, 64, 253, 0.2);
    color: var(--casino-primary-light, #f060ff);
}

.reset-password-btn {
    background: var(--casino-bg-primary, #11034e);
    color: var(--casino-text-primary, #ffffff);
    border: 1px solid var(--casino-border-light, rgba(224, 64, 253, 0.3));
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--casino-font-body, 'Exo 2', 'Rajdhani', sans-serif);
}

.reset-password-btn:hover {
    background: var(--casino-primary-dark, #c020dd);
    border-color: var(--casino-primary, #e040fd);
}

.password-note {
    font-size: 11px;
    color: var(--casino-text-muted, rgba(255, 255, 255, 0.7));
    margin-top: 5px;
    margin-bottom: 15px;
}

.game-actions-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: auto;
}

.add-credits-btn {
    flex: 1;
    background: var(--casino-gradient-primary, linear-gradient(135deg, #e040fd 0%, #c020dd 100%));
    color: var(--casino-text-primary, #ffffff);
    border: none;
    padding: 12px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
    font-family: var(--casino-font-primary, 'Orbitron', 'Exo 2', sans-serif);
    box-shadow: 0 2px 10px var(--casino-shadow-primary, rgba(224, 64, 253, 0.3));
    white-space: nowrap;
    min-width: 0;
}

.add-credits-btn:hover {
    background: var(--casino-gradient-accent1, linear-gradient(135deg, #e040fd 0%, #f060ff 100%));
    box-shadow: 0 4px 15px var(--casino-shadow-primary, rgba(224, 64, 253, 0.5));
}

.withdraw-credits-btn {
    flex: 1;
    background: var(--casino-gradient-accent2, linear-gradient(135deg, #8c59fc 0%, #a678ff 100%));
    color: var(--casino-text-primary, #ffffff);
    border: none;
    padding: 10px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
    font-family: var(--casino-font-primary, 'Orbitron', 'Exo 2', sans-serif);
    box-shadow: 0 2px 10px var(--casino-shadow-accent2, rgba(140, 89, 252, 0.3));
    white-space: nowrap;
    min-width: 0;
}

.withdraw-credits-btn:hover {
    background: var(--casino-gradient-purple-pink, linear-gradient(135deg, #8c59fc 0%, #e040fd 100%));
    box-shadow: 0 4px 15px var(--casino-shadow-accent2, rgba(140, 89, 252, 0.5));
}

.play-now-btn {
    width: 100%;
    background: var(--casino-gradient-accent2, linear-gradient(135deg, #8c59fc 0%, #a678ff 100%));
    color: var(--casino-text-primary, #ffffff);
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--casino-shadow-accent2, rgba(140, 89, 252, 0.4));
    font-family: var(--casino-font-primary, 'Orbitron', 'Exo 2', sans-serif);
}

.play-now-btn:hover {
    background: var(--casino-gradient-purple-pink, linear-gradient(135deg, #8c59fc 0%, #e040fd 100%));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--casino-shadow-accent2, rgba(140, 89, 252, 0.6));
}

/* Add New Game Card */
.add-game-card {
    width: 100%;
    background: var(--casino-bg-card, #1a065e);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px dashed var(--casino-border-light, rgba(224, 64, 253, 0.3));
}

.add-game-card:hover {
    border-color: var(--casino-primary, #e040fd);
    background: rgba(224, 64, 253, 0.1);
    box-shadow: 0 10px 30px var(--casino-shadow-primary, rgba(224, 64, 253, 0.3));
}

.add-game-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--casino-text-secondary, rgba(255, 255, 255, 0.9));
    margin-bottom: 20px;
    font-family: var(--casino-font-primary, 'Orbitron', 'Exo 2', sans-serif);
}

.add-game-btn {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    background: var(--casino-gradient-primary, linear-gradient(135deg, #e040fd 0%, #c020dd 100%));
    color: var(--casino-text-primary, #ffffff);
    border: none;
    font-size: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--casino-shadow-primary, rgba(224, 64, 253, 0.4));
}

.add-game-btn:hover {
    background: var(--casino-gradient-accent1, linear-gradient(135deg, #e040fd 0%, #f060ff 100%));
    transform: scale(1.1);
    box-shadow: 0 6px 20px var(--casino-shadow-primary, rgba(224, 64, 253, 0.6));
}

/* Chat Icon */
.chat-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--casino-gradient-primary, linear-gradient(135deg, #e040fd 0%, #c020dd 100%));
    color: var(--casino-text-primary, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 20px var(--casino-shadow-primary, rgba(224, 64, 253, 0.4));
    z-index: 1000;
    transition: all 0.3s;
}

.chat-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px var(--casino-shadow-primary, rgba(224, 64, 253, 0.6));
}

/* Modal Styles */
.add-game-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.add-game-modal.active {
    display: flex;
}

.modal-content {
    background: transparent;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.modal-header {
    background: linear-gradient(135deg, var(--casino-primary, #e040fd) 0%, var(--casino-accent-2, #8c59fc) 50%, var(--casino-bg-primary, #11034e) 100%);
    padding: 30px 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.2)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="70" cy="70" r="1" fill="rgba(255,255,255,0.2)"/><circle cx="50" cy="30" r="1.5" fill="rgba(255,255,255,0.15)"/><circle cx="30" cy="60" r="1" fill="rgba(255,255,255,0.15)"/></svg>');
    opacity: 0.4;
    animation: sparkle 3s ease-in-out infinite;
}

.modal-header-left {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-header-left i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.modal-header-left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--casino-text-primary, #ffffff);
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: var(--casino-font-primary, 'Orbitron', 'Exo 2', sans-serif);
    position: relative;
    z-index: 2;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 20px;
    color: var(--casino-bg-primary, #11034e);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.modal-close:hover {
    background: var(--casino-text-primary, #ffffff);
    transform: scale(1.1);
}

.modal-close:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

.modal-body {
    background: var(--casino-bg-card, #1a065e);
    padding: 30px;
    max-height: 500px;
    overflow-y: auto;
}

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

.game-selection-card {
    background: var(--casino-bg-primary, #11034e);
    border: 2px solid var(--casino-border-light, rgba(224, 64, 253, 0.3));
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.game-selection-card:hover {
    border-color: var(--casino-primary, #e040fd);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--casino-shadow-primary, rgba(224, 64, 253, 0.3));
}

.game-selection-card.selected {
    border-color: var(--casino-primary, #e040fd);
    background: rgba(224, 64, 253, 0.15);
    box-shadow: 0 5px 15px var(--casino-shadow-primary, rgba(224, 64, 253, 0.4));
}

.game-selection-icon {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-selection-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-selection-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--casino-text-secondary, rgba(255, 255, 255, 0.9));
    margin: 0;
    font-family: var(--casino-font-body, 'Exo 2', 'Rajdhani', sans-serif);
}

.modal-footer {
    background: var(--casino-bg-card, #1a065e);
    padding: 20px 30px;
    border-top: 1px solid var(--casino-border-light, rgba(224, 64, 253, 0.3));
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    border-radius: 0 0 20px 20px;
}

.modal-btn-cancel {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-btn-cancel:hover {
    background: #333;
}

.modal-btn-create {
    position: relative;
    background: var(--casino-gradient-primary, linear-gradient(135deg, #e040fd 0%, #c020dd 100%));
    color: var(--casino-text-primary, #ffffff);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--casino-font-primary, 'Orbitron', 'Exo 2', sans-serif);
    box-shadow: 0 2px 10px var(--casino-shadow-primary, rgba(224, 64, 253, 0.3));
}

.modal-btn-create:hover {
    background: var(--casino-gradient-accent1, linear-gradient(135deg, #e040fd 0%, #f060ff 100%));
    box-shadow: 0 4px 15px var(--casino-shadow-primary, rgba(224, 64, 253, 0.5));
}

.modal-btn-create:disabled,
.cmn--btn:disabled,
.purchase-btn-pay:disabled,
.cashout-btn-confirm:disabled,
.reset-password-btn-confirm:disabled {
    background: #666;
    cursor: not-allowed;
}

.modal-btn-create .loading-spinner,
.cmn--btn .loading-spinner,
.purchase-btn-pay .loading-spinner,
.cashout-btn-confirm .loading-spinner,
.reset-password-btn-confirm .loading-spinner {
    position: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


.modal-btn-create .loading-spinner i,
.cmn--btn .loading-spinner i,
.purchase-btn-pay .loading-spinner i,
.cashout-btn-confirm .loading-spinner i,
.reset-password-btn-confirm .loading-spinner i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


@media (max-width: 768px) {
    .banner-title {
        font-size: 32px;
    }

    .banner-features {
        flex-direction: column;
        gap: 15px;
    }

    .banner-character {
        display: none;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        max-width: 95%;
    }

    .modal-header {
        padding: 20px;
        min-height: 120px;
    }

    .modal-header-left {
        width: 80px;
        height: 80px;
        left: 20px;
    }

    .modal-title {
        font-size: 28px;
    }

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

    .modal-body {
        padding: 20px;
        max-height: 400px;
    }
}


.reset-password-btn {
    background: var(--casino-bg-primary, #11034e);
    color: var(--casino-text-primary, #ffffff);
    border: 1px solid var(--casino-border-light, rgba(224, 64, 253, 0.3));
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--casino-font-body, 'Exo 2', 'Rajdhani', sans-serif);
}

.reset-password-btn:hover {
    background: var(--casino-primary-dark, #c020dd);
    border-color: var(--casino-primary, #e040fd);
}

/* Reset Password Modal */
.reset-password-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.reset-password-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.reset-password-modal-content {
    background: #ffffff;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
    overflow: hidden;
}

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

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Reset Password Modal Header */
.reset-password-modal-header {
    background: #ffffff;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.reset-password-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
    font-family: var(--casino-font-primary, 'Orbitron', 'Exo 2', sans-serif);
}

.reset-password-modal-close {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.reset-password-modal-close:hover {
    background: #f0f0f0;
    color: #000;
}

/* Reset Password Modal Body */
.reset-password-modal-body {
    padding: 40px 30px;
    text-align: center;
}

.reset-password-icon {
    margin-bottom: 30px;
}

.reset-password-icon i {
    font-size: 80px;
    color: #333;
    display: inline-block;
}

.reset-password-question {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.5;
    font-family: var(--casino-font-body, 'Exo 2', 'Rajdhani', sans-serif);
}

.reset-password-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.reset-password-btn-cancel,
.reset-password-btn-confirm {
    position: relative;
    padding: 12px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--casino-font-body, 'Exo 2', 'Rajdhani', sans-serif);
    border: 2px solid;
    min-width: 120px;
}

.reset-password-btn-cancel {
    background: #ffffff;
    color: var(--casino-primary, #e040fd);
    border-color: var(--casino-primary, #e040fd);
}

.reset-password-btn-cancel:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 64, 253, 0.3);
}

.reset-password-btn-confirm {
    background: var(--casino-primary, #e040fd);
    color: #ffffff;
    border-color: var(--casino-primary, #e040fd);
}

.reset-password-btn-confirm:hover {
    background: var(--casino-primary-dark, #c020dd);
    border-color: var(--casino-primary-dark, #c020dd);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--casino-shadow-primary, rgba(224, 64, 253, 0.4));
}

/* Low Balance Modal */
.low-balance-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.low-balance-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.low-balance-modal-content {
    background: #ffffff;
    border-radius: 20px;
    max-width: 450px;
    width: 100%;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
    padding: 40px 30px;
    text-align: center;
}

.low-balance-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 30px 0;
    font-family: var(--casino-font-primary, 'Orbitron', 'Exo 2', sans-serif);
    text-align: center;
}

.low-balance-icon {
    margin-bottom: 30px;
}

.low-balance-icon i {
    font-size: 80px;
    color: #ff0000;
    display: inline-block;
}

.low-balance-message {
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.5;
    font-family: var(--casino-font-body, 'Exo 2', 'Rajdhani', sans-serif);
    text-align: center;
}

.low-balance-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.low-balance-btn-cancel,
.low-balance-btn-purchase {
    padding: 12px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--casino-font-body, 'Exo 2', 'Rajdhani', sans-serif);
    border: none;
    min-width: 120px;
}

.low-balance-btn-cancel {
    background: #000000;
    color: #ffffff;
}

.low-balance-btn-cancel:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.low-balance-btn-purchase {
    background: var(--casino-primary, #e040fd);
    color: #ffffff;
}

.low-balance-btn-purchase:hover {
    background: var(--casino-primary-dark, #c020dd);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--casino-shadow-primary, rgba(224, 64, 253, 0.4));
}

.password-note {
    font-size: 11px;
    color: var(--casino-text-muted, rgba(255, 255, 255, 0.7));
    margin-top: 5px;
    margin-bottom: 15px;
}

.game-actions-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: auto;
}

.add-credits-btn {
    flex: 1;
    background: var(--casino-gradient-primary, linear-gradient(135deg, #e040fd 0%, #c020dd 100%));
    color: var(--casino-text-primary, #ffffff);
    border: none;
    padding: 12px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
    font-family: var(--casino-font-primary, 'Orbitron', 'Exo 2', sans-serif);
    box-shadow: 0 2px 10px var(--casino-shadow-primary, rgba(224, 64, 253, 0.3));
    white-space: nowrap;
    min-width: 0;
}

.add-credits-btn:hover {
    background: var(--casino-gradient-accent1, linear-gradient(135deg, #e040fd 0%, #f060ff 100%));
    box-shadow: 0 4px 15px var(--casino-shadow-primary, rgba(224, 64, 253, 0.5));
}

.withdraw-credits-btn {
    flex: 1;
    background: var(--casino-gradient-accent2, linear-gradient(135deg, #8c59fc 0%, #a678ff 100%));
    color: var(--casino-text-primary, #ffffff);
    border: none;
    padding: 10px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
    font-family: var(--casino-font-primary, 'Orbitron', 'Exo 2', sans-serif);
    box-shadow: 0 2px 10px var(--casino-shadow-accent2, rgba(140, 89, 252, 0.3));
    white-space: nowrap;
    min-width: 0;
}

.withdraw-credits-btn:hover {
    background: var(--casino-gradient-purple-pink, linear-gradient(135deg, #8c59fc 0%, #e040fd 100%));
    box-shadow: 0 4px 15px var(--casino-shadow-accent2, rgba(140, 89, 252, 0.5));
}

.play-now-btn {
    width: 100%;
    background: var(--casino-gradient-accent2, linear-gradient(135deg, #8c59fc 0%, #a678ff 100%));
    color: var(--casino-text-primary, #ffffff);
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--casino-shadow-accent2, rgba(140, 89, 252, 0.4));
    font-family: var(--casino-font-primary, 'Orbitron', 'Exo 2', sans-serif);
}

.play-now-btn:hover {
    background: var(--casino-gradient-purple-pink, linear-gradient(135deg, #8c59fc 0%, #e040fd 100%));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--casino-shadow-accent2, rgba(140, 89, 252, 0.6));
}

/* Add New Game Card */
.add-game-card {
    background: var(--casino-bg-card, #1a065e);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px dashed var(--casino-border-light, rgba(224, 64, 253, 0.3));
}

.add-game-card:hover {
    border-color: var(--casino-primary, #e040fd);
    background: rgba(224, 64, 253, 0.1);
    box-shadow: 0 10px 30px var(--casino-shadow-primary, rgba(224, 64, 253, 0.3));
}

.add-game-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--casino-text-secondary, rgba(255, 255, 255, 0.9));
    margin-bottom: 20px;
    font-family: var(--casino-font-primary, 'Orbitron', 'Exo 2', sans-serif);
}

.add-game-btn {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    background: var(--casino-gradient-primary, linear-gradient(135deg, #e040fd 0%, #c020dd 100%));
    color: var(--casino-text-primary, #ffffff);
    border: none;
    font-size: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--casino-shadow-primary, rgba(224, 64, 253, 0.4));
}

.add-game-btn:hover {
    background: var(--casino-gradient-accent1, linear-gradient(135deg, #e040fd 0%, #f060ff 100%));
    transform: scale(1.1);
    box-shadow: 0 6px 20px var(--casino-shadow-primary, rgba(224, 64, 253, 0.6));
}

/* ============================================
   PURCHASE MODAL STYLES
   ============================================ */
.purchase-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.purchase-modal-content {
    background: #ffffff;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease-out;
}

/* Purchase Modal Header */
.purchase-modal-header {
    position: relative;
    background: var(--casino-gradient-primary, linear-gradient(135deg, #e040fd 0%, #c020dd 100%));
    padding: 40px 30px;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.purchase-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect width="200" height="200" fill="%2311034e" opacity="0.3"/><circle cx="50" cy="50" r="3" fill="rgba(255,255,255,0.2)"/><circle cx="150" cy="100" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="100" cy="150" r="2.5" fill="rgba(255,255,255,0.2)"/></svg>');
    background-size: cover;
    opacity: 0.4;
    filter: blur(2px);
}

.purchase-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: var(--casino-font-primary, 'Orbitron', 'Exo 2', sans-serif);
    position: relative;
    z-index: 2;
    letter-spacing: 2px;
}

.purchase-header-character {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.purchase-header-character i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.8);
}

.purchase-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 20px;
    color: var(--casino-primary, #e040fd);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.purchase-modal-close:hover {
    background: #ffffff;
    transform: scale(1.1);
}

/* Purchase Modal Body */
.purchase-modal-body {
    background: #ffffff;
    padding: 30px 40px;
    flex: 1;
    overflow-y: auto;
}

/* Purchase Credit Body */
.purchase-credit-body,
.cashout-body {
    flex: 1;
}

/* Progress Steps */
.purchase-progress {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    padding: 0 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    width: 50px;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    z-index: 3;
}

.step-circle.active {
    background: var(--casino-primary, #e040fd);
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(224, 64, 253, 0.2);
}

.step-circle i {
    font-size: 20px;
}

.step-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.progress-step:first-child .step-label {
    color: var(--casino-primary, #e040fd);
}

.progress-line {
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: var(--casino-primary, #e040fd);
    z-index: 1;
    border-radius: 2px;
    margin: 0 20px;
}

/* Sweepstakes Button */
.purchase-sweepstakes-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.purchase-sweepstakes-btn {
    background: var(--casino-accent-2, #8c59fc);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-family: var(--casino-font-body, 'Exo 2', 'Rajdhani', sans-serif);
    box-shadow: 0 2px 8px var(--casino-shadow-accent2, rgba(140, 89, 252, 0.3));
}

.purchase-sweepstakes-btn:hover {
    background: var(--casino-accent-2-dark, #6d3ae8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--casino-shadow-accent2, rgba(140, 89, 252, 0.5));
}

.purchase-sweepstakes-btn i {
    font-size: 16px;
}

/* Balance Info */
.purchase-balance-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 10px;
}

.balance-display-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.balance-display-item i {
    font-size: 20px;
    color: var(--casino-primary, #e040fd);
}

.transaction-fees-btn {
    background: var(--casino-warning, #FFA726);
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    box-shadow: 0 2px 6px rgba(255, 167, 38, 0.3);
}

.transaction-fees-btn:hover {
    background: #ff9800;
    box-shadow: 0 4px 10px rgba(255, 167, 38, 0.5);
    transform: translateY(-2px);
}

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

/* Purchase Instructions */
.purchase-instructions,
.purchase-credit {
    margin-bottom: 25px;
}

.purchase-instructions p {
    margin: 5px 0;
    color: #333;
    font-size: 14px;
}

.purchase-credit p {
    margin: 5px 0;
    color: #fff;
    font-size: 14px;
}

.purchase-note {
    color: #666;
    font-size: 12px;
}

/* Payment Methods Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.payment-method-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.payment-method-card:hover {
    border-color: var(--casino-primary, #e040fd);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(224, 64, 253, 0.2);
        
}

.payment-method-card.has-promo {
    background: linear-gradient(145deg, #fef9e7 0%, #fde68a 15%, #fcd34d 35%, #fbbf24 55%, #f59e0b 75%, #d97706 100%);
    animation: border-color-promo 2s ease-in-out infinite;
}

.payment-method-card.has-promo .payment-credit-method-name,
.payment-method-card.has-promo .payment-credit-method-sublabels {
    color: #422006 !important;
}

.payment-method-card.has-promo.selected .payment-credit-method-name,
.payment-method-card.has-promo.selected .payment-credit-method-sublabels {
    color: #fff !important;
}

.payment-method-card.has-promo.selected .payment-credit-method-sublabels {
    color: rgba(255, 255, 255, 0.9) !important;
}

.payment-promo-fire {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    z-index: 1;
    padding: 4px 8px;
    border-radius: 6px;
    color: #422006;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fbbf24 100%);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.4);
    border: 1px solid rgba(180, 83, 9, 0.3);
}
@keyframes border-color-promo {
    0% {
        border-color: rgba(205, 127, 50, 0.5);
    box-shadow: 0 12px 40px rgba(205, 127, 50, 0.2);
    }
    50% {
        border-color: rgba(205, 127, 50, 1);
        box-shadow: 0 12px 40px rgba(205, 127, 50, 0.8);
    }
    100% {
        border-color: rgba(205, 127, 50, 0.5);
        box-shadow: 0 12px 40px rgba(205, 127, 50, 0.2);
    }
}

.payment-method-card.selected {
    border-color: var(--casino-primary, #e040fd);
    background: rgba(224, 64, 253, 0.05);
    box-shadow: 0 5px 15px rgba(224, 64, 253, 0.3);
}

.payment-bonus-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--casino-warning, #FFA726);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(255, 167, 38, 0.3);
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin: 10px 0;
}

.payment-logo-text {
    background: #f0f0f0;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    color: #666;
}

.payment-logo-visa {
    background: #1a1f71;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
}

.payment-method-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.payment-method-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 80px;
    max-height: 80px;
}

.payment-method-name {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
}

.payment-credit-method-name {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
}

.payment-credit-method-sublabels {
    font-size: 10px;
    font-weight: 500;
    color: #666;
    margin-top: 4px;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.selected .payment-credit-method-name,
.selected .payment-credit-method-sublabels {
    color: rgba(255, 255, 255, 0.95) !important;
}

.selected .payment-credit-method-sublabels {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Selected Payment Display */
.selected-payment-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.selected-payment-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purchase-modal-footer button {
    width: 100%;
}

.purchase-modal-footer.credit button {
    width: auto;
}

.selected-payment-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100px;
    max-height: 100px;
}

.selected-payment-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-align: center;
}

.selected-credit-payment-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

/* Purchase Details Section */
.purchase-details-section {
    margin-top: 20px;
}

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

.purchase-details-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.purchase-credit-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.purchase-details-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-method-logo-small {
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: #666;
}

.bonus-badge-small {
    background: var(--casino-warning, #FFA726);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(255, 167, 38, 0.3);
}

/* Amount Buttons Grid */
.amount-buttons-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.amount-btn {
    background: var(--casino-primary, #e040fd);
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--casino-font-body, 'Exo 2', 'Rajdhani', sans-serif);
    box-shadow: 0 2px 8px var(--casino-shadow-primary, rgba(224, 64, 253, 0.3));
}

.amount-btn:hover {
    background: var(--casino-primary-light, #f060ff);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--casino-shadow-primary, rgba(224, 64, 253, 0.5));
}

.amount-btn.active {
    background: var(--casino-primary-dark, #c020dd);
    box-shadow: 0 4px 15px var(--casino-shadow-primary, rgba(224, 64, 253, 0.6));
    transform: translateY(-2px);
}

/* Amount Input */
.amount-input-wrapper {
    margin-bottom: 25px;
}

.amount-input-group {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 10px;
}

.amount-currency {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-right: 10px;
}

.amount-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    background: transparent;
}

.credit-amount-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: transparent;
}

.amount-input-group:focus-within {
    border-color: var(--casino-primary, #e040fd);
}

.fees-notice {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--casino-notification, #FF6B6B);
    font-size: 12px;
}

.fees-notice i {
    font-size: 14px;
}

/* Phone Input */
.phone-input-wrapper {
    margin-bottom: 25px;
}

.phone-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.credit-phone-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.required-badge {
    background: var(--casino-notification, #FF6B6B);
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
}

.phone-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
}

.credit-phone-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
    background: transparent;
    color: #fff;
}

.phone-input:focus,
.credit-phone-input:focus {
    border-color: var(--casino-primary, #e040fd);
}

/* Terms Checkbox */
.terms-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
}

.terms-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--casino-primary, #e040fd);
}

.terms-label {
    font-size: 13px;
    color: #333;
    line-height: 1.5;
    cursor: pointer;
}

.credit-terms-label {
    font-size: 13px;
    color: #fff;
    line-height: 1.5;
    cursor: pointer;
}

.terms-link {
    color: var(--casino-primary, #e040fd);
    text-decoration: underline;
}

.terms-link:hover {
    color: var(--casino-primary-dark, #c020dd);
}

/* Purchase Modal Footer */
.purchase-modal-footer {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.purchase-btn-cancel,
.purchase-btn-back {
    background: #ffffff;
    color: var(--casino-primary, #e040fd);
    border: 2px solid var(--casino-primary, #e040fd);
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--casino-font-body, 'Exo 2', 'Rajdhani', sans-serif);
}

.purchase-btn-cancel:hover,
.purchase-btn-back:hover {
    background: var(--casino-primary, #e040fd);
    color: #ffffff;
    box-shadow: 0 4px 12px var(--casino-shadow-primary, rgba(224, 64, 253, 0.4));
    transform: translateY(-2px);
}

.purchase-btn-next,
.purchase-btn-pay {
    position: relative;
    background: var(--casino-gradient-primary, linear-gradient(135deg, #e040fd 0%, #c020dd 100%));
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--casino-font-body, 'Exo 2', 'Rajdhani', sans-serif);
    box-shadow: 0 2px 10px var(--casino-shadow-primary, rgba(224, 64, 253, 0.4));
}

.purchase-btn-next:hover,
.purchase-btn-pay:hover {
    background: var(--casino-gradient-accent1, linear-gradient(135deg, #e040fd 0%, #f060ff 100%));
    box-shadow: 0 4px 15px var(--casino-shadow-primary, rgba(224, 64, 253, 0.6));
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .purchase-modal-content {
        max-width: 100%;
        margin: 10px;
    }

    .purchase-title {
        font-size: 32px;
    }

    .purchase-header-character {
        display: none;
    }

    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amount-buttons-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .purchase-balance-info {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }

    .amount-buttons-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .purchase-modal-body {
        padding: 20px;
    }
}

/* ============================================
   CASHOUT MODAL STYLES
   ============================================ */
.cashout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.cashout-modal-content {
    background: #ffffff;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease-out;
}

.cashout-content {
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease-out;
}

/* Cashout Modal Header */
.cashout-modal-header {
    position: relative;
    background: var(--casino-gradient-primary, linear-gradient(135deg, #e040fd 0%, #c020dd 100%));
    padding: 40px 30px;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cashout-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect width="200" height="200" fill="%2311034e" opacity="0.3"/><circle cx="50" cy="50" r="3" fill="rgba(255,255,255,0.2)"/><circle cx="150" cy="100" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="100" cy="150" r="2.5" fill="rgba(255,255,255,0.2)"/></svg>');
    background-size: cover;
    opacity: 0.4;
    filter: blur(2px);
}

.cashout-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: var(--casino-font-primary, 'Orbitron', 'Exo 2', sans-serif);
    position: relative;
    z-index: 2;
    letter-spacing: 2px;
}

.cashout-header-character {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cashout-header-character i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.8);
}

.cashout-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 20px;
    color: var(--casino-primary, #e040fd);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cashout-modal-close:hover {
    background: #ffffff;
    transform: scale(1.1);
}

/* Cashout Modal Body */
.cashout-modal-body {
    background: #ffffff;
    padding: 30px 40px;
    flex: 1;
    overflow-y: auto;
}

/* Cashout Progress Steps */
.cashout-progress {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    padding: 0 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cashout-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    width: 50px;
}

.cashout-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    z-index: 3;
}

.cashout-step-circle.active {
    background: var(--casino-warning, #FFA726);
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 167, 38, 0.2);
}

.cashout-step-circle i {
    font-size: 20px;
}

.cashout-step-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.cashout-step-circle.active~.cashout-step-label {
    color: var(--casino-warning, #FFA726);
}

.cashout-progress-line {
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: var(--casino-warning, #FFA726);
    z-index: 1;
    border-radius: 2px;
    margin: 0 20px;
}

/* Sweepstakes Button */
.cashout-sweepstakes-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.cashout-sweepstakes-btn {
    background: var(--casino-accent-2, #8c59fc);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-family: var(--casino-font-body, 'Exo 2', 'Rajdhani', sans-serif);
    box-shadow: 0 2px 8px var(--casino-shadow-accent2, rgba(140, 89, 252, 0.3));
}

.cashout-sweepstakes-btn:hover {
    background: var(--casino-accent-2-dark, #6d3ae8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--casino-shadow-accent2, rgba(140, 89, 252, 0.5));
}

.cashout-sweepstakes-btn i {
    font-size: 16px;
}

/* Cashout Balance Info */
.cashout-balance-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 10px;
}

.cashout-balance-display-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}


.cashout-balance-display-item i {
    font-size: 20px;
    color: var(--casino-warning, #FFA726);
}

.cashout-selected-method-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cashout-selected-method-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cashout-selected-method-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cashout-selected-method-icon i {
    font-size: 24px;
    color: var(--casino-warning, #FFA726);
}

.cashout-selected-method-display span {
    font-weight: 700;
    color: #333;
    font-size: 14px;
}

.cashout-transaction-fees-btn {
    background: var(--casino-warning, #FFA726);
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    box-shadow: 0 2px 6px rgba(255, 167, 38, 0.3);
}

.cashout-transaction-fees-btn:hover {
    background: #ff9800;
    box-shadow: 0 4px 10px rgba(255, 167, 38, 0.5);
    transform: translateY(-2px);
}

.cashout-transaction-fees-btn i {
    font-size: 14px;
}

/* Cashout Instructions */
.cashout-instructions {
    margin-bottom: 25px;
}

.cashout-instructions p {
    margin: 5px 0;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.withdraw-instructions p {
    color: #fff;
}

/* Cashout Methods Grid */
.cashout-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.cashout-method-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.cashout-method-card:hover {
    border-color: var(--casino-warning, #FFA726);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 167, 38, 0.2);
}

.cashout-method-card.selected {
    border-color: #000000;
    border-width: 3px;
    background: rgba(0, 0, 0, 0.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cashout-method-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #000000;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
}

.cashout-method-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.cashout-method-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 60px;
    max-height: 60px;
}

.cashout-method-icon i {
    font-size: 40px;
    color: var(--casino-warning, #FFA726);
}

.cashout-method-name {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-top: 5px;
}

.cashout-method-name.selected {
    color: #fff;
}

.cashout-method-limits {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.cashout-method-limits.selected {
    color: #fff;
}

.cashout-method-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    color: var(--casino-warning, #FFA726);
    margin-top: 5px;
}

.cashout-method-time i {
    font-size: 14px;
}

/* Cashout Details Section */
.cashout-details-section {
    margin-top: 20px;
}

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

.cashout-details-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.cashout-details-header.cashout h3 {
    color: #fff;
}

/* Cashout Amount Input */
.cashout-amount-input-wrapper {
    margin-bottom: 25px;
}

.cashout-amount-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.cashout-amount-label.cashout {
    color: #fff;
}

.cashout-fee-warning {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--casino-notification, #FF6B6B);
    font-size: 12px;
    margin-bottom: 10px;
}

.cashout-fee-warning i {
    font-size: 14px;
}

.cashout-amount-input-group {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 10px;
}

.cashout-amount-currency {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-right: 10px;
}

.cashout-amount-currency.cashout {
    color: #fff;
}


.cashout-amount-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    background: transparent;
}

.cashout-amount-input.cashout {
    color: #fff;
}

.cashout-amount-input-group:focus-within {
    border-color: var(--casino-warning, #FFA726);
}

.cashout-amount-note {
    font-size: 12px;
    color: #666;
}

/* Cashout Public Key Input */
.cashout-public-key-wrapper {
    margin-bottom: 25px;
}

input.cashout-public-key-label::placeholder,
input::placeholder {
    color: var(--casino-text-muted) !important;
}

.cashout-public-key-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.cashout-public-key-label.cashout {
    color: #fff;
}

.cashout-public-key-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
    background: #fff5f5;
}

.cashout-public-key-input.cashout {
    background: transparent !important;
    color: #fff !important;
}


.cashout-public-key-input:focus {
    border-color: var(--casino-warning, #FFA726);
    background: #ffffff;
}

/* Cashout Confirmation */
.cashout-confirmation-content {
    text-align: center;
    padding: 40px 20px;
}

.cashout-confirmation-icon {
    font-size: 80px;
    color: var(--casino-success, #32CD32);
    margin-bottom: 20px;
}

.cashout-confirmation-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.cashout-confirmation-message {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cashout-confirmation-title.cashout,
.cashout-confirmation-message.cashout {
    color: white !important;
}

.cashout-confirmation-details {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.cashout-confirmation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.cashout-confirmation-item:last-child {
    border-bottom: none;
}

.cashout-confirmation-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.cashout-confirmation-value {
    font-size: 14px;
    color: #333;
    font-weight: 700;
}

/* Cashout Modal Footer */
.cashout-modal-footer {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.cashout-btn-cancel,
.cashout-btn-back {
    background: #ffffff;
    color: var(--casino-warning, #FFA726);
    border: 2px solid var(--casino-warning, #FFA726);
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--casino-font-body, 'Exo 2', 'Rajdhani', sans-serif);
}

.cashout-btn-cancel:hover,
.cashout-btn-back:hover {
    background: var(--casino-warning, #FFA726);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 167, 38, 0.4);
    transform: translateY(-2px);
}

.cashout-btn-next,
.cashout-btn-confirm {
    background: var(--casino-warning, #FFA726);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--casino-font-body, 'Exo 2', 'Rajdhani', sans-serif);
    box-shadow: 0 2px 10px rgba(255, 167, 38, 0.3);
    position: relative;
}

.cashout-btn-next:hover,
.cashout-btn-confirm:hover {
    background: #ff9800;
    box-shadow: 0 4px 15px rgba(255, 167, 38, 0.5);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cashout-modal-content {
        max-width: 100%;
        margin: 10px;
    }

    .cashout-title {
        font-size: 32px;
    }

    .cashout-header-character {
        display: none;
    }

    .cashout-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cashout-balance-info {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .cashout-methods-grid {
        grid-template-columns: 1fr;
    }

    .cashout-modal-body {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 32px;
    }

    .banner-features {
        flex-direction: column;
        gap: 15px;
    }

    .banner-character {
        display: none;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        max-width: 95%;
    }

    .modal-header {
        padding: 20px;
        min-height: 120px;
    }

    .modal-header-left {
        width: 80px;
        height: 80px;
        left: 20px;
    }

    .modal-title {
        font-size: 28px;
    }

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

    .modal-body {
        padding: 20px;
        max-height: 400px;
    }
}