@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --felt-green: #0d4a2e;
    --felt-dark: #0a3a24;
    --felt-light: #167a4d;
    --gold: #ffd700;
    --gold-dark: #b8860b;
    --gold-light: #ffe55c;
    --card-red: #dc143c;
    --card-black: #1a1a1a;
    --card-white: #fffff5;
    --chip-red: #cc0000;
    --chip-blue: #0066cc;
    --chip-green: #00cc66;
    --chip-black: #222222;
    --shadow: rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: radial-gradient(ellipse at center, var(--felt-light) 0%, var(--felt-green) 40%, var(--felt-dark) 100%);
    color: var(--card-white);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* BLACKJACK BACKGROUND */
.blackjack-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.felt-texture {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
    opacity: 0.5;
}

.card-suits {
    position: absolute;
    width: 100%;
    height: 100%;
}

.suit {
    position: absolute;
    font-size: 120px;
    opacity: 0.03;
    animation: floatSuit 20s ease-in-out infinite;
}

.suit.spade { top: 10%; left: 5%; animation-delay: 0s; }
.suit.heart { top: 20%; left: 85%; animation-delay: 2s; color: var(--card-red); }
.suit.diamond { top: 50%; left: 10%; animation-delay: 4s; color: var(--card-red); }
.suit.club { top: 60%; left: 90%; animation-delay: 6s; }
.suit.s2 { top: 80%; left: 20%; animation-delay: 8s; }
.suit.h2 { top: 30%; left: 70%; animation-delay: 10s; color: var(--card-red); }
.suit.d2 { top: 70%; left: 60%; animation-delay: 12s; color: var(--card-red); }
.suit.c2 { top: 40%; left: 30%; animation-delay: 14s; }
.suit.s3 { top: 85%; left: 80%; animation-delay: 16s; }
.suit.h3 { top: 5%; left: 50%; animation-delay: 18s; color: var(--card-red); }

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

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    font-size: 80px;
    opacity: 0.05;
    color: var(--gold);
    animation: floatCard 25s ease-in-out infinite;
}

.card-1 { top: 15%; left: 8%; animation-delay: 0s; }
.card-2 { top: 35%; left: 92%; animation-delay: 3s; }
.card-3 { top: 55%; left: 5%; animation-delay: 6s; }
.card-4 { top: 75%; left: 88%; animation-delay: 9s; }
.card-5 { top: 25%; left: 45%; animation-delay: 12s; }
.card-6 { top: 65%; left: 50%; animation-delay: 15s; }
.card-7 { top: 45%; left: 15%; animation-delay: 18s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(-5deg); opacity: 0.05; }
    50% { transform: translateY(-50px) rotate(5deg); opacity: 0.08; }
}

/* CASINO CHIPS */
.casino-chips {
    position: absolute;
    width: 100%;
    height: 100%;
}

.chip {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 5px dashed var(--card-white);
    animation: floatChip 30s linear infinite;
    opacity: 0.1;
}

.chip-1 { background: var(--chip-red); top: 20%; left: 3%; animation-delay: 0s; }
.chip-2 { background: var(--chip-blue); top: 40%; left: 95%; animation-delay: 5s; }
.chip-3 { background: var(--chip-green); top: 70%; left: 8%; animation-delay: 10s; }
.chip-4 { background: var(--chip-black); top: 85%; left: 92%; animation-delay: 15s; }
.chip-5 { background: var(--gold); top: 50%; left: 2%; animation-delay: 20s; }
.chip-6 { background: var(--chip-red); top: 10%; left: 90%; animation-delay: 25s; }

@keyframes floatChip {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(0) rotate(180deg); }
    75% { transform: translateY(20px) rotate(270deg); }
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold);
}

