:root {
    --gold: #FFD700;
    --gold-dark: #B8860B;
    /* Darker Goldenrod for depth */
    --gold-light: #FFFACD;
    --green: #2ecc71;
    /* Emerald Green */
    --green-dark: #27ae60;
    /* Darker Emerald */
    --blue: #FFD700;
    /* Replaced Blue with Gold for compliance, kept var name to avoid breaking old refs if any, but value is Gold */
    --dark-bg: #050505;
    --dark-card: #121212;
    --dark-overlay: rgba(0, 0, 0, 0.7);
    --text-primary: #FFFFFF;
    --text-sec: #B0B0B0;
    --glass-border: rgba(255, 215, 0, 0.15);
    /* Gold tint border */
    --glass-bg: rgba(20, 20, 20, 0.8);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-gold {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.text-gradient-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-weight: 700;
    font-family: var(--font-heading);
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(46, 204, 113, 0.6);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    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 3s infinite;
}

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

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.btn-secondary:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* 1. Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    overflow: hidden;
    background: radial-gradient(circle at 70% 20%, #0a2f1c, #050505 60%);
    /* Hints of deep emerald */
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(46, 204, 113, 0.05), transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(255, 215, 0, 0.05), transparent 40%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-title {
    font-size: 3rem;
    /* Reduced from 4.5rem for longer text */
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 0.8rem;
    color: var(--text-sec);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-subtitle .divider {
    color: var(--gold);
    font-size: 1.5rem;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.model-priya-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 550px;
}

/* CSS-Only Placeholder for Model Priya */
.model-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0));
    border-radius: 200px 200px 0 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    overflow: hidden;
}

.model-silhouette {
    width: 80%;
    height: 85%;
    background: linear-gradient(to top, #111, #333);
    border-radius: 150px 150px 0 0;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.model-silhouette::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23444"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z"/></svg>') no-repeat center center;
    opacity: 0.1;
    transform: scale(0.8);
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    color: var(--green);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Hero Offer Card over Model */
.hero-offer-card {
    position: absolute;
    left: -30px;
    bottom: 110px;
    max-width: 320px;
    padding: 14px 18px;
    border-radius: 18px;
    background: radial-gradient(circle at 0 0, rgba(46, 204, 113, 0.35), transparent 55%),
        rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.45);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.8);
    font-size: 0.85rem;
}

.hero-offer-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.hero-offer-card p {
    color: var(--text-sec);
    font-size: 0.8rem;
}

.hero-offer-label {
    display: inline-block;
    margin-bottom: 4px;
    padding: 3px 10px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--gold);
}

@media (max-width: 768px) {
    .hero-offer-card {
        left: 10px;
        right: 10px;
        bottom: 80px;
        max-width: none;
    }
}

/* 2. Trust Strip */
.trust-strip {
    background: #000;
    padding: 30px 0;
    border-bottom: 1px solid var(--glass-border);
}

/* Partners / Trusted By Section */
.partners-section {
    position: relative;
    padding: 80px 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 55%),
        radial-gradient(circle at bottom right, rgba(46, 204, 113, 0.08), transparent 60%),
        #050505;
    overflow: hidden;
}

.partners-inner {
    position: relative;
    border-radius: 28px;
    padding: 32px 28px 36px;
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.06), transparent 55%),
        rgba(7, 7, 7, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.partners-inner::before {
    /* subtle noise / grain */
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
    opacity: 0.7;
}

.partners-heading {
    text-align: left;
    max-width: 620px;
    margin-bottom: 28px;
}

.partners-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--text-sec);
    margin-bottom: 8px;
}

.partners-subtitle {
    color: var(--text-sec);
    font-size: 0.95rem;
    margin-top: 10px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px 26px;
    align-items: center;
}

.partner-card {
    height: 70px;
    border-radius: 18px;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 60%),
        rgba(8, 8, 8, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    overflow: hidden;
    will-change: transform, opacity;
    transform: translateY(14px);
    opacity: 0;
    animation: partnerFadeIn 0.7s ease-out forwards;
}

