/* ============================================
   CROWNBET - AGENT GUY
   DARK MINIMAL & BOLD TYPOGRAPHY
   שונה לחלוטין מדף שלומי!
   ============================================ */

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

:root {
    /* Minimal Color Palette - Red, White, Black */
    --primary-red: #ff0000;
    --accent-red: #cc0000;
    --light-red: #ff3333;
    
    --pure-white: #ffffff;
    --off-white: #f5f5f5;
    --light-gray: #cccccc;
    
    --pure-black: #000000;
    --dark-gray: #111111;
    --medium-gray: #333333;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Karantina', 'Helvetica Neue', Arial, sans-serif;
    background: var(--pure-black);
    color: var(--pure-white);
    overflow-x: hidden;
    line-height: 1.5;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

body.loading {
    overflow: hidden !important;
    height: 100vh;
    position: fixed;
    width: 100%;
}

body.loading #preloader {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ============================================
   PRELOADER - ADVANCED WITH LOGO BRANDING
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('רקע טעינה.PNG') center/cover no-repeat, 
                linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 50%, rgba(0, 0, 0, 0.7) 100%);
    background-blend-mode: overlay;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: -1;
}

.preloader-content {
    text-align: center;
    animation: fadeInScale 0.8s ease;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    padding: 60px 80px;
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.5),
                0 0 100px rgba(255, 255, 255, 0.3),
                inset 0 0 80px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.preloader-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 25%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.4) 75%, 
        transparent 100%);
    border-radius: 30px;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logo-branding {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.preloader-logo {
    width: 200px;
    height: auto;
    margin-bottom: 0;
    animation: logoFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8)) drop-shadow(0 10px 50px rgba(255, 255, 255, 0.5));
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8)) drop-shadow(0 10px 50px rgba(255, 255, 255, 0.5));
    }
    50% {
        transform: translateY(-15px) scale(1.05);
        filter: drop-shadow(0 0 50px rgba(255, 255, 255, 1)) drop-shadow(0 15px 70px rgba(255, 255, 255, 0.7));
    }
}

.preloader-text {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    direction: ltr;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.4),
                0 0 80px rgba(255, 255, 255, 0.3),
                inset 0 0 50px rgba(255, 255, 255, 0.1);
}

.letter-g,
.letter-u,
.letter-y {
    font-size: 6rem;
    font-weight: 700;
    color: #ffffff !important;
    animation: letterBounce 0.6s ease backwards, letterShine 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1)) !important;
    text-shadow: 0 0 40px rgba(255, 255, 255, 1), 
                 0 0 80px rgba(255, 255, 255, 0.8),
                 0 5px 20px rgba(0, 0, 0, 1),
                 0 0 120px rgba(255, 255, 255, 0.6) !important;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.5) !important;
    position: relative;
    -webkit-text-fill-color: #ffffff !important;
}

@keyframes letterShine {
    0%, 100% {
        text-shadow: 0 0 40px rgba(255, 255, 255, 1), 
                     0 0 80px rgba(255, 255, 255, 0.8),
                     0 5px 20px rgba(0, 0, 0, 1),
                     0 0 120px rgba(255, 255, 255, 0.6);
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1));
    }
    50% {
        text-shadow: 0 0 60px rgba(255, 255, 255, 1),
                     0 0 100px rgba(255, 255, 255, 1),
                     0 5px 20px rgba(0, 0, 0, 1),
                     0 0 150px rgba(255, 255, 255, 0.8);
        filter: drop-shadow(0 0 50px rgba(255, 255, 255, 1)) drop-shadow(0 0 80px rgba(255, 255, 255, 0.9));
    }
}

.letter-g { 
    animation-delay: 0.1s, 0s;
}
.letter-u { 
    animation-delay: 0.2s, 0.6s;
}
.letter-y { 
    animation-delay: 0.3s, 1.2s;
}

@keyframes letterBounce {
    from {
        opacity: 0;
        transform: translateY(-100px) rotate(-20deg) scale(0);
    }
    60% {
        transform: translateY(10px) rotate(5deg) scale(1.1);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(0) scale(1);
    }
}

.loading-line {
    width: 300px;
    height: 4px;
    background: var(--medium-gray);
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.loading-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #ffffff, #f0f0f0, #ffffff, transparent);
    animation: lineMove 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

@keyframes lineMove {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: -100%; }
}