.navbar .logo img {
    height: 50px;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.navbar-menu a {
    color: var(--card-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--gold);
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-login {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-login:hover {
    background: var(--gold);
    color: var(--felt-dark);
}

.btn-register {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--felt-dark);
    border: none;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

/* HERO SECTION */
.hero-blackjack {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%),
        linear-gradient(180deg, var(--felt-dark) 0%, var(--felt-green) 50%, var(--felt-dark) 100%);
    overflow: hidden;
    border-bottom: 4px solid var(--gold);
}

.hero-cards {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: -30px;
}

.hero-card {
    width: 120px;
    height: 170px;
    background: var(--card-white);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 900;
    color: var(--card-black);
    box-shadow: 0 10px 40px var(--shadow);
    transform: rotate(-15deg);
    animation: cardFloat 3s ease-in-out infinite;
}

.hero-card:last-child {
    margin-left: -40px;
    transform: rotate(5deg);
    animation-delay: 0.5s;
}

.hero-card.ace { color: var(--card-black); }
.hero-card.king { color: var(--card-red); }

.mini-suit {
    font-size: 24px;
    margin-top: -10px;
}

.hero-card.king .mini-suit { color: var(--card-red); }

@keyframes cardFloat {
    0%, 100% { transform: rotate(-15deg) translateY(0); }
    50% { transform: rotate(-15deg) translateY(-15px); }
}

.hero-card:last-child {
    animation-name: cardFloat2;
}

@keyframes cardFloat2 {
    0%, 100% { transform: rotate(5deg) translateY(0); }
    50% { transform: rotate(5deg) translateY(-15px); }
}

.hero-content {
    max-width: 600px;
    text-align: center;
    z-index: 10;
}

.blackjack-21 {
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 
        0 0 20px var(--gold),
        0 0 40px rgba(255, 215, 0, 0.5),
        4px 4px 0 var(--gold-dark);
    margin-bottom: 20px;
    animation: pulse21 2s ease-in-out infinite;
}

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

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--card-white);
    text-shadow: 2px 2px 4px var(--shadow);
}

.hero-points {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.4);
    padding: 25px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-points li {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--card-white);
}

.hero-points li:last-child {
    margin-bottom: 0;
}

.hero-points strong {
    color: var(--gold);
}

.btn-claim {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--felt-dark);
    padding: 18px 40px;
    font-size: 18px;
    border: none;
    display: inline-block;
    animation: pulseBtn 2s ease-in-out infinite;
}

.btn-claim:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

@keyframes pulseBtn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
}

/* BONUS CARDS SECTION */
.bonus-cards-section {
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px var(--shadow);
}

.section-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.bonus-deck {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.bonus-card-item {
    background: var(--card-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.4s ease;
    color: var(--card-black);
}

.bonus-card-item:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 20px 60px var(--shadow);
}

.bonus-card-item.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
    border: 3px solid var(--gold);
}

.bonus-card-item.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.card-top {
    background: linear-gradient(135deg, var(--felt-dark) 0%, var(--felt-green) 100%);
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

.card-corner {
    position: absolute;
    font-size: 28px;
    color: var(--card-white);
}

.card-corner:first-child {
    top: 10px;
    left: 15px;
}

.card-corner.bottom {
    bottom: 10px;
    right: 15px;
    transform: rotate(180deg);
}

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

.bonus-amount {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 2px 2px 4px var(--shadow);
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--felt-dark);
}

.card-body ul {
    list-style: none;
    margin-bottom: 20px;
}

.card-body li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.card-body li:last-child {
    border-bottom: none;
}

.btn-deal {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--felt-dark);
    padding: 12px 20px;
}

.btn-deal:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

/* WHY BLACKPOKIES SECTION */
.why-blackpokies {
    padding: 80px 20px;
    position: relative;
    background: 
        linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.5) 100%),
        linear-gradient(180deg, var(--felt-dark) 0%, var(--felt-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.cards-hand {
    display: flex;
    flex-direction: column;
    gap: -30px;
}

.hand-card {
    width: 80px;
    height: 110px;
    background: var(--card-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--card-black);
    box-shadow: 0 5px 20px var(--shadow);
    animation: handFloat 4s ease-in-out infinite;
}

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

.left-hand .hand-card:first-child { transform: rotate(-20deg); }
.left-hand .hand-card:last-child { transform: rotate(-5deg); margin-top: -30px; }
.right-hand .hand-card:first-child { transform: rotate(5deg); }
.right-hand .hand-card:last-child { transform: rotate(20deg); margin-top: -30px; }

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

.why-content {
    max-width: 900px;
}

.why-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px var(--shadow);
}

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

.why-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.card-suit-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

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

.why-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 15px;
}