.partner-card:nth-child(1) {
    animation-delay: 0.05s;
}

.partner-card:nth-child(2) {
    animation-delay: 0.15s;
}

.partner-card:nth-child(3) {
    animation-delay: 0.25s;
}

.partner-card:nth-child(4) {
    animation-delay: 0.35s;
}

.partner-card:nth-child(5) {
    animation-delay: 0.45s;
}

.partner-card:nth-child(6) {
    animation-delay: 0.55s;
}

.partner-card:nth-child(7) {
    animation-delay: 0.65s;
}

.partner-card:hover {
    transform: translateY(4px) scale(1.05);
    border-color: rgba(255, 215, 0, 0.7);
    box-shadow: 0 18px 45px rgba(255, 215, 0, 0.25);
    background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.16), transparent 60%),
        rgba(8, 8, 8, 0.96);
}

.partner-logo {
    max-height: 40px;
    width: auto;
    opacity: 0.95;
    transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
    image-rendering: crisp-edges;
    transform: translateZ(0);
}

.partner-logo--win365 {
    max-height: 48px;
    transform: translateZ(0) scale(1.04);
}

.partner-card:hover .partner-logo {
    filter: brightness(1.05) contrast(1.05) drop-shadow(0 0 12px rgba(255, 215, 0, 0.5));
    opacity: 1;
    transform: translateY(-1px) scale(1.02);
}

@keyframes partnerFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partners-divider {
    height: 1px;
    width: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4), transparent 70%);
    opacity: 0.45;
}

.partners-divider.top {
    margin-bottom: 24px;
}

.partners-divider.bottom {
    margin-top: 28px;
}

@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partner-card {
        height: 64px;
    }
}

@media (max-width: 600px) {
    .partners-section {
        padding: 60px 0;
    }

    .partners-inner {
        padding: 24px 20px 26px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .partners-heading {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .partner-card {
        height: 60px;
    }
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-sec);
    font-family: var(--font-heading);
    font-weight: 500;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a2e22, #050505);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* 3. Reasons Section */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
}

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

.feature-card {
    background: var(--dark-card);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(46, 204, 113, 0.15);
}

.card-icon {
    font-size: 3rem;
    color: var(--green);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(46, 204, 113, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-sec);
    font-size: 1rem;
}

/* 4. Offers Section */
.offers-section {
    background: linear-gradient(to bottom, #050505, #0a1f12);
}

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

.offer-card {
    background: rgba(0, 0, 0, 0.7);
    /* Darker background for readability */
    border: 1px solid rgba(255, 215, 0, 0.3);
    /* Gold border hint */
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    /* Glassmorphism blur */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.offer-card:hover {
    background: rgba(0, 0, 0, 0.85);
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.offer-amount {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.offer-desc {
    font-size: 1.2rem;
    font-weight: 600;
}

.terms-text {
    text-align: center;
    margin-top: 30px;
    font-size: 0.8rem;
    color: var(--text-sec);
    opacity: 0.6;
}

/* Bottom Offer Banner */
.bottom-offer-section {
    padding: 60px 0 40px;
    background: #050505;
    border-top: 1px solid var(--glass-border);
}

.bottom-offer-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 24px 28px;
    border-radius: 24px;
    background: radial-gradient(circle at 0% 0%, rgba(46, 204, 113, 0.35), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(255, 215, 0, 0.3), transparent 55%),
        #050505;
    border: 1px solid rgba(255, 215, 0, 0.35);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75);
    flex-wrap: wrap;
}

.bottom-offer-text h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.bottom-offer-text p {
    color: var(--text-sec);
    font-size: 0.95rem;
}

.bottom-offer-label {
    display: inline-block;
    margin-bottom: 6px;
    padding: 4px 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--gold);
}

.bottom-offer-btn {
    min-width: 220px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .bottom-offer-banner {
        flex-direction: column;
        text-align: center;
        align-items: flex-start;
    }

    .bottom-offer-text {
        width: 100%;
    }

    .bottom-offer-btn {
        width: 100%;
        justify-content: center;
    }
}

/* 5. Steps Section */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-card {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--green);
    color: #fff;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.4);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--text-sec);
    opacity: 0.3;
}

/* 6. Proof Section */
.proof-section {
    padding: 50px 0;
    background: #080808;
    border-top: 1px solid var(--glass-border);
}

.testimonial-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.stars {
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 5px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--green);
    background: rgba(46, 204, 113, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

/* 7. Final CTA */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #050505 0%, #0a1f12 100%);
    text-align: center;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 40px;
}

.final-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.25rem;
}