.loading-message {
    font-size: 1.4rem;
    color: var(--pure-white);
    font-weight: 600;
    margin-top: 10px;
    animation: textPulse 1.5s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 255, 255, 1),
                 0 0 40px rgba(255, 255, 255, 0.8),
                 0 2px 10px rgba(0, 0, 0, 0.9);
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 30px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    display: inline-block;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4),
                0 0 60px rgba(255, 255, 255, 0.3);
}

@keyframes textPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.logo-branding {
    position: relative;
    margin-bottom: 40px;
}

.logo-branding::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
}

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

/* ============================================
   HEADER - FLOATING MINIMAL
   ============================================ */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: all 0.3s ease;
    max-width: 90%;
}

.header-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid var(--medium-gray);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    position: relative;
}

.age-warning-container {
    position: absolute;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 15px;
    background: rgba(255, 0, 0, 0.08);
    border: 2px solid var(--primary-red);
    border-radius: 25px;
    backdrop-filter: blur(5px);
    animation: warningPulse 3s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
        border-color: var(--primary-red);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
        border-color: #ff3333;
    }
}

.age-badge {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-red);
    background: rgba(255, 0, 0, 0.15);
    border: 2px solid var(--primary-red);
    padding: 4px 10px;
    border-radius: 15px;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    flex-shrink: 0;
}

.warning-message {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffcc00;
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.4);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.header-logo {
    height: 40px;
    width: auto;
}

.header-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-red);
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.header-contact:hover {
    background: var(--light-red);
    transform: scale(1.1);
}

/* ============================================
   MEGA HERO - FULL SCREEN SPLIT WITH VIDEO
   ============================================ */
.mega-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    background: var(--pure-black);
    position: relative;
    overflow: hidden;
}

/* Hero Background Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 0;
    filter: brightness(0.9) contrast(1.05) blur(20px);
    transition: opacity 1s ease, filter 1.5s ease;
    pointer-events: none;
}

.hero-video.loaded {
    opacity: 0.7;
    filter: brightness(0.9) contrast(1.05) blur(0);
}

/* Ensure hero section allows video to fill */
.mega-hero {
    position: relative;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.6;
}

.mega-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 0, 0, 0.1) 100%);
    pointer-events: none;
    z-index: 2;
}

.mega-hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: right;
    position: relative;
    z-index: 10;
}

.mega-badge {
    display: inline-block;
    padding: 10px 35px;
    background: var(--primary-red);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6);
    animation: badgeFloat 3s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6);
    }
    50% {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(255, 0, 0, 0.8);
    }
}

.mega-title {
    font-size: 10rem;
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 50px;
}

.mega-line {
    display: block;
}

.mega-highlight {
    color: var(--primary-red);
}

.hero-info-box {
    max-width: 700px;
    padding: 40px;
    background: var(--dark-gray);
    border-right: 4px solid var(--primary-red);
    margin: 50px 0;
}

.info-main {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-features {
    font-size: 1.5rem;
    color: var(--light-gray);
    margin-bottom: 20px;
}

.info-services {
    display: flex;
    gap: 30px;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.info-services span {
    color: var(--light-gray);
}

.info-support {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4fc3f7;
    text-align: center;
    padding: 12px 25px;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.15), rgba(33, 150, 243, 0.15));
    border: 2px solid rgba(79, 195, 247, 0.5);
    border-radius: 15px;
    margin-top: 15px;
    text-shadow: 0 0 15px rgba(79, 195, 247, 0.5);
    box-shadow: 0 0 20px rgba(79, 195, 247, 0.2);
    animation: supportGlow 2.5s ease-in-out infinite;
}

@keyframes supportGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(79, 195, 247, 0.2);
        border-color: rgba(79, 195, 247, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(79, 195, 247, 0.4);
        border-color: rgba(79, 195, 247, 0.8);
    }
}

.mega-cta {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 25px 60px;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.6);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mega-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: width 0.5s ease, height 0.5s ease;
}