.why-card ul {
    list-style: none;
}

.why-card li {
    padding: 5px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* HOW TO CLAIM SECTION */
.how-to-claim {
    padding: 80px 20px;
    text-align: center;
    background: radial-gradient(ellipse at center, var(--felt-green) 0%, var(--felt-dark) 100%);
}

.how-to-claim h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px var(--shadow);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.step-card {
    width: 80px;
    height: 110px;
    background: var(--card-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--card-black);
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px var(--shadow);
    animation: stepFloat 3s ease-in-out infinite;
}

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

.step:nth-child(1) .step-card { animation-delay: 0s; }
.step:nth-child(2) .step-card { animation-delay: 0.3s; }
.step:nth-child(3) .step-card { animation-delay: 0.6s; }
.step:nth-child(4) .step-card { animation-delay: 0.9s; }

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

.step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 15px;
}

.step ul {
    list-style: none;
    text-align: left;
}

.step li {
    padding: 5px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* FEATURES SECTION */
.features-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--felt-dark) 0%, var(--felt-green) 50%, var(--felt-dark) 100%);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.features-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px var(--shadow);
}

.features-table {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row.header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.feature-row.header .feature-cell {
    color: var(--felt-dark);
    font-weight: 700;
    font-size: 16px;
}

.feature-cell {
    padding: 20px;
    text-align: center;
    font-size: 15px;
    border-right: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-cell:last-child {
    border-right: none;
}

.feature-cell.highlight {
    color: var(--gold);
    font-weight: 600;
}

.feature-cell.dim {
    color: rgba(255, 255, 255, 0.5);
}

/* GAMES SECTION */
.games-section {
    padding: 80px 20px;
    text-align: center;
    background: radial-gradient(ellipse at center, var(--felt-green) 0%, var(--felt-dark) 100%);
}

.games-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px var(--shadow);
}

.games-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.game-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--felt-dark);
}

.btn-play {
    display: block;
    margin: 15px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--felt-dark);
    padding: 12px;
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* ELIGIBLE SECTION */
.eligible-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--felt-dark) 0%, var(--felt-green) 100%);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.eligible-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px var(--shadow);
}

.eligible-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.eligible-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.eligible-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.eligible-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 15px;
}

.eligible-card ul {
    list-style: none;
    text-align: left;
}

.eligible-card li {
    padding: 5px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* TERMS SECTION */
.terms-section {
    padding: 80px 20px;
    background: radial-gradient(ellipse at center, var(--felt-green) 0%, var(--felt-dark) 100%);
}

.terms-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px var(--shadow);
}

.terms-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.term-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.term-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 15px;
}

.term-item ul {
    list-style: none;
}

.term-item li {
    padding: 5px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* FAQ SECTION */
.faq-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--felt-dark) 0%, var(--felt-green) 100%);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px var(--shadow);
}

.faq-item {
    max-width: 900px;
    margin: 0 auto 30px;
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 15px;
}

.faq-item ul {
    list-style: none;
}

.faq-item li {
    padding: 5px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

/* FINAL CTA */
.final-cta {
    padding: 100px 20px;
    text-align: center;
    background: 
        radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--felt-dark) 0%, #000 100%);
    border-top: 4px solid var(--gold);
}

