/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #FFD700;
    --gold-dark: #B8860B;
    --gold-light: #FFE55C;
    --red: #DC143C;
    --green: #00C853;
    --dark-bg: #0a0e27;
    --dark-card: #1a1f3a;
    --white: #ffffff;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Karantina', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

/* ===== LANDING SCREEN ===== */
.landing-screen {
    display: none;
    position: relative;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
}

.landing-screen.active {
    display: flex;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('רקע בית .jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.92) 0%,
        rgba(26, 31, 58, 0.85) 50%,
        rgba(10, 14, 39, 0.92) 100%
    );
    backdrop-filter: blur(2px);
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

/* Agent Badge */
.agent-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 15px 40px;
    border-radius: 50px;
    margin-bottom: 35px;
    animation: fadeInDown 0.8s ease, glow 2s ease-in-out infinite;
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.5),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

@keyframes glow {
    0%, 100% { box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4), inset 0 2px 10px rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 8px 30px rgba(255, 215, 0, 0.7), inset 0 2px 10px rgba(255, 255, 255, 0.5); }
}

.badge-icon {
    font-size: 1.8rem;
    animation: rotate-badge 3s ease-in-out infinite;
}

@keyframes rotate-badge {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.badge-text {
    font-family: 'Karantina', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-bg);
    letter-spacing: 1px;
}

/* Logo */
.logo-container {
    position: relative;
    margin-bottom: 25px;
    animation: fadeInDown 1s ease 0.2s backwards;
}

.logo {
    font-family: 'Karantina', sans-serif;
    font-size: clamp(4rem, 12vw, 7rem);
    font-weight: 700;
    letter-spacing: 8px;
    color: #FF0000;
    text-shadow: 
        0 0 20px rgba(255, 0, 0, 0.8),
        0 0 40px rgba(255, 0, 0, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.5);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    position: relative;
}

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

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

.logo-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

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

/* CrownBet Official Logo */
.crownbet-logo-link {
    display: inline-block;
    margin-bottom: 45px;
    cursor: pointer;
    animation: fadeInUp 1s ease 0.4s backwards;
    text-decoration: none;
}

.crownbet-logo {
    padding: 20px;
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8), rgba(10, 14, 39, 0.9));
    border-radius: 25px;
    border: 3px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
}

.crownbet-logo-link:hover .crownbet-logo {
    border-color: var(--gold);
    box-shadow: 
        0 15px 45px rgba(255, 215, 0, 0.4),
        0 0 40px rgba(255, 215, 0, 0.3);
    transform: translateY(-3px) scale(1.02);
}

.crownbet-logo-link:active .crownbet-logo {
    transform: translateY(0) scale(0.98);
}

.crownbet-logo img {
    max-width: 600px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.3));
    transition: transform 0.4s ease;
    display: block;
    margin: 0 auto;
}

.crownbet-logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(255, 215, 0, 0.5));
}

/* Main Pitch */
.main-pitch {
    margin-bottom: 55px;
    animation: fadeInUp 1s ease 0.6s backwards;
    padding: 25px;
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.7), rgba(10, 14, 39, 0.8));
    border-radius: 25px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Headline */
.headline {
    font-family: 'Karantina', sans-serif;
    font-size: clamp(4.5rem, 10vw, 7rem);
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--gold);
    letter-spacing: 4px;
    text-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(255, 215, 0, 0.3);
}

.subtext {
    font-family: 'Karantina', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.5;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

/* ===== IPHONE MOCKUP SLIDER ===== */
.mockup-slider {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    margin: 0 auto 40px;
    position: relative;
    padding: 30px 0;
}

.mockup-slider::before,
.mockup-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.mockup-slider::before {
    left: 0;
    background: linear-gradient(to right, rgba(10, 10, 20, 1), rgba(10, 10, 20, 0));
}

.mockup-slider::after {
    right: 0;
    background: linear-gradient(to left, rgba(10, 10, 20, 1), rgba(10, 10, 20, 0));
}

.slider-track {
    display: flex;
    gap: 25px;
    animation: slideLeft 15s linear infinite;
    width: max-content;
}

.slide-mockup {
    flex-shrink: 0;
    width: 240px;
    height: 500px;
    transition: transform 0.3s ease;
}

.slide-mockup:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.4));
}