.mega-cta:hover {
    background: var(--light-red);
    padding-left: 80px;
    box-shadow: 0 15px 60px rgba(255, 0, 0, 0.9), 0 0 40px rgba(255, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.mega-cta:hover::before {
    width: 300px;
    height: 300px;
}

.hero-stats {
    display: flex;
    gap: 60px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.stat-item i {
    font-size: 2rem;
    color: var(--primary-red);
}

/* ============================================
   REFER A FRIEND BONUS BANNER
   ============================================ */
.refer-bonus-banner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 35px;
    margin-top: 50px;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.15) 0%, 
        rgba(255, 165, 0, 0.15) 50%,
        rgba(255, 215, 0, 0.15) 100%);
    border: 3px solid #ffd700;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4),
                inset 0 0 30px rgba(255, 215, 0, 0.1);
    animation: bonusPulse 3s ease-in-out infinite;
}

@keyframes bonusPulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4),
                    inset 0 0 30px rgba(255, 215, 0, 0.1);
        border-color: #ffd700;
    }
    50% {
        box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6),
                    inset 0 0 40px rgba(255, 215, 0, 0.2);
        border-color: #ffed4e;
    }
}

.bonus-icon-wrapper {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.6);
    animation: iconSpin 4s ease-in-out infinite;
}

@keyframes iconSpin {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-10deg) scale(1.05);
    }
    75% {
        transform: rotate(10deg) scale(1.05);
    }
}

.bonus-icon-wrapper i {
    font-size: 2.5rem;
    color: #000;
}

.bonus-content {
    flex: 1;
    z-index: 2;
}

.bonus-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6),
                 0 2px 10px rgba(0, 0, 0, 0.8);
}

.bonus-text {
    font-size: 1.3rem;
    color: var(--light-gray);
    margin-bottom: 10px;
}

.bonus-highlight {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff4757;
    background: rgba(255, 71, 87, 0.15);
    padding: 8px 20px;
    border-radius: 20px;
    border: 2px solid #ff4757;
    animation: highlightBounce 2s ease-in-out infinite;
}

@keyframes highlightBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.bonus-sparkle {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    animation: sparkleRotate 3s linear infinite;
}

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

/* ============================================
   PARTNERS STRIP - HORIZONTAL
   ============================================ */
.partners-strip {
    padding: 40px 0;
    background: var(--dark-gray);
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
}

.partnersSwiper {
    overflow: visible !important;
    padding: 15px 0;
    position: relative;
    z-index: 100 !important;
    touch-action: pan-x pan-y !important;
    -webkit-user-select: none;
    user-select: none;
}

.partnersSwiper .swiper-slide {
    width: auto !important;
}

.partner-box {
    width: 180px;
    height: 100px;
    padding: 15px;
    background: var(--pure-black);
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-box:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.partner-box img {
    max-width: 120px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9);
}

.partner-box-white {
    background: var(--pure-white);
}

.romyus-large {
    max-width: 160px !important;
    max-height: 70px !important;
}

/* ============================================
   SECTIONS - BOLD TITLES
   ============================================ */
section {
    width: 100%;
    overflow-x: hidden;
}

.section-intro {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.bold-title {
    font-size: 7rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 30px;
    text-align: right;
    position: relative;
}

.bold-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 0;
    width: 200px;
    height: 4px;
    background: var(--primary-red);
}

.subtitle-text {
    font-size: 1.8rem;
    color: var(--light-gray);
    text-align: right;
}

.intro-text p {
    font-size: 1.5rem;
    color: var(--light-gray);
    margin: 12px 0;
    text-align: right;
}

.bonus-highlight {
    color: var(--primary-red) !important;
    font-weight: 700;
}

/* ============================================
   CASINO SECTION - BOLD GRID WITH VIDEO
   ============================================ */
.casino-bold {
    padding: 120px 40px;
    background: var(--pure-black);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Casino Background Video - Full Screen Background */
.casino-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    opacity: 0;
    filter: brightness(0.9) contrast(1.05) saturate(1.1) blur(15px);
    transition: opacity 1.5s ease, filter 2s ease;
    pointer-events: none;
}

.casino-video.loaded {
    opacity: 0.75;
    filter: brightness(0.9) contrast(1.05) saturate(1.1) blur(0);
}

.casino-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg, 
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.2) 60%, 
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
    pointer-events: none !important;
}

.casino-bold > * {
    position: relative;
    z-index: 10;
}