.trust-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: var(--text-sec);
    font-size: 0.9rem;
}

.trust-pills span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-pills i {
    color: var(--gold);
}

/* 8. Footer */
.footer {
    background: #000;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.footer-disclaimer {
    color: #444;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.footer-support {
    color: var(--gold);
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .h1 {
        font-size: 3rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .brand-logo-img {
        margin: 0 auto 30px auto;
    }

    .brand-logo {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .hero-subtitle {
        justify-content: center;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 50px;
    }

    .cards-grid,
    .offers-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
        gap: 30px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        /* Reduced for longer slogan on mobile */
    }

    .hero-section {
        padding-top: 20px;
        /* Further reduced from 50px */
    }

    .hero-cta-group,
    .final-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .trust-grid {
        justify-content: center;
    }

    .trust-item {
        width: 45%;
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* NEW SECTIONS: Ticker & Games */

/* Ticker */
.ticker-wrap {
    overflow: hidden;
    height: 50px;
    background: linear-gradient(90deg, #111 0%, #000 100%);
    padding-left: 100%;
    box-sizing: content-box;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
}

.ticker-heading {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: var(--green);
    color: #fff;
    padding: 0 15px;
    z-index: 10;
    display: flex;
    align-items: center;
    font-weight: 800;
    font-family: var(--font-heading);
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.5);
}

.ticker {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 0.9rem;
    color: #ccc;
}

.winner-name {
    color: var(--text-primary);
    font-weight: 700;
}

.win-amount {
    color: var(--gold);
    font-weight: 800;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }

    /* Assumes duplicate content for infinite loop */
}

/* Games Grid */
.games-section {
    background: #0a0a0a;
}

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

.game-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-card.highlight {
    border-color: var(--gold);
    background: linear-gradient(to bottom right, rgba(255, 215, 0, 0.05), rgba(0, 0, 0, 0));
}

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

.game-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-sec);
    transition: 0.3s;
}

.game-card:hover .game-icon {
    color: var(--green);
    transform: scale(1.1);
}

.game-card h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.game-card p {
    font-size: 0.85rem;
    color: var(--text-sec);
    margin-bottom: 20px;
}

.btn-sm {
    margin-top: auto;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(46, 204, 113, 0.1);
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 700;
    transition: 0.3s;
}

.btn-sm:hover {
    background: var(--green);
    color: #fff;
}