.cta-cards {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.cta-card {
    width: 80px;
    height: 110px;
    background: var(--card-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--card-black);
    box-shadow: 0 5px 20px var(--shadow);
    animation: ctaFloat 2s ease-in-out infinite;
}

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

.cta-card:nth-child(1) { animation-delay: 0s; transform: rotate(-10deg); }
.cta-card:nth-child(2) { animation-delay: 0.2s; transform: rotate(-5deg); }
.cta-card:nth-child(3) { animation-delay: 0.4s; transform: rotate(5deg); }
.cta-card:nth-child(4) { animation-delay: 0.6s; transform: rotate(10deg); }

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

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px var(--shadow);
}

.cta-points {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
    background: rgba(0, 0, 0, 0.4);
    padding: 30px 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.cta-points li {
    font-size: 18px;
    padding: 8px 0;
    color: var(--card-white);
}

.btn-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--felt-dark);
    padding: 20px 50px;
    font-size: 20px;
    display: inline-block;
    animation: pulseBtn 2s ease-in-out infinite;
}

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

/* FOOTER */
.footer {
    background: linear-gradient(180deg, #000 0%, #111 100%);
    padding: 50px 20px 30px;
    border-top: 2px solid var(--gold);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-suits {
    font-size: 30px;
    margin-bottom: 20px;
}

.footer-suits span {
    margin: 0 10px;
    color: var(--gold);
}

.footer-suits span:nth-child(2),
.footer-suits span:nth-child(3) {
    color: var(--card-red);
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 20px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-copy a {
    color: var(--gold);
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .bonus-deck {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonus-card-item.featured {
        transform: none;
    }
    
    .eligible-grid,
    .terms-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-cards {
        display: none;
    }
    
    .why-blackpokies {
        flex-direction: column;
    }
    
    .cards-hand {
        display: none;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }
    
    .navbar-menu {
        gap: 20px;
    }
    
    .hero-blackjack {
        min-height: auto;
        padding: 40px 20px;
    }
    
    .blackjack-21 {
        font-size: 70px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .bonus-deck,
    .why-grid,
    .steps-container,
    .games-grid,
    .eligible-grid,
    .terms-content {
        grid-template-columns: 1fr;
    }
    
    .section-header h2,
    .why-content h2,
    .how-to-claim h2,
    .features-section h2,
    .games-header h2,
    .eligible-section h2,
    .terms-section h2,
    .faq-section h2,
    .final-cta h2 {
        font-size: 32px;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
    }
    
    .feature-row.header .feature-cell:nth-child(3),
    .feature-row .feature-cell:nth-child(3) {
        display: none;
    }
    
    .cta-cards {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .blackjack-21 {
        font-size: 50px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-points li {
        font-size: 16px;
    }
    
    .btn-claim,
    .btn-cta {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .cta-card {
        width: 60px;
        height: 85px;
        font-size: 22px;
    }
}

/* ========================================
   CLAIM BONUS SECTION
   ======================================== */
.claim-bonus-section {
    padding: 80px 20px;
    text-align: center;
    background: 
        radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--felt-dark) 0%, var(--felt-green) 50%, var(--felt-dark) 100%);
    border-top: 4px solid var(--gold);
    border-bottom: 4px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.claim-bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,215,0,0.02) 30px, rgba(255,215,0,0.02) 60px);
    pointer-events: none;
}

.claim-bonus-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 2px 2px 4px var(--shadow);
    animation: glowText 2s ease-in-out infinite;
}

@keyframes glowText {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 2px 2px 4px var(--shadow); }
    50% { text-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.4), 2px 2px 4px var(--shadow); }
}

.claim-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
}

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

/* SCRATCH CARDS */
.scratch-cards-area h3,
.spin-wheel-area h3,
.daily-bonus-area h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 25px;
}

.scratch-cards {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.scratch-card {
    width: 120px;
    height: 160px;
    position: relative;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease;
}

.scratch-card:hover {
    transform: scale(1.05) rotate(2deg);
}

.scratch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #888 0%, #555 50%, #888 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    border: 3px solid var(--gold);
    z-index: 2;
    transition: all 0.5s ease;
}