.casino-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1024px) {
    .casino-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.casino-card-big {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    padding: 40px;
    display: flex;
    align-items: flex-end;
    border: 2px solid var(--medium-gray);
    transition: all 0.4s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Video Background in Casino Cards */
.card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 0;
    filter: brightness(0.9) contrast(1.1) saturate(1.2) blur(10px);
    transition: opacity 1.5s ease, filter 2s ease, transform 0.6s ease;
    pointer-events: none;
}

.card-video.loaded {
    opacity: 0.8;
    filter: brightness(0.9) contrast(1.1) saturate(1.2) blur(0);
}

.card-video-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.5) 40%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
    pointer-events: none !important;
    transition: background 0.4s ease;
}

.casino-card-big::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.95) 100%);
    z-index: 1;
    transition: all 0.3s ease;
    opacity: 0;
}

/* Show darker overlay on hover */
.casino-card-big:hover::before {
    opacity: 0.3;
}

.casino-card-big::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.3) 0%, transparent 70%);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.casino-card-big:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.5), 0 0 40px rgba(255, 0, 0, 0.3);
}

.casino-card-big:hover .card-video {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2) saturate(1.3) blur(0);
}

.casino-card-big:hover .card-video-overlay {
    background: linear-gradient(
        180deg, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.casino-card-big:hover::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
}

.casino-card-big:hover::after {
    opacity: 1;
}

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

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

.card-content h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--pure-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 1), 0 0 30px rgba(255, 0, 0, 0.5);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.9));
}

.casino-card-big:hover .card-content h3 {
    color: var(--primary-red);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 1), 0 0 40px rgba(255, 0, 0, 0.8);
    transform: translateY(-5px);
}

.card-content p {
    font-size: 1.3rem;
    color: var(--off-white);
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1), 0 0 5px rgba(0, 0, 0, 0.9);
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.9));
}

.card-badge-top {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 4;
    padding: 10px 25px;
    background: var(--primary-red);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 4;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.6);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(255, 0, 0, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(255, 0, 0, 0.9);
    }
}

.card-slots {
    background-image: url('סלוטים.jpg');
}

.card-live {
    background-image: url('קזינו לייב.jpg');
}

.card-tables {
    background-image: url('משחקי שולחן.jpg');
}

/* ============================================
   WINS SECTION - GRID GALLERY
   ============================================ */
.wins-gallery {
    padding: 120px 40px;
    background: var(--dark-gray);
    position: relative;
    z-index: 50 !important;
}

.payment-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: var(--pure-black);
    border: 1px solid var(--primary-red);
    margin: 40px auto;
    max-width: 800px;
    font-size: 1.4rem;
    font-weight: 600;
}

.payment-banner i {
    font-size: 2rem;
    color: var(--primary-red);
}

.wins-grid-slider {
    max-width: 1400px;
    margin: 0 auto 80px;
}

.winsSwiper {
    padding: 100px 0 120px;
    overflow: visible !important;
    perspective: 1500px;
    position: relative;
    z-index: 100 !important;
    touch-action: pan-x pan-y !important;
    -webkit-user-select: none;
    user-select: none;
}

.winsSwiper .swiper-wrapper {
    align-items: center;
    transform-style: preserve-3d;
}

.winsSwiper .swiper-slide {
    width: 500px;
    height: auto;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    z-index: 50 !important;
    pointer-events: auto !important;
}

/* Non-active slides are slightly faded */
.winsSwiper .swiper-slide:not(.swiper-slide-active) .win-card {
    opacity: 0.7;
    filter: brightness(0.7);
}

/* Active slide is bright and highlighted */
.winsSwiper .swiper-slide-active .win-card {
    opacity: 1;
    filter: brightness(1);
    transform: scale(1.08);
}

.win-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    border: 3px solid var(--medium-gray);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    background: var(--pure-black);
}

.win-card:hover {
    border-color: var(--primary-red);
    transform: scale(1.1);
    box-shadow: 0 25px 70px rgba(255, 0, 0, 0.8), 0 0 50px rgba(255, 0, 0, 0.5);
}

.win-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 13px;
    background: transparent;
}