@media (max-width: 900px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Payment Banner (User Request) */
.payment-banner-section {
    padding: 40px 0;
    background: #050505;
}

.payment-banner {
    background: linear-gradient(90deg, #051609 0%, #000000 50%, #0c3e21 100%);
    /* Deep Emerald & Black */
    border-radius: 80px;
    padding: 25px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(46, 204, 113, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    flex-wrap: wrap;
    gap: 20px;
}

.payment-text h3 {
    font-size: 1.6rem;
    margin-bottom: 2px;
    color: #fff;
}

.payment-text p {
    color: var(--gold);
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-logos {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-logos i {
    font-size: 2.5rem;
    color: #fff;
    opacity: 0.9;
    transition: 0.3s;
}

.payment-logos i:hover {
    transform: scale(1.1);
    color: var(--gold);
}

.pay-icon-text {
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 10px;
    border-radius: 5px;
}

@media (max-width: 900px) {
    .payment-banner {
        flex-direction: column;
        text-align: center;
        border-radius: 30px;
        padding: 30px 20px;
    }
}

/* Model Image Styling */
.model-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================================
   NEW SECTIONS STYLING
   ========================================= */

/* 1. Grand Casino Experience */
.grand-experience-section {
    position: relative;
    height: 500px;
    background: url('casino1.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    /* Parallax effect */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 50px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(5, 5, 5, 0.9) 100%);
    z-index: 1;
}

.experience-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.experience-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

.experience-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e0e0e0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .grand-experience-section {
        background-attachment: scroll;
        /* Mobile perf */
        height: 400px;
    }

    .experience-title {
        font-size: 2.2rem;
    }
}

/* 2. Live Sports Action */
.sports-section {
    background: #080808;
}

.sports-card {
    background: linear-gradient(135deg, #151515, #0a0a0a);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    max-width: 700px;
    margin: 0 auto 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Accent top border */
.sports-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--gold));
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    color: var(--text-sec);
    font-size: 0.9rem;
    font-weight: 600;
}

.live-badge {
    color: #ff3333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.team {
    text-align: center;
    flex: 1;
}

.team-logo-placeholder {
    width: 60px;
    height: 60px;
    background: #222;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--text-sec);
    border: 2px solid var(--glass-border);
}

.team-name {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
}

.match-vs {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.5;
}

.match-odds-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.odds-btn {
    background: rgba(46, 204, 113, 0.05);
    /* Very light Emerald */
    border: 1px solid var(--green);
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.odds-btn:hover {
    background: var(--green);
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.4);
}

.odds-btn:hover .odds-label,
.odds-btn:hover .odds-value {
    color: #000;
}

.odds-label {
    font-size: 0.75rem;
    color: var(--text-sec);
}

.odds-value {
    font-weight: 800;
    color: var(--green);
    font-size: 1.1rem;
}

.match-footer {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 15px;
}

.btn-link {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
}

.sports-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.sport-pill {
    padding: 10px 20px;
    background: #111;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    color: var(--text-sec);
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sport-pill.active,
.sport-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255, 215, 0, 0.05);
}

/* 3. VIP Elite Club */
.vip-section {
    background: linear-gradient(135deg, #050505 30%, #0c1a12 100%);
    overflow: hidden;
}

.vip-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vip-image-wrapper {
    position: relative;
}

.vip-image {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.vip-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: #000;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.vip-content .vip-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.vip-desc {
    font-size: 1.1rem;
    color: var(--text-sec);
    margin-bottom: 30px;
}

.vip-benefits {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid var(--green);
}

.benefit-item i {
    color: var(--gold);
    font-size: 1.3rem;
}

@media (max-width: 900px) {
    .vip-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vip-benefits {
        text-align: left;
    }

    .vip-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* 4. Champions Leaderboard */
.leaderboard-section {
    background: #020202;
}

.leaderboard-container {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.leaderboard-header {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr 1.5fr 1fr;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-sec);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.leaderboard-row {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr 1.5fr 1fr;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
    transition: 0.2s;
}

.leaderboard-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

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

.rank-badge {
    width: 30px;
    height: 30px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
}

.rank-1 {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rank-2 {
    background: #C0C0C0;
    color: #000;
}

/* Silver */
.rank-3 {
    background: #CD7F32;
    color: #000;
}

/* Bronze */

.player-name {
    font-weight: 600;
    color: var(--text-primary);
}

.game-name {
    color: var(--text-sec);
    font-size: 0.9rem;
}

.win-val {
    color: var(--green);
    font-weight: 700;
}

.top-rank .win-val {
    color: var(--gold);
    font-weight: 800;
}

@media (max-width: 600px) {

    .leaderboard-header,
    .leaderboard-row {
        grid-template-columns: 0.5fr 1fr 1fr;
    }

    .leaderboard-header span:nth-child(3),
    .leaderboard-row .game-name {
        display: none;
        /* Hide Game Name on very small screens */
    }

    .leaderboard-header span:last-child {
        text-align: right;
    }

    .leaderboard-row .win-val {
        text-align: right;
    }
}

/* =========================================
   FLOATING WHATSAPP WIDGET
   ========================================= */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    /* Left bottom as requested */
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    text-decoration: none;
    animation: bounceIn 1s;
    transition: all 0.3s;
}

.floating-whatsapp:hover {
    transform: translateY(-5px);
}

.whatsapp-icon-circle {
    width: 60px;
    height: 60px;
    background: #25D366;
    /* WhatsApp Brand Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 2px solid #fff;
    /* Use order to control visual position if needed, but HTML order [Bubble] [Icon] with flex-row is fine. */
    /* Wait, user said "icon in left bottom".  */
    /* If we want Icon to be the leftmost element, we should ensure flex order is correct. */
    /* Current HTML: <div bubble> <div icon> */
    /* Flex-direction default is row. Bubble is Left. Icon is Right. */
    /* To put Icon on Left, we can use row-reverse or change HTML. */
    /* Let's used order property since I cannot easily change HTML now without another tool call. */
    order: -1;
}

.whatsapp-icon-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.whatsapp-bubble {
    background: #fff;
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    opacity: 0;
    transform: translateX(-10px);
    animation: fadeInBubble 0.5s 1s forwards;
    /* Delay show */
}

.whatsapp-bubble::after {
    /* Arrow pointing to LEFT (to the icon) */
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInBubble {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================================
   FLOATING SOCIAL SIDEBAR
   ========================================= */
.social-sidebar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 5px 10px 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border: 1px solid var(--glass-border);
    border-right: none;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}

.social-icon-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    /* For pseudo-elements */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: pulse-ring 2s infinite;
}

.social-icon-btn:hover {
    transform: scale(1.1);
    animation: none;
    /* Stop pulsing on hover */
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    /* Gold glow on hover */
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.telegram {
    background: linear-gradient(135deg, #0088cc, #005f8f);
}

.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.facebook {
    background: #1877f2;
}

/* Footer Socials */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-sec);
    transition: 0.3s;
    font-size: 1.2rem;
}

.footer-socials a:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px);
}

/* =========================================
   LOGO STYLING
   ========================================= */
.brand-logo-img {
    height: 160px;
    /* Increased for prominence */
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo-img {
    height: 260px;
    /* Slightly larger footer logo */
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .brand-logo-img {
        height: 100px;
        margin: 0 auto 10px auto;
        /* Reduced from 20px to 10px on mobile */
    }

    .footer-logo-img {
        height: 170px;
    }
}

/* =========================================
   NEW IMAGE INTEGRATIONS
   ========================================= */

/* Game Cards with Images */
.game-card {
    position: relative;
    overflow: hidden;
    /* Remove old padding if needed, but flex centered content needs it. 
       Let's keep padding but ensure z-index puts text on top. */
    z-index: 1;
    border: 1px solid var(--glass-border);
}

.game-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform 0.5s ease;
    filter: brightness(0.4);
    /* Darken format text readability */
}

/* Hover Effect */
.game-card:hover .game-card-bg {
    transform: scale(1.1);
    filter: brightness(0.5);
}

.game-content {
    position: relative;
    z-index: 2;
}

/* Section Backgrounds */
.bg-image-section {
    position: relative;
    background: url('casino2.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

.bg-image-section-2 {
    position: relative;
    background: url('casino2.jpg') no-repeat center center/cover;
    /* Applied to both as requested */
    background-attachment: fixed;
}

.section-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    /* Heavy overlay for text readability */
    z-index: 0;
}

/* Ensure content sits above overlay */
.reasons-section .container,
.offers-section .container {
    position: relative;
    z-index: 2;
}

@keyframes fadeInUpSimple {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-welcome {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);

    opacity: 0;
    animation: fadeInUpSimple 0.8s ease-out 0.2s forwards;
}

.hero-welcome::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 10px auto 0;
    opacity: 0.8;
}