.slide-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.3);
}

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

/* ===== WHATSAPP CTA MAIN ===== */
.whatsapp-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 45px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    text-decoration: none;
    border-radius: 60px;
    font-family: 'Karantina', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 40px;
    box-shadow: 
        0 10px 40px rgba(37, 211, 102, 0.5),
        0 0 50px rgba(37, 211, 102, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    animation: whatsappMainPulse 2s ease-in-out infinite;
}

.whatsapp-cta-main:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 50px rgba(37, 211, 102, 0.7),
        0 0 70px rgba(37, 211, 102, 0.5);
    color: #ffffff;
    text-decoration: none;
}

.whatsapp-icon-main {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.cta-text-main {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

@keyframes whatsappMainPulse {
    0%, 100% {
        box-shadow: 
            0 10px 40px rgba(37, 211, 102, 0.5),
            0 0 50px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 
            0 15px 50px rgba(37, 211, 102, 0.7),
            0 0 70px rgba(37, 211, 102, 0.5);
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto 50px;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.feature-card {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.9), rgba(10, 14, 39, 0.95));
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 215, 0, 0.4);
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(26, 31, 58, 0.95));
    border-color: var(--gold);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.feature-title {
    font-family: 'Karantina', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.feature-text {
    font-family: 'Karantina', sans-serif;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

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

/* Game Buttons */
.game-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 1s backwards;
}

.game-btn {
    position: relative;
    padding: 35px 60px;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    border: 4px solid;
    border-radius: 25px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.7),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.roulette-btn {
    background: 
        linear-gradient(135deg, rgba(220, 20, 60, 0.85), rgba(139, 0, 0, 0.85)),
        url('רקע כפתור רולטה.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    border-color: rgba(255, 215, 0, 0.5);
}

.blackjack-btn {
    background: 
        linear-gradient(135deg, rgba(26, 31, 58, 0.85), rgba(0, 0, 0, 0.85)),
        url('רקע כפתור בלאק גק.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-icon {
    font-size: clamp(2rem, 5vw, 3rem);
    animation: bounce 2s infinite;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.6);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
    pointer-events: none;
}

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

.btn-text {
    font-family: 'Karantina', sans-serif;
    letter-spacing: 3px;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.game-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
}

.roulette-btn:hover {
    background: 
        linear-gradient(135deg, rgba(220, 20, 60, 0.7), rgba(139, 0, 0, 0.7)),
        url('רקע כפתור רולטה.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 20px 60px rgba(220, 20, 60, 0.6);
}

.blackjack-btn:hover {
    background: 
        linear-gradient(135deg, rgba(26, 31, 58, 0.7), rgba(0, 0, 0, 0.7)),
        url('רקע כפתור בלאק גק.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.6);
}

.game-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.game-btn:hover .btn-glow {
    left: 100%;
}

/* Trust Section */
.trust-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    animation: fadeInUp 1s ease 1.2s backwards;
}

.trust-text {
    font-family: 'Karantina', sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.trust-badge {
    font-family: 'Karantina', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.9), rgba(10, 14, 39, 0.95));
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 215, 0, 0.5);
    padding: 15px 35px;
    border-radius: 50px;
    color: var(--gold);
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.trust-badge:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(26, 31, 58, 0.95));
    border-color: var(--gold);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* ===== GAME SCREENS ===== */
.game-screen {
    display: none;
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
    animation: fadeIn 0.5s ease;
}

.game-screen.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.back-btn {
    font-family: 'Karantina', sans-serif;
    position: absolute;
    top: 20px;
    right: 20px; /* Changed from left to right for Hebrew RTL */
    padding: 15px 30px;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border: 3px solid var(--gold);
    color: var(--gold);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3),
                inset 0 2px 10px rgba(255, 255, 255, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-btn:hover {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.4), rgba(255, 165, 0, 0.4));
    transform: translateX(5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5),
                inset 0 2px 15px rgba(255, 255, 255, 0.3);
}

.game-container {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
}

.game-title {
    font-family: 'Karantina', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.game-subtitle {
    font-family: 'Karantina', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(220, 20, 60, 0.1));
    padding: 12px 25px;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin: 0 auto 30px;
    max-width: 600px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

/* ===== THREE.JS ROULETTE STYLES - PRAGMATIC PLAY ===== */
#threejsContainer {
    width: 100%;
    max-width: 1400px;
    height: 450px;
    margin: 0 auto 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.8),
        inset 0 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 3px solid #8B6914;
    position: relative;
}