.win-badge-overlay {
    position: absolute;
    top: 25px;
    right: 25px;
    padding: 12px 28px;
    background: rgba(255, 0, 0, 0.2);
    color: var(--primary-red);
    font-size: 1.4rem;
    font-weight: 700;
    border: 3px solid var(--primary-red);
    backdrop-filter: blur(15px);
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.7), inset 0 0 25px rgba(255, 0, 0, 0.3);
    animation: verifiedPulse 2s ease-in-out infinite;
    border-radius: 10px;
    z-index: 10;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.9);
}

@keyframes verifiedPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 0, 0, 0.6), inset 0 0 20px rgba(255, 0, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 30px rgba(255, 0, 0, 0.9), inset 0 0 30px rgba(255, 0, 0, 0.3);
        transform: scale(1.05);
    }
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 0, 0, 0.5);
        border-color: var(--primary-red);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 0, 0, 0.8), 0 0 20px rgba(255, 0, 0, 0.6);
        border-color: var(--light-red);
    }
}

.swiper-pagination-bullet {
    background: var(--medium-gray) !important;
    opacity: 1 !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 6px !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-red) !important;
    width: 30px !important;
    border-radius: 6px !important;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6) !important;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-red) !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(0, 0, 0, 0.8) !important;
    border: 2px solid var(--primary-red) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-red) !important;
    color: var(--pure-white) !important;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.8) !important;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: 900 !important;
}

.wins-cta-block {
    text-align: center;
}

.cta-question {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.wins-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.wins-action-btn:hover {
    background: var(--light-red);
}

/* ============================================
   POKER SECTION - SIDE BY SIDE
   ============================================ */
.poker-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--pure-black);
}

.poker-left {
    text-align: right;
}

.poker-question,
.poker-types,
.poker-platform {
    font-size: 1.6rem;
    margin: 15px 0;
    color: var(--light-gray);
}

.poker-info-blocks {
    margin: 40px 0;
}

.info-block {
    padding: 25px;
    background: var(--dark-gray);
    border-right: 3px solid var(--primary-red);
    margin-bottom: 20px;
}

.block-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-block ul {
    list-style: none;
}

.info-block li {
    font-size: 1.3rem;
    color: var(--light-gray);
    margin: 8px 0;
}

.poker-highlights {
    margin: 40px 0;
}

.highlight-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--dark-gray);
    border: 1px solid var(--medium-gray);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.highlight-box:hover {
    border-color: var(--primary-red);
}

.highlight-box i {
    font-size: 2.5rem;
    color: var(--primary-red);
}

.highlight-box strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.highlight-box span {
    font-size: 1.2rem;
    color: var(--light-gray);
}

.poker-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 45px;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.poker-action-btn:hover {
    background: var(--light-red);
}

.poker-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.poker-cards-display {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.card-symbol {
    width: 180px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    background: var(--dark-gray);
    border: 2px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.card-symbol:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px);
}

.card-symbol:nth-child(1) { color: var(--pure-white); }
.card-symbol:nth-child(2) { color: var(--primary-red); }
.card-symbol:nth-child(3) { color: var(--primary-red); }
.card-symbol:nth-child(4) { color: var(--pure-white); }

/* ============================================
   SPORTS SECTION - FULL WIDTH WITH VIDEO
   ============================================ */
.sports-wide {
    padding: 120px 40px;
    background: var(--pure-black);
    position: relative;
    overflow: hidden;
}

/* Sports Background Video (Lazy Loaded) */
.sports-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    filter: brightness(0.8) contrast(1.05);
    transition: opacity 1s ease, filter 1s ease;
    pointer-events: none;
}

.sports-video.loaded {
    opacity: 0.65;
    filter: brightness(0.8) contrast(1.05) blur(0);
}

.sports-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    pointer-events: none !important;
}

.sports-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
}

.sports-logos-slider {
    margin: 60px 0;
}

.sportsSwiper {
    padding: 30px 0;
    overflow: visible !important;
    position: relative;
    z-index: 100 !important;
    touch-action: pan-x pan-y !important;
    -webkit-user-select: none;
    user-select: none;
}

.sportsSwiper .swiper-slide {
    width: auto !important;
}

.sport-logo-box {
    width: 180px;
    height: 120px;
    padding: 20px;
    background: var(--pure-white);
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.sport-logo-box:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.4);
}