.scratch-overlay span {
    font-weight: 700;
    font-size: 14px;
    color: var(--card-white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: pulse 1.5s ease-in-out infinite;
}

.scratch-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.reward-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.reward-text {
    font-weight: 700;
    font-size: 16px;
    color: var(--felt-dark);
}

.reward-sub {
    font-size: 11px;
    color: var(--felt-dark);
    opacity: 0.8;
}

.scratch-card.scratching .scratch-overlay {
    animation: scratch 0.5s ease-out forwards;
}

@keyframes scratch {
    0% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    25% { clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%, 0 80%); }
    50% { clip-path: polygon(40% 0, 100% 0, 100% 80%, 60% 100%, 0 100%, 0 60%); }
    75% { clip-path: polygon(60% 0, 100% 20%, 100% 60%, 80% 100%, 20% 100%, 0 40%); }
    100% { clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 100%, 100% 100%, 100% 100%); opacity: 0; }
}

.scratch-card.scratched .scratch-overlay {
    display: none;
}

/* SPIN WHEEL */
.spin-wheel-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wheel-container {
    position: relative;
    width: 280px;
    height: 280px;
}

.wheel-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    color: var(--gold);
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.spin-wheel {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(
        var(--chip-red) 0deg 45deg,
        var(--felt-dark) 45deg 90deg,
        var(--chip-blue) 90deg 135deg,
        var(--gold-dark) 135deg 180deg,
        var(--chip-green) 180deg 225deg,
        var(--felt-light) 225deg 270deg,
        #8B008B 270deg 315deg,
        var(--gold) 315deg 360deg
    );
    border: 8px solid var(--gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5), inset 0 0 20px rgba(0,0,0,0.3);
}

