:root {
    --primary: #ff4500; /* Fire Red */
    --primary-glow: rgba(255, 69, 0, 0.5);
    --gold: #ffcc00;
    --gold-glow: rgba(255, 204, 0, 0.6);
    --bg-dark: #050505;
    --glass: rgba(255, 69, 0, 0.05); /* Subtle red tint */
    --glass-border: rgba(255, 255, 255, 0.1);
    --font: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: #fff;
    font-family: var(--font);
    overflow-x: hidden;
    line-height: 1.6;
    /* Anti-Copy Shield */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none; /* Disable long-press on mobile */
}

/* Video Background Masterpiece */
.video-background {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    background: #000;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: saturate(1.5) contrast(1.2) brightness(0.6);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(1, 8, 6, 0.8) 100%);
    z-index: 1;
}

/* Background */
.bg-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 50% 0%, #001a0d 0%, #050505 100%);
}

/* 3D Premium Tile Particles */
.particle {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    transform-style: preserve-3d;
    transition: opacity 1s ease;
}

.tile-3d {
    width: 30px;
    height: 40px;
    position: relative;
    transform-style: preserve-3d;
    animation: float3D var(--duration) infinite ease-in-out;
}

.tile-face {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #004d2c;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
    backface-visibility: hidden;
}

.tile-side {
    position: absolute;
    background: #006633; /* Jade Green side */
    border-radius: 2px;
}

/* 3D Thickness */
.side-right { width: 6px; height: 100%; right: -3px; top: 0; transform: rotateY(90deg); }
.side-bottom { width: 100%; height: 6px; bottom: -3px; left: 0; transform: rotateX(-90deg); }

@keyframes float3D {
    0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateX(20deg) rotateY(20deg); }
}

/* Master Container */
.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Header */
header {
    text-align: center;
    padding: 10px 0;
}

.logo {
    max-width: 180px;
    filter: drop-shadow(0 0 10px var(--primary-glow));
    margin-top: 10px;
}

/* Premium Online Indicator */
.online-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.online-indicator .dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: pulseGreen 1.5s infinite;
}

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

.online-indicator .count {
    color: var(--gold);
}

/* Premium Slider */
.banner-section {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.slider-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1.5s ease-out;
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.promo-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, var(--gold), #fff);
    color: #000;
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.75rem;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* CTA Area */
.cta-area {
    text-align: center;
}

.headline {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #fff 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

/* Lightning Button */
.btn-wrap {
    position: relative;
    display: inline-block;
}

.main-btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(180deg, #fff 0%, var(--gold) 50%, #ff4500 100%);
    color: #000;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    border-radius: 100px;
    text-transform: uppercase;
    border: 2px solid #fff;
    box-shadow: 0 0 25px rgba(255, 69, 0, 0.8), 0 0 50px rgba(255, 204, 0, 0.4);
    position: relative;
    z-index: 10;
    overflow: hidden;
    cursor: pointer;
    user-select: auto;
    -webkit-user-select: auto;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: btnFloat 3s infinite ease-in-out;
}

.main-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
    animation: shineSweep 3s infinite linear;
}

@keyframes shineSweep {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

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

.main-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 0 40px var(--gold);
}


/* Premium Bank Bar - New Redesign */
.payment-bar-wrap {
    position: relative;
    width: 100%;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(5, 5, 5, 0.95) 100%);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 204, 0, 0.2);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8), 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
    margin-top: 20px;
}

.payment-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.bank-item-premium {
    font-size: 0.75rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #fff 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    transition: all 0.3s ease;
    cursor: default;
}

.bank-item-premium:hover {
    filter: drop-shadow(0 0 8px var(--gold));
    transform: scale(1.1);
}

.shine-sweep-bank {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-30deg);
    animation: shineMoveBank 4s infinite linear;
    z-index: 1;
}

@keyframes shineMoveBank {
    0% { left: -100%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

/* Fire Spark Particles */
.fire-spark {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(1px);
    box-shadow: 0 0 5px var(--primary);
}

/* Jackpot Ticker */
.ticker-wrap {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid var(--gold-glow);
    padding: 12px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: tickerMove 25s linear infinite;
}

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

.ticker-item {
    margin-right: 50px;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
}

footer {
    text-align: center;
    padding: 40px 0;
    font-size: 0.75rem;
    opacity: 0.3;
}

.shake {
    animation: screenShake 0.3s ease-in-out;
}

