/* Ultra Premium Hero Section */

/* Override previous hero styles */
.hero.casino-theme {
    background: 
        radial-gradient(ellipse at top, rgba(26, 71, 42, 0.8) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(139, 69, 19, 0.3) 0%, transparent 50%),
        linear-gradient(180deg, #0a1a0f 0%, #000 100%);
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}

/* Animated Background Glow */
.hero.casino-theme::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulseGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* Hero Layout */
.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: calc(100vh - 80px);
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Left Content */
.hero-left {
    flex: 1;
    min-width: 350px;
    max-width: 600px;
}

/* Jackpot Badge */
.jackpot-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.5);
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 25px;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
}

.jackpot-badge .label {
    color: #aaa;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.jackpot-badge .amount {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5em;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Main Title */
.hero-title {
    font-size: 4em;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.hero-title .highlight {
    display: block;
    background: linear-gradient(90deg, #ffd700, #ffaa00, #ffd700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 3s linear infinite;
}

@keyframes textShine {
    to { background-position: 200% center; }
}

.hero-subtitle {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Feature Pills */
.feature-pills {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    color: #ddd;
    font-size: 0.9em;
}

.pill i {
    color: #4CAF50;
}

/* Download Button Large */
.btn-download-xl {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ff4500, #ff6b00);
    color: white;
    padding: 20px 50px;
    border-radius: 60px;
    font-size: 1.4em;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(255, 69, 0, 0.5);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-download-xl::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: btnShine 2s infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-download-xl:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 69, 0, 0.6);
}

.btn-download-xl .btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-download-xl .btn-main {
    font-size: 1em;
}

.btn-download-xl .btn-sub {
    font-size: 0.6em;
    font-weight: normal;
    opacity: 0.9;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.avatar-stack {
    display: flex;
}

.avatar-stack .avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #333, #555);
    border: 3px solid #1a1a1a;
    margin-right: -15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.9em;
}

.avatar-stack .avatar:last-child {
    margin-right: 0;
}

.proof-text {
    color: #aaa;
    font-size: 0.95em;
}

.proof-text strong {
    color: #fff;
    font-size: 1.1em;
}

.online-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #4CAF50;
    border-radius: 50%;
    margin-right: 8px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Right Content - Card Showcase */
.hero-right {
    flex: 1;
    min-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Giant Card Fan */
.card-showcase {
    position: relative;
    width: 400px;
    height: 450px;
    perspective: 1500px;
}

.showcase-card {
    position: absolute;
    width: 180px;
    height: 260px;
    background: linear-gradient(145deg, #fff, #f0f0f0);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    font-family: 'Georgia', serif;
    font-weight: bold;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.showcase-card.red { color: #c41e3a; }
.showcase-card.black { color: #1a1a1a; }

.showcase-card .rank {
    font-size: 2em;
}

.showcase-card .suit-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5em;
    opacity: 0.9;
}

.showcase-card .rank-bottom {
    font-size: 2em;
    text-align: right;
    transform: rotate(180deg);
}

/* Card Positions */
.showcase-card:nth-child(1) {
    left: 20px;
    top: 80px;
    transform: rotate(-25deg) translateZ(0);
    z-index: 1;
}

.showcase-card:nth-child(2) {
    left: 110px;
    top: 20px;
    transform: rotate(0deg) translateZ(20px);
    z-index: 3;
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.5), 0 20px 60px rgba(0,0,0,0.5);
}

.showcase-card:nth-child(3) {
    left: 200px;
    top: 80px;
    transform: rotate(25deg) translateZ(0);
    z-index: 1;
}

/* Hover Effect */
.card-showcase:hover .showcase-card:nth-child(1) {
    transform: rotate(-35deg) translateX(-30px) translateZ(10px);
}

.card-showcase:hover .showcase-card:nth-child(2) {
    transform: rotate(0deg) translateY(-20px) translateZ(40px);
    box-shadow: 0 0 80px rgba(255, 215, 0, 0.7), 0 30px 80px rgba(0,0,0,0.6);
}

.card-showcase:hover .showcase-card:nth-child(3) {
    transform: rotate(35deg) translateX(30px) translateZ(10px);
}

/* Winner Badge */
.winner-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Russo One', sans-serif;
    font-size: 1.5em;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Floating Coins */
.floating-coins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.coin {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 30% 30%, #ffd700, #b8860b);
    border-radius: 50%;
    border: 3px solid #ffec8b;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.3), 0 5px 15px rgba(0,0,0,0.3);
    animation: float 6s ease-in-out infinite;
}

.coin::before {
    content: '₹';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2em;
    font-weight: bold;
    color: #8b6914;
}

.coin:nth-child(1) { left: 5%; top: 20%; animation-delay: 0s; }
.coin:nth-child(2) { left: 15%; top: 60%; animation-delay: 1s; animation-duration: 7s; }
.coin:nth-child(3) { right: 10%; top: 30%; animation-delay: 2s; animation-duration: 5s; }
.coin:nth-child(4) { right: 20%; top: 70%; animation-delay: 0.5s; animation-duration: 8s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-layout {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 0;
    }
    
    .hero-left {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5em;
    }
    
    .feature-pills {
        justify-content: center;
    }
    
    .social-proof {
        justify-content: center;
    }
    
    .card-showcase {
        transform: scale(0.7);
        margin-bottom: -50px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2em;
    }
    
    .btn-download-xl {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    
    .card-showcase {
        transform: scale(0.55);
    }
}