.sport-logo-box img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.sports-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-box {
    padding: 35px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--medium-gray);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--primary-red);
    background: rgba(0, 0, 0, 0.9);
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.feature-box strong {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-box span {
    font-size: 1.2rem;
    color: var(--light-gray);
}

.feature-box-bonus {
    border-color: var(--primary-red);
}

/* ============================================
   BONUSES SECTION - COMPACT
   ============================================ */
.bonuses-compact {
    padding: 120px 40px;
    background: var(--dark-gray);
}

.bonus-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.bonus-compact-card {
    padding: 50px 30px;
    background: var(--pure-black);
    border: 1px solid var(--medium-gray);
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-compact-card:hover {
    border-color: var(--primary-red);
}

.bonus-icon-big {
    font-size: 5rem;
    margin-bottom: 25px;
}

.bonus-compact-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.bonus-compact-card p {
    font-size: 1.2rem;
    color: var(--light-gray);
    line-height: 1.6;
}

/* ============================================
   TRUST SECTION - ICON GRID
   ============================================ */
.trust-grid-section {
    padding: 120px 40px;
    background: var(--pure-black);
    text-align: center;
}

.trust-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 80px auto 0;
}

.trust-icon-box {
    padding: 40px 20px;
    background: var(--dark-gray);
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.trust-icon-box:hover {
    border-color: var(--primary-red);
}

.trust-icon-box i {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 25px;
}

.trust-icon-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.trust-icon-box p {
    font-size: 1.2rem;
    color: var(--light-gray);
}

/* ============================================
   FINAL CTA - MEGA
   ============================================ */
.final-mega-cta {
    padding: 150px 40px;
    background: var(--dark-gray);
    text-align: center;
}

.cta-logo-big {
    width: 150px;
    height: auto;
    margin-bottom: 40px;
}

.cta-title-big {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-subtitle-big {
    font-size: 1.8rem;
    color: var(--light-gray);
    margin-bottom: 50px;
}

.cta-mega-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 30px 70px;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-mega-button:hover {
    background: var(--light-red);
    padding-left: 90px;
}

/* ============================================
   FOOTER - MINIMAL
   ============================================ */
.footer-minimal {
    padding: 50px 40px;
    background: var(--pure-black);
    border-top: 1px solid var(--medium-gray);
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-brand img {
    height: 50px;
    width: auto;
}

.footer-brand span {
    font-size: 2rem;
    font-weight: 700;
}

.footer-minimal p {
    font-size: 1.1rem;
    color: var(--light-gray);
}

/* ============================================
   WHATSAPP FLOAT - ADVANCED PULSE
   ============================================ */
.whatsapp-circle {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    background: var(--primary-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
    text-decoration: none;
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
    animation: waPulseCircle 2s ease-in-out infinite;
}

@keyframes waPulseCircle {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 10px 50px rgba(255, 0, 0, 0.8), 0 0 60px rgba(255, 0, 0, 0.4);
    }
}

.whatsapp-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-red);
    animation: waPulseRing 2s ease-out infinite;
}

@keyframes waPulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.whatsapp-circle:hover {
    background: var(--light-red);
    transform: scale(1.2);
    box-shadow: 0 15px 60px rgba(255, 0, 0, 0.9), 0 0 80px rgba(255, 0, 0, 0.6);
}

.wa-tooltip {
    position: absolute;
    right: 85px;
    background: var(--pure-black);
    color: white;
    padding: 12px 25px;
    border: 2px solid var(--primary-red);
    white-space: nowrap;
    font-size: 1.3rem;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.4);
}

.whatsapp-circle:hover .wa-tooltip {
    opacity: 1;
    right: 95px;
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 1024px) {
    .mega-hero {
        padding: 100px 30px 70px;
    }
    
    .mega-title {
        font-size: 5rem;
    }
    
    .bold-title {
        font-size: 4rem;
    }
    
    .casino-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .poker-side {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 100px 30px;
    }
    
    .poker-cards-display {
        justify-content: center;
    }
    
    .trust-icon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .sports-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .bonus-cards-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Video optimization for tablets */
    .hero-video.loaded {
        opacity: 0.65;
        filter: brightness(0.85) contrast(1.05);
    }
    
    .casino-video.loaded {
        opacity: 0.7;
        filter: brightness(0.9) contrast(1.05) saturate(1.1);
    }
    
    .sports-video.loaded {
        opacity: 0.6;
        filter: brightness(0.8) contrast(1.05);
    }
    
    /* Card videos for tablets */
    .card-video.loaded {
        opacity: 0.75;
        filter: brightness(0.9) contrast(1.1) saturate(1.2);
    }
    
    /* Casino section tablet adjustments */
    .casino-bold {
        padding: 100px 30px;
    }
}

@media (max-width: 768px) {
    .preloader-content {
        padding: 40px 30px;
        border-radius: 20px;
        border-width: 2px;
    }
    
    .logo-branding {
        padding: 20px;
        border-radius: 15px;
        margin-bottom: 30px;
    }
    
    .preloader-logo {
        width: 150px;
    }
    
    .preloader-text {
        padding: 15px 25px;
        gap: 15px;
        border-radius: 15px;
    }
    
    .letter-g,
    .letter-u,
    .letter-y {
        font-size: 4rem;
    }
    
    .loading-message {
        font-size: 1rem;
        padding: 8px 20px;
    }
    
    .mega-title {
        font-size: 4rem;
    }
    
    .winsSwiper {
        padding: 60px 0 80px;
    }
    
    .winsSwiper .swiper-slide {
        width: 400px;
    }
    
    .win-card {
        max-width: 400px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 45px !important;
        height: 45px !important;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 18px !important;
    }
    
    .bold-title {
        font-size: 3rem;
    }
    
    .bold-title::after {
        width: 100px;
    }
    
    .section-intro {
        padding: 0 20px;
    }
    
    .casino-cards {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .casino-card-big {
        min-height: 350px;
    }
    
    .bonus-cards-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .trust-icon-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .poker-side {
        padding: 80px 20px;
        gap: 50px;
    }
    
    .poker-cards-display {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .card-symbol {
        width: 120px;
        height: 160px;
        font-size: 5rem;
    }
    
    .sports-features-grid {
        padding: 0 20px;
    }
    
    .sports-wide {
        padding: 80px 20px;
    }
    
    .header {
        top: 15px;
        max-width: 95%;
    }
    
    .header-wrapper {
        padding: 12px 15px 12px 140px;
        gap: 10px;
        justify-content: center;
    }
    
    .age-warning-container {
        left: 5px;
        flex-direction: column;
        gap: 4px;
        padding: 5px 8px;
        align-items: flex-start;
        max-width: 125px;
    }
    
    .age-badge {
        font-size: 0.7rem;
        padding: 2px 6px;
        align-self: center;
    }
    
    .warning-message {
        font-size: 0.58rem;
        white-space: normal;
        line-height: 1.2;
        text-align: center;
    }
    
    .header-logo {
        height: 35px;
    }
    
    .header-contact {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    /* VIDEO OPTIMIZATION FOR MOBILE - Make them visible and bright */
    .hero-video {
        display: block !important;
        opacity: 1 !important;
    }
    
    .hero-video.loaded {
        opacity: 0.8 !important;
        filter: brightness(1) contrast(1.1) !important;
    }
    
    .casino-video {
        display: block !important;
        opacity: 1 !important;
    }
    
    .casino-video.loaded {
        opacity: 0.85 !important;
        filter: brightness(1.1) contrast(1.1) saturate(1.2) !important;
    }
    
    .sports-video {
        display: block !important;
        opacity: 1 !important;
    }
    
    .sports-video.loaded {
        opacity: 0.75 !important;
        filter: brightness(1) contrast(1.1) !important;
    }
    
    /* Card videos for mobile - Make them bright and visible */
    .card-video {
        display: block !important;
        opacity: 1 !important;
    }
    
    .card-video.loaded {
        opacity: 0.9 !important;
        filter: brightness(1.1) contrast(1.15) saturate(1.3) !important;
    }
    
    /* Lighter overlays for mobile */
    .hero-video-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%) !important;
    }
    
    .casino-video-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.4) 100%) !important;
    }
    
    .card-video-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.7) 100%) !important;
    }
    
    .sports-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.4) 100%) !important;
    }
    
    /* Casino section mobile adjustments */
    .casino-bold {
        padding: 80px 20px;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .preloader-content {
        padding: 30px 20px;
        border-radius: 15px;
        border-width: 2px;
        max-width: 90%;
    }
    
    .logo-branding {
        padding: 15px;
        border-radius: 12px;
        margin-bottom: 25px;
    }
    
    .preloader-logo {
        width: 120px;
    }
    
    .preloader-text {
        padding: 10px 15px;
        gap: 10px;
        border-radius: 12px;
    }
    
    .letter-g,
    .letter-u,
    .letter-y {
        font-size: 3rem;
    }
    
    .loading-message {
        font-size: 0.9rem;
        padding: 6px 15px;
    }
    
    .loading-line {
        width: 200px;
    }
    
    .mega-hero {
        padding: 100px 20px 60px;
        min-height: 90vh;
    }
    
    .mega-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    /* Wins Slider for small screens */
    .winsSwiper {
        padding: 40px 0 60px;
        overflow: visible !important;
        z-index: 100 !important;
    }
    
    .winsSwiper .swiper-slide {
        width: 300px !important;
        pointer-events: auto !important;
    }
    
    .win-card {
        max-width: 300px;
        pointer-events: auto !important;
    }
    
    .winsSwiper .swiper-wrapper {
        pointer-events: auto !important;
    }
    
    /* Hide navigation buttons on very small screens */
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
    
    .swiper-pagination {
        bottom: 0 !important;
    }
    
    .mega-badge {
        font-size: 1rem;
        padding: 6px 20px;
        letter-spacing: 3px;
        margin-bottom: 30px;
        white-space: nowrap;
    }
    
    .hero-info-box {
        padding: 25px 20px;
        margin: 30px 0;
    }
    
    .info-main {
        font-size: 1.4rem;
    }
    
    .info-features {
        font-size: 1.2rem;
    }
    
    .info-services {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .info-support {
        font-size: 1.05rem;
        padding: 10px 18px;
        margin-top: 12px;
    }
    
    .mega-cta {
        padding: 18px 40px;
        font-size: 1.5rem;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .refer-bonus-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        margin-top: 35px;
        gap: 15px;
    }
    
    .bonus-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .bonus-icon-wrapper i {
        font-size: 2rem;
    }
    
    .bonus-title {
        font-size: 1.5rem;
    }
    
    .bonus-text {
        font-size: 1.1rem;
    }
    
    .bonus-highlight {
        font-size: 1.2rem;
        padding: 6px 15px;
    }
    
    .bonus-sparkle {
        top: 10px;
        right: 10px;
        font-size: 1.5rem;
    }
    
    .bold-title {
        font-size: 2.2rem;
    }
    
    .casino-card-big {
        min-height: 300px;
        padding: 30px 20px;
    }
    
    .card-content h3 {
        font-size: 2rem;
    }
    
    .card-content p {
        font-size: 1rem;
    }
    
    .poker-side {
        padding: 60px 15px;
    }
    
    .sports-wide {
        padding: 60px 15px;
    }
    
    /* Videos enabled on small phones too - even brighter */
    .hero-video.loaded {
        opacity: 0.75 !important;
        filter: brightness(1.05) contrast(1.1) !important;
    }
    
    .casino-video.loaded {
        opacity: 0.8 !important;
        filter: brightness(1.15) contrast(1.1) saturate(1.2) !important;
    }
    
    .card-video.loaded {
        opacity: 0.85 !important;
        filter: brightness(1.15) contrast(1.15) saturate(1.3) !important;
    }
    
    .sports-video.loaded {
        opacity: 0.7 !important;
        filter: brightness(1.05) contrast(1.1) !important;
    }
    
    /* Casino section small phone adjustments */
    .casino-bold {
        padding: 60px 15px;
    }
    
    /* Don't load heavy sports video on very small screens */
    .sports-video {
        display: none;
    }
    
    .sports-wide {
        background-image: url('stadiu,.JPG');
        background-size: cover;
        background-position: center;
    }
    
    .whatsapp-circle {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        bottom: 25px;
        right: 25px;
    }
    
    .wa-tooltip {
        display: none;
    }
    
    /* Adjust slider sizes for mobile */
    .partner-box {
        width: 150px;
        height: 90px;
        padding: 10px;
    }
    
    .sport-logo-box {
        width: 150px;
        height: 100px;
        padding: 15px;
    }
    
    .winsSwiper {
        padding: 60px 0 80px;
    }
    
    .winsSwiper .swiper-slide {
        width: 380px;
    }
    
    .win-card {
        max-width: 380px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px !important;
    }
}