.wheel-segment {
    position: absolute;
    width: 50%;
    height: 50%;
    left: 50%;
    top: 50%;
    transform-origin: 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    font-size: 12px;
    font-weight: 700;
    color: var(--card-white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.wheel-segment.seg-1 { transform: rotate(-67.5deg) translateY(-100%); }
.wheel-segment.seg-2 { transform: rotate(-22.5deg) translateY(-100%); }
.wheel-segment.seg-3 { transform: rotate(22.5deg) translateY(-100%); }
.wheel-segment.seg-4 { transform: rotate(67.5deg) translateY(-100%); }
.wheel-segment.seg-5 { transform: rotate(112.5deg) translateY(-100%); }
.wheel-segment.seg-6 { transform: rotate(157.5deg) translateY(-100%); }
.wheel-segment.seg-7 { transform: rotate(202.5deg) translateY(-100%); }
.wheel-segment.seg-8 { transform: rotate(247.5deg) translateY(-100%); }

.spin-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: 4px solid var(--card-white);
    color: var(--felt-dark);
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.spin-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

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

.spin-result {
    margin-top: 20px;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    border: 2px solid var(--gold);
    font-size: 16px;
    color: var(--card-white);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.spin-result.show {
    opacity: 1;
    transform: translateY(0);
}

/* DAILY BONUS */
.daily-bonuses {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.daily-bonus {
    width: 70px;
    padding: 15px 10px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.daily-bonus .day {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.daily-bonus .bonus-val {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.daily-bonus .status {
    display: block;
    font-size: 16px;
}

.daily-bonus.claimed {
    background: rgba(0, 100, 0, 0.3);
    border-color: #00cc66;
}

.daily-bonus.claimed .status {
    color: #00cc66;
}

.daily-bonus.available {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-color: var(--gold);
    cursor: pointer;
    animation: pulseAvailable 1.5s ease-in-out infinite;
}

@keyframes pulseAvailable {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
}

.daily-bonus.available:hover {
    transform: scale(1.1);
}

.daily-bonus.available .status {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
}

.daily-bonus.locked {
    opacity: 0.5;
}

.daily-bonus.mega {
    background: linear-gradient(135deg, rgba(139, 0, 139, 0.3) 0%, rgba(255, 215, 0, 0.2) 100%);
    border-color: #8B008B;
}

.daily-bonus.mega .bonus-val {
    background: linear-gradient(135deg, var(--gold), #ff6600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.daily-bonus.claiming {
    animation: claimPulse 0.5s ease-in-out;
}

@keyframes claimPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.daily-note {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* BONUS CODES */
.bonus-codes-area {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.bonus-codes-area h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 25px;
}

.code-input-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.bonus-code-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--gold);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--card-white);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bonus-code-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    text-transform: none;
    letter-spacing: normal;
}

.bonus-code-input:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.code-claim-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: 10px;
    color: var(--felt-dark);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.promo-codes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.promo-hint {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    width: 100%;
    margin-bottom: 5px;
}

.promo-code {
    padding: 8px 15px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px dashed var(--gold);
    border-radius: 5px;
    font-family: monospace;
    font-size: 13px;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-code:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

/* MEGA CLAIM BUTTON */
.btn-mega-claim {
    display: inline-block;
    padding: 25px 60px;
    background: linear-gradient(135deg, var(--gold) 0%, #ff6600 50%, var(--gold) 100%);
    background-size: 200% 100%;
    border: none;
    border-radius: 50px;
    color: var(--felt-dark);
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    animation: megaShine 3s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

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

.btn-mega-claim:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.7);
}

/* REWARD POPUP */
.reward-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reward-popup.show {
    opacity: 1;
}

.popup-content {
    background: linear-gradient(135deg, var(--felt-dark) 0%, var(--felt-green) 100%);
    padding: 50px;
    border-radius: 20px;
    border: 4px solid var(--gold);
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.3);
}

.reward-popup.show .popup-content {
    transform: scale(1);
    animation: popupBounce 0.5s ease-out;
}

@keyframes popupBounce {
    0% { transform: scale(0.5); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.popup-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: shake 0.5s ease-in-out;
}

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

.popup-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px var(--shadow);
}

.popup-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 10px;
    color: var(--felt-dark);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.popup-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

/* RESPONSIVE FOR CLAIM SECTION */
@media (max-width: 1200px) {
    .claim-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .daily-bonus-area {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .claim-bonus-section h2 {
        font-size: 32px;
    }
    
    .claim-container {
        grid-template-columns: 1fr;
    }
    
    .daily-bonus-area {
        grid-column: span 1;
    }
    
    .wheel-container,
    .spin-wheel {
        width: 220px;
        height: 220px;
    }
    
    .spin-btn {
        width: 60px;
        height: 60px;
        font-size: 10px;
    }
    
    .code-input-container {
        flex-direction: column;
    }
    
    .btn-mega-claim {
        padding: 20px 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .scratch-card {
        width: 100px;
        height: 140px;
    }
    
    .daily-bonus {
        width: 60px;
        padding: 10px 5px;
    }
    
    .daily-bonus .bonus-val {
        font-size: 12px;
    }
    
    .popup-content {
        padding: 30px;
        margin: 20px;
    }
    
    .popup-icon {
        font-size: 60px;
    }
    
    .popup-text {
        font-size: 22px;
    }
}

/* ========================================
   LIVE BLACKJACK STREAMING SECTION
   ======================================== */
.live-blackjack-section {
    padding: 80px 20px;
    background: 
        radial-gradient(ellipse at top, rgba(0, 0, 0, 0.3) 0%, transparent 50%),
        linear-gradient(180deg, #0a1a0f 0%, var(--felt-dark) 30%, var(--felt-green) 70%, #0a1a0f 100%);
    position: relative;
    overflow: hidden;
}

.live-blackjack-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffd700' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.live-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #cc0000 0%, #ff0000 100%);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    animation: pulseLive 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes pulseLive {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 0, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 0, 0, 0.8); }
}

.live-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px var(--shadow);
}

.live-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.live-tables-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Main Live Table */
.live-table-main {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
    margin-bottom: 50px;
}

.table-stream {
    background: linear-gradient(180deg, #0d3d1f 0%, #1a5c35 50%, #0d3d1f 100%);
    border-radius: 20px;
    padding: 30px;
    border: 4px solid var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 50px rgba(0, 0, 0, 0.3);
    position: relative;
    min-height: 500px;
}

.stream-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.viewer-count {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.eye-icon {
    font-size: 16px;
}

.stream-quality {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--felt-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
}

/* Dealer Section */
.dealer-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.dealer-avatar {
    position: relative;
    width: 60px;
    height: 60px;
}

.avatar-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: 50%;
    animation: rotateRing 3s linear infinite;
}

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

.avatar-img {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.dealer-info {
    display: flex;
    flex-direction: column;
}

.dealer-name {
    font-weight: 700;
    font-size: 18px;
    color: var(--gold);
}

.dealer-table {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* Playing Cards */
.dealer-cards,
.player-cards {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.card-slot {
    width: 80px;
    height: 110px;
}

.card-slot.empty {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.playing-card {
    width: 80px;
    height: 110px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.playing-card:hover {
    transform: translateY(-5px);
}

.playing-card.back {
    background: linear-gradient(135deg, #1a1a8a 0%, #0a0a4a 100%);
    border: 3px solid var(--gold);
}

.playing-card.back .card-pattern {
    width: 60px;
    height: 80px;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255,215,0,0.1) 5px, rgba(255,215,0,0.1) 10px),
        repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(255,215,0,0.1) 5px, rgba(255,215,0,0.1) 10px);
    border: 2px solid var(--gold);
    border-radius: 5px;
}

.playing-card.face {
    background: var(--card-white);
    border: 2px solid #333;
}

.card-value {
    font-size: 32px;
    font-weight: 900;
    color: var(--card-black);
    line-height: 1;
}

.card-suit {
    font-size: 28px;
    line-height: 1;
}

.card-suit.spade { color: var(--card-black); }
.card-suit.heart { color: var(--card-red); }
.card-suit.diamond { color: var(--card-red); }
.card-suit.club { color: var(--card-black); }

.playing-card.face .card-suit.heart .card-value,
.playing-card.face .card-suit.diamond .card-value {
    color: var(--card-red);
}

/* Card Animations */
.animate-deal {
    animation: dealCard 0.5s ease-out forwards;
}

.animate-deal.delay {
    animation-delay: 0.3s;
}

@keyframes dealCard {
    0% { transform: translateY(-100px) rotate(20deg); opacity: 0; }
    100% { transform: translateY(0) rotate(0deg); opacity: 1; }
}

.flip-reveal {
    animation: flipCard 0.6s ease-in-out forwards;
}

@keyframes flipCard {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(90deg); }
    100% { transform: rotateY(0deg); }
}

/* Hand Values */
.hand-value {
    text-align: center;
    margin: 10px 0;
}

.hand-value span {
    display: inline-block;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 700;
    border: 2px solid var(--gold);
}

.player-value span {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--felt-dark);
}

/* Table Felt */
.table-felt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    margin: 20px 0;
}

.betting-circle {
    width: 120px;
    height: 120px;
    border: 4px solid var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.chip-stack {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
}

.stacked-chip {
    width: 40px;
    height: 10px;
    border-radius: 50%;
    margin-top: -5px;
    border: 2px dashed rgba(255, 255, 255, 0.5);
}

.stacked-chip.red { background: var(--chip-red); }
.stacked-chip.black { background: #222; }
.stacked-chip.gold { background: var(--gold); }

.bet-amount {
    font-weight: 700;
    font-size: 16px;
    color: var(--gold);
}

.insurance-line,
.blackjack-pays {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Game Actions */
.game-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.action-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.action-btn.hit {
    background: linear-gradient(135deg, #00cc66 0%, #009944 100%);
    color: white;
}

.action-btn.stand {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    color: white;
}

.action-btn.double {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--felt-dark);
}

.action-btn.split {
    background: linear-gradient(135deg, #6666cc 0%, #4444aa 100%);
    color: white;
}

.action-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

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

/* Game Status */
.game-status {
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.status-text {
    font-size: 16px;
    color: var(--gold);
    animation: pulseText 1.5s ease-in-out infinite;
}

@keyframes pulseText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.game-status.result .status-text {
    font-size: 20px;
    font-weight: 700;
    animation: none;
}

/* Stream Sidebar */
.stream-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.live-chat {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--felt-dark);
    padding: 12px 15px;
    font-weight: 700;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    max-height: 250px;
}

.chat-msg {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.4;
}

.chat-msg .user {
    font-weight: 700;
    color: #66aaff;
}

.chat-msg .user.gold {
    color: var(--gold);
}

.chat-msg.system {
    background: rgba(255, 215, 0, 0.1);
    padding: 8px 10px;
    border-radius: 5px;
    color: var(--gold);
    font-size: 12px;
}

.chat-input {
    display: flex;
    gap: 5px;
    padding: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 13px;
}

.chat-input button {
    padding: 10px 15px;
    background: var(--gold);
    color: var(--felt-dark);
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
}

.game-stats {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    padding: 20px;
}

.stat {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat:last-child {
    border-bottom: none;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.stat-value {
    font-weight: 700;
    font-size: 14px;
}

.stat-value.gold {
    color: var(--gold);
}

/* Other Tables */
.other-tables {
    margin-top: 50px;
}

.other-tables h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 30px;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mini-table {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mini-table:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.mini-table.hot {
    border-color: #ff6600;
    animation: hotGlow 2s ease-in-out infinite;
}

@keyframes hotGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 102, 0, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 102, 0, 0.6); }
}

.mini-stream {
    background: linear-gradient(180deg, #1a5c35 0%, #0d3d1f 100%);
    padding: 20px;
    text-align: center;
    position: relative;
}

.mini-dealer {
    font-size: 40px;
    margin-bottom: 10px;
}

.mini-cards {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.mini-card {
    font-size: 30px;
}

.mini-live {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #cc0000;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mini-live .dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

.mini-live.hot {
    background: linear-gradient(135deg, #ff6600 0%, #ff3300 100%);
}

.mini-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.table-name {
    font-weight: 700;
    color: var(--gold);
    font-size: 14px;
}

.table-limits {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

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

/* Live Features */
.live-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.feature-icon {
    font-size: 24px;
}

.feature-text {
    font-weight: 600;
    font-size: 14px;
}

.btn-join-live {
    display: block;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--gold) 0%, #ff6600 50%, var(--gold) 100%);
    background-size: 200% 100%;
    border: none;
    border-radius: 50px;
    color: var(--felt-dark);
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    animation: megaShine 3s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

.btn-join-live:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.7);
}

/* RESPONSIVE FOR LIVE SECTION */
@media (max-width: 1200px) {
    .live-table-main {
        grid-template-columns: 1fr;
    }
    
    .stream-sidebar {
        flex-direction: row;
    }
    
    .live-chat,
    .game-stats {
        flex: 1;
    }
    
    .tables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .live-header h2 {
        font-size: 28px;
    }
    
    .stream-sidebar {
        flex-direction: column;
    }
    
    .playing-card {
        width: 60px;
        height: 85px;
    }
    
    .card-value {
        font-size: 24px;
    }
    
    .card-suit {
        font-size: 20px;
    }
    
    .game-actions {
        flex-wrap: wrap;
    }
    
    .action-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .tables-grid {
        grid-template-columns: 1fr;
    }
    
    .live-features {
        gap: 15px;
    }
    
    .feature {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .table-stream {
        padding: 15px;
    }
    
    .playing-card {
        width: 50px;
        height: 70px;
    }
    
    .card-value {
        font-size: 20px;
    }
    
    .card-suit {
        font-size: 16px;
    }
    
    .betting-circle {
        width: 80px;
        height: 80px;
    }
    
    .btn-join-live {
        font-size: 16px;
        padding: 15px 30px;
    }
}