#threejsContainer canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* Game UI Overlay */
.game-ui-overlay {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.balance-display, .last-results {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 15px 25px;
    pointer-events: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.balance-label, .results-label {
    font-family: 'Karantina', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.balance-amount {
    font-family: 'Karantina', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #00FF00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.results-numbers {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.result-number {
    font-family: 'Karantina', sans-serif;
    min-width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    border: 2px solid var(--gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ===== BETTING CONTROLS WRAPPER - PRAGMATIC STYLE ===== */
.betting-controls-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 20px;
    background: linear-gradient(135deg, #0d4d0d 0%, #0a3d0a 100%);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    border: 3px solid #2d5a2d;
}

/* ===== LEFT PANEL ===== */
.left-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Chip Selector - Pragmatic Style */
.chip-selector-pragmatic {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.chip-label-pragmatic {
    font-family: 'Karantina', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFD700;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.chips-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.chip-btn-pragmatic {
    font-family: 'Karantina', sans-serif;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 5px solid;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.5),
        inset 0 2px 8px rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chip-btn-pragmatic::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.chip-btn-pragmatic::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: inherit;
    border-radius: 50%;
    border: inherit;
    border-width: 3px;
}

/* Chip Colors - Pragmatic Play Style */
.chip-blue {
    background: radial-gradient(circle at 30% 30%, #4a90e2, #2e5c8f);
    border-color: white;
}

.chip-red {
    background: radial-gradient(circle at 30% 30%, #e24a4a, #8f2e2e);
    border-color: white;
}

.chip-green {
    background: radial-gradient(circle at 30% 30%, #4ae24a, #2e8f2e);
    border-color: white;
}

.chip-black {
    background: radial-gradient(circle at 30% 30%, #4a4a4a, #1a1a1a);
    border-color: #FFD700;
}

.chip-purple {
    background: radial-gradient(circle at 30% 30%, #a64ae2, #5f2e8f);
    border-color: white;
}

.chip-btn-pragmatic:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.6),
        inset 0 2px 12px rgba(255, 255, 255, 0.3);
}

.chip-btn-pragmatic.active {
    transform: scale(1.2);
    box-shadow: 
        0 0 30px currentColor,
        0 10px 30px rgba(0, 0, 0, 0.7),
        inset 0 2px 12px rgba(255, 255, 255, 0.4);
    animation: pulse-chip-pragmatic 1s ease-in-out infinite;
}

@keyframes pulse-chip-pragmatic {
    0%, 100% { 
        box-shadow: 
            0 0 20px currentColor,
            0 10px 30px rgba(0, 0, 0, 0.7),
            inset 0 2px 12px rgba(255, 255, 255, 0.4);
    }
    50% { 
        box-shadow: 
            0 0 40px currentColor,
            0 10px 35px rgba(0, 0, 0, 0.8),
            inset 0 2px 15px rgba(255, 255, 255, 0.5);
    }
}

.chip-inner {
    position: relative;
    z-index: 1;
}

/* Action Buttons */
.action-buttons-pragmatic {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-btn {
    font-family: 'Karantina', sans-serif;
    padding: 12px 20px;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 8px;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.undo-btn {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    border-color: #ff5252;
    color: white;
}

.undo-btn:hover {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.5);
}

.rebet-btn {
    background: linear-gradient(135deg, #388e3c, #2e7d32);
    border-color: #66bb6a;
    color: white;
}

.rebet-btn:hover {
    background: linear-gradient(135deg, #4caf50, #388e3c);
    box-shadow: 0 5px 15px rgba(56, 142, 60, 0.5);
}

/* Statistics Panel */
.statistics-panel {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.stat-title {
    font-family: 'Karantina', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFD700;
    text-align: center;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-family: 'Karantina', sans-serif;
    font-size: 1.3rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.stat-value {
    color: #FFD700;
    font-weight: 700;
}

/* ===== CENTER PANEL - CLASSIC BETTING TABLE ===== */
.center-panel {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.classic-betting-table {
    background: linear-gradient(135deg, #0a6b0a 0%, #085d08 100%);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 
        inset 0 2px 10px rgba(0, 0, 0, 0.5),
        0 5px 20px rgba(0, 0, 0, 0.4);
    border: 3px solid #2d5a2d;
}

.table-felt-header {
    font-family: 'Karantina', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.european-layout {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Zero Section */
.zero-section {
    margin-bottom: 5px;
}

/* Numbers Section */
.numbers-section {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.number-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr) 80px;
    gap: 3px;
}

.number-btn-pragmatic {
    font-family: 'Karantina', sans-serif;
    height: 45px;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.number-btn-pragmatic.red {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
}

.number-btn-pragmatic.black {
    background: linear-gradient(135deg, #424242 0%, #212121 100%);
}

.number-btn-pragmatic.zero {
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
    height: 50px;
}

.number-btn-pragmatic:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.6);
    border-color: #FFD700;
    z-index: 10;
}

.number-btn-pragmatic.has-bet {
    border-color: #FFD700;
    border-width: 3px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.number-text {
    position: relative;
    z-index: 1;
}

.bet-amount {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FFD700;
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
    border: 2px solid #000;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    animation: bet-appear 0.3s ease;
    z-index: 20;
}

@keyframes bet-appear {
    from {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* 2 to 1 and Other Bet Buttons */
.bet-btn {
    font-family: 'Karantina', sans-serif;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

.bet-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(21, 101, 192, 0.6);
    border-color: #FFD700;
}

.two-to-one {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bottom Bets (Dozens) */
.bottom-bets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin: 5px 0;
}

.dozen-btn {
    height: 50px;
}

/* Outside Bets */
.outside-bets {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3px;
}

.outside-bet-btn {
    height: 50px;
}

.red-btn {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%) !important;
}

.black-btn {
    background: linear-gradient(135deg, #424242 0%, #212121 100%) !important;
}

.low-btn, .high-btn, .even-btn, .odd-btn {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
}

/* ===== SPIN BUTTON - PRAGMATIC STYLE ===== */
.spin-btn-pragmatic {
    font-family: 'Karantina', sans-serif;
    width: 100%;
    padding: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
    color: #000;
    border: 4px solid #FFF;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.5),
        inset 0 2px 8px rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
}

.spin-btn-pragmatic::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: rotate(45deg);
    animation: shine-sweep-pragmatic 2.5s infinite;
}

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

.spin-icon {
    font-size: 2.5rem;
    animation: spin-rotate 2s linear infinite;
}

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

.spin-text-pragmatic {
    position: relative;
    z-index: 1;
}

.spin-btn-pragmatic:hover {
    transform: scale(1.03) translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(255, 215, 0, 0.7),
        inset 0 2px 10px rgba(255, 255, 255, 0.5);
}

.spin-btn-pragmatic:active {
    transform: scale(0.98);
}

.spin-btn-pragmatic:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.spin-btn-pragmatic:disabled .spin-icon {
    animation: none;
}

/* ===== RIGHT PANEL ===== */
.right-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.total-bet-display, .possible-win-display {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.total-bet-label, .possible-win-label {
    font-family: 'Karantina', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.total-bet-amount {
    font-family: 'Karantina', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.possible-win-amount {
    font-family: 'Karantina', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #00FF00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* Result Display */
.result-display {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease;
}

.result-display.active {
    display: flex;
}

.result-content {
    text-align: center;
    animation: popIn 0.5s ease;
}

.result-icon {
    font-size: clamp(4rem, 10vw, 6rem);
    margin-bottom: 20px;
    animation: rotate 1s ease infinite;
}

.result-number {
    font-family: 'Karantina', sans-serif;
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 40px currentColor;
}

.result-message {
    font-family: 'Karantina', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.result-amount {
    font-family: 'Karantina', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    text-shadow: 0 0 20px currentColor;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .betting-controls-wrapper {
        grid-template-columns: 180px 1fr 180px;
        gap: 15px;
    }

    .chip-btn-pragmatic {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .number-btn-pragmatic {
        height: 40px;
        font-size: 1.6rem;
    }
}

@media (max-width: 968px) {
    #threejsContainer {
        height: 350px;
    }

    .betting-controls-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .left-panel, .right-panel {
        flex-direction: row;
        justify-content: space-around;
    }

    .chip-selector-pragmatic {
        flex: 1;
    }

    .chips-stack {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .statistics-panel, .total-bet-display, .possible-win-display {
        flex: 1;
    }

    .action-buttons-pragmatic {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    #threejsContainer {
        height: 300px;
        border-radius: 10px;
    }

    .game-ui-overlay {
        padding: 0 10px;
        flex-direction: column;
        gap: 8px;
    }

    .balance-display, .last-results {
        padding: 8px 12px;
    }
    
    .balance-label, .results-label {
        font-size: 1rem;
        margin-bottom: 3px;
    }

    .balance-amount {
        font-size: 1.6rem;
    }

    .result-number {
        min-width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .betting-controls-wrapper {
        padding: 15px 10px;
    }
    
    .chip-btn-pragmatic {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        border-width: 4px;
    }

    .number-row {
        grid-template-columns: repeat(12, 1fr) 60px;
        gap: 2px;
    }

    .number-btn-pragmatic {
        height: 35px;
        font-size: 1.4rem;
    }

    .number-btn-pragmatic.zero {
        height: 40px;
    }

    .bet-btn {
        font-size: 1.3rem;
    }

    .two-to-one {
        height: 35px;
    }

    .dozen-btn, .outside-bet-btn {
        height: 40px;
    }

    .spin-btn-pragmatic {
        padding: 15px;
        font-size: 2rem;
    }

    .spin-icon {
        font-size: 2rem;
    }

    .left-panel, .right-panel {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    #threejsContainer {
        height: 250px;
    }

    .table-felt-header {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .number-row {
        grid-template-columns: repeat(12, 1fr);
        gap: 2px;
    }

    .two-to-one {
        display: none;
    }

    .bottom-bets {
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
    }

    .outside-bets {
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
    }

    .number-btn-pragmatic {
        height: 30px;
        font-size: 1.2rem;
    }

    .chip-btn-pragmatic {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .stat-title, .chip-label-pragmatic {
        font-size: 1.3rem;
    }

    .action-btn {
        font-size: 1.3rem;
        padding: 10px 15px;
    }
}

/* ===== ROULETTE ===== */
.roulette-wheel {
    position: relative;
    width: clamp(250px, 80vw, 400px);
    height: clamp(250px, 80vw, 400px);
    margin: 0 auto 50px;
}

.wheel-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 
        conic-gradient(
            var(--red) 0deg 30deg,
            #000 30deg 60deg,
            var(--red) 60deg 90deg,
            #000 90deg 120deg,
            var(--red) 120deg 150deg,
            #000 150deg 180deg,
            var(--red) 180deg 210deg,
            #000 210deg 240deg,
            var(--red) 240deg 270deg,
            #000 270deg 300deg,
            var(--red) 300deg 330deg,
            #000 330deg 360deg
        );
    border: 15px solid var(--gold);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.5),
        inset 0 0 50px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.wheel-number {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--gold);
    background: rgba(0, 0, 0, 0.8);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid var(--gold);
    z-index: 10;
}

.wheel-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 40px solid var(--gold);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
    z-index: 20;
}

.spin-btn, .deal-btn, .hit-btn, .stand-btn {
    font-family: 'Karantina', sans-serif;
    padding: 20px 60px;
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-bg);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hit-btn {
    background: linear-gradient(135deg, var(--green), #009944);
    padding: 15px 40px;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin: 0 10px;
}

.stand-btn {
    background: linear-gradient(135deg, var(--red), #AA0000);
    padding: 15px 40px;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin: 0 10px;
}

.spin-btn:hover, .deal-btn:hover, .hit-btn:hover, .stand-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.hit-btn:hover {
    box-shadow: 0 15px 40px rgba(0, 200, 83, 0.5);
}

.stand-btn:hover {
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.5);
}

.spin-btn:active, .deal-btn:active, .hit-btn:active, .stand-btn:active {
    transform: scale(0.98);
}

.spin-btn:disabled, .deal-btn:disabled, .hit-btn:disabled, .stand-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.blackjack-actions {
    margin-top: 20px;
}

.game-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* ===== BLACKJACK ===== */
.blackjack-table {
    background: rgba(0, 100, 0, 0.2);
    border: 3px solid var(--gold);
    border-radius: 30px;
    padding: 40px 20px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.dealer-area, .player-area {
    margin-bottom: 40px;
}

.card-label {
    font-family: 'Karantina', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    min-height: 140px;
    align-items: center;
}

.card {
    width: 80px;
    height: 120px;
    background: white;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: dealCard 0.5s ease;
    position: relative;
}

@keyframes dealCard {
    from {
        opacity: 0;
        transform: translateY(-50px) rotateY(180deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateY(0);
    }
}

.card.red {
    color: var(--red);
}

.card.black {
    color: #000;
}

.score {
    font-family: 'Karantina', sans-serif;
    margin-top: 15px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

/* ===== WIN OVERLAY ===== */
.win-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease;
}

.win-overlay.active {
    display: flex;
}

.win-content {
    text-align: center;
    z-index: 10;
    animation: popIn 0.5s ease;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.win-icon {
    font-size: clamp(4rem, 10vw, 6rem);
    margin-bottom: 20px;
    animation: rotate 1s ease infinite;
}

@keyframes rotate {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

.win-text {
    font-family: 'Karantina', sans-serif;
    font-size: clamp(4rem, 10vw, 6rem);
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.win-amount {
    font-family: 'Karantina', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--green);
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(0, 200, 83, 0.8);
}

.play-again-btn {
    font-family: 'Karantina', sans-serif;
    padding: 20px 50px;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-bg);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.play-again-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

/* Confetti */
.confetti {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .crownbet-logo img {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .landing-screen {
        padding: 20px 10px;
        min-height: 100vh;
        overflow-x: hidden;
    }
    
    .content {
        padding: 15px;
        max-width: 100%;
        width: 100%;
    }
    
    .agent-badge {
        padding: 8px 20px;
        margin-bottom: 15px;
        gap: 8px;
    }

    .badge-text {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .badge-icon {
        font-size: 1.4rem;
    }
    
    .logo-container {
        margin-bottom: 15px;
    }

    .crownbet-logo {
        margin-bottom: 20px;
    }
    
    .crownbet-logo img {
        max-width: 70%;
        width: 70%;
        height: auto;
    }
    
    .crownbet-logo {
        padding: 15px;
        border-width: 2px;
    }

    .main-pitch {
        margin-bottom: 25px;
        padding: 20px 15px;
        border-width: 2px;
    }

    .headline {
        font-size: 3.5rem;
        margin-bottom: 15px;
        line-height: 1.2;
        letter-spacing: 2px;
    }

    .subtext {
        font-size: 2.3rem;
        padding: 0;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .whatsapp-cta-main {
        font-size: 1.6rem;
        padding: 18px 35px;
        margin-bottom: 30px;
    }
    
    .whatsapp-icon-main {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .feature-card {
        padding: 20px 15px;
        min-height: auto;
        border-width: 2px;
    }

    .feature-icon {
        font-size: 2.8rem;
        margin-bottom: 10px;
    }

    .feature-title {
        font-size: 1.7rem;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .feature-text {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .game-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 35px;
        gap: 18px;
        width: 100%;
    }
    
    .game-btn {
        width: 100%;
        max-width: 90%;
        padding: 22px 40px;
        gap: 15px;
        min-width: auto;
        border-width: 3px;
    }
    
    .btn-icon {
        font-size: 2.8rem;
    }
    
    .btn-text {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .trust-section {
        margin-top: 30px;
        padding-top: 25px;
    }

    .trust-text {
        font-size: 1.3rem;
        margin-bottom: 18px;
        padding: 0;
    }

    .trust-badges {
        gap: 12px;
        flex-wrap: wrap;
        padding: 0 10px;
    }

    .trust-badge {
        font-size: 1.3rem;
        padding: 10px 20px;
        border-width: 2px;
    }
    
    .back-btn {
        top: 15px;
        right: 15px;
        padding: 12px 25px;
        font-size: 1.8rem;
        border-width: 2px;
    }
    
    .blackjack-table {
        padding: 30px 15px;
    }
    
    .card {
        width: 60px;
        height: 90px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .landing-screen {
        padding: 8px 5px;
        min-height: 100vh;
        max-height: 100vh;
        overflow-y: auto;
    }
    
    .content {
        padding: 5px;
    }
    
    .agent-badge {
        padding: 4px 12px;
        margin-bottom: 5px;
        gap: 4px;
    }
    
    .badge-text {
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }
    
    .badge-icon {
        font-size: 1rem;
    }
    
    .logo-container {
        margin-bottom: 5px;
    }

    .crownbet-logo {
        margin-bottom: 8px;
        padding: 6px;
        border-width: 1px;
    }
    
    .crownbet-logo img {
        max-width: 45%;
        width: 45%;
    }
    
    .main-pitch {
        margin-bottom: 8px;
        padding: 8px 6px;
        border-width: 1px;
    }

    .headline {
        font-size: 2.2rem;
        margin-bottom: 5px;
        letter-spacing: 1px;
        line-height: 1.1;
    }

    .subtext {
        font-size: 1.5rem;
        padding: 0;
        margin-bottom: 6px;
        line-height: 1.2;
    }
    
    .whatsapp-cta-main {
        font-size: 1.1rem;
        padding: 8px 18px;
        margin-bottom: 8px;
        gap: 6px;
    }
    
    .whatsapp-icon-main {
        font-size: 1.2rem;
    }

    .features-grid {
        gap: 8px;
        padding: 0 5px;
        margin-bottom: 8px;
    }

    .feature-card {
        padding: 10px 8px;
        border-width: 1px;
    }
    
    .feature-icon {
        font-size: 1.5rem;
        margin-bottom: 4px;
    }
    
    .feature-title {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .feature-text {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .game-buttons {
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .game-btn {
        padding: 10px 18px;
        max-width: 90%;
        gap: 6px;
        border-width: 2px;
    }
    
    .btn-icon {
        font-size: 1.5rem;
    }
    
    .btn-text {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .trust-section {
        margin-top: 8px;
        padding-top: 8px;
    }

    .trust-text {
        font-size: 0.85rem;
        padding: 0;
        margin-bottom: 6px;
    }

    .trust-badges {
        gap: 6px;
        padding: 0 5px;
    }

    .trust-badge {
        font-size: 0.85rem;
        padding: 5px 10px;
        border-width: 1px;
    }
    
    .logo {
        font-size: 2.5rem;
        letter-spacing: 3px;
        margin-bottom: 5px;
    }
    
    .back-btn {
        top: 8px;
        right: 8px;
        padding: 6px 12px;
        font-size: 1.2rem;
        border-width: 1px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .landing-screen {
        padding: 15px 6px;
    }
    
    .content {
        padding: 10px;
    }
    
    .agent-badge {
        padding: 5px 15px;
        gap: 5px;
        margin-bottom: 10px;
    }
    
    .badge-text {
        font-size: 1rem;
        letter-spacing: 0px;
    }
    
    .badge-icon {
        font-size: 1.2rem;
    }
    
    .logo-container {
        margin-bottom: 10px;
    }
    
    .crownbet-logo {
        margin-bottom: 12px;
        padding: 10px;
        border-width: 2px;
    }
    
    .crownbet-logo img {
        max-width: 60%;
        width: 60%;
    }
    
    .main-pitch {
        margin-bottom: 18px;
        padding: 12px 10px;
        border-width: 2px;
    }
    
    .headline {
        font-size: 3rem;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    
    .subtext {
        font-size: 2rem;
        padding: 0;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .whatsapp-cta-main {
        font-size: 1.4rem;
        padding: 14px 25px;
        margin-bottom: 20px;
        gap: 10px;
    }
    
    .whatsapp-icon-main {
        font-size: 1.6rem;
    }
    
    .features-grid {
        gap: 10px;
        padding: 0 8px;
        margin-bottom: 22px;
    }
    
    .feature-card {
        padding: 15px 10px;
        border-width: 2px;
    }
    
    .feature-icon {
        font-size: 2.3rem;
        margin-bottom: 7px;
    }
    
    .feature-title {
        font-size: 1.4rem;
        margin-bottom: 6px;
    }
    
    .feature-text {
        font-size: 1.08rem;
        line-height: 1.3;
    }
    
    .game-buttons {
        gap: 12px;
        margin-bottom: 22px;
    }
    
    .game-btn {
        padding: 18px 28px;
        max-width: 92%;
        border-width: 3px;
    }
    
    .btn-icon {
        font-size: 2.3rem;
    }
    
    .btn-text {
        font-size: 1.85rem;
        letter-spacing: 1px;
    }
    
    .trust-section {
        margin-top: 20px;
        padding-top: 18px;
    }
    
    .trust-text {
        font-size: 1.08rem;
        padding: 0;
        margin-bottom: 12px;
    }
    
    .trust-badges {
        gap: 8px;
        padding: 0 8px;
    }
    
    .trust-badge {
        font-size: 1.08rem;
        padding: 7px 14px;
        border-width: 2px;
    }
    
    .back-btn {
        top: 10px;
        right: 10px;
        padding: 8px 18px;
        font-size: 1.5rem;
        border-width: 2px;
        gap: 5px;
    }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 999999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(145deg, #25D366, #128C7E);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: 
        0 6px 25px rgba(37, 211, 102, 0.5),
        0 3px 10px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-family: 'Karantina', sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    animation: floatBounce 2s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 
        0 10px 35px rgba(37, 211, 102, 0.6),
        0 5px 15px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.floating-whatsapp:active {
    transform: scale(1.02);
}

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

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50px;
    background: rgba(37, 211, 102, 0.4);
    animation: pulse-ring 2s ease-out infinite;
    pointer-events: none;
}

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

.whatsapp-svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.whatsapp-text {
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Mobile adjustments for floating button */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        left: 20px;
        padding: 12px 16px;
        font-size: 1.1rem;
        gap: 8px;
    }
    
    .whatsapp-svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .floating-whatsapp {
        bottom: 15px;
        left: 15px;
        padding: 12px;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-svg {
        width: 28px;
        height: 28px;
    }
}

/* ===== GAME LOGO IN GAME SCREENS ===== */
.game-logo {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    pointer-events: none;
}

.game-logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.6))
            drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    opacity: 0.95;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .mockup-slider {
        margin: 0 auto 25px;
        padding: 20px 0;
    }
    
    .slide-mockup {
        width: 180px;
        height: 380px;
    }
    
    .slider-track {
        gap: 18px;
    }
    
    .game-logo {
        top: 10px;
    }
    
    .game-logo img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .mockup-slider {
        margin: 0 auto 10px;
        padding: 10px 0;
    }
    
    .slide-mockup {
        width: 100px;
        height: 210px;
    }
    
    .slider-track {
        gap: 12px;
        animation: slideLeft 12s linear infinite;
    }
    
    .game-logo {
        top: 55px;
    }
    
    .game-logo img {
        height: 35px;
    }
}

@media (max-width: 360px) {
    .mockup-slider {
        padding: 12px 0;
        margin: 0 auto 15px;
    }
    
    .slide-mockup {
        width: 130px;
        height: 280px;
    }
    
    .slider-track {
        gap: 12px;
        animation: slideLeft 10s linear infinite;
    }
}

