/* 
 * ==========================================================================
 * Birla Exchange - Premium Landing Page Masterpiece
 * High-End UI Styling with Neo-Glassmorphism, Gold Glows, and Fluid Animations
 * ==========================================================================
 */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:wght@400;500;600;700&display=swap');

/* CSS Variables for Premium Design Tokens */
:root {
    --gold-main: #fbc02d;
    --gold-bright: #ffd54f;
    --gold-dark: #f57f17;
    --gold-glow: rgba(251, 192, 45, 0.4);

    --bg-black-deep: #030508;
    --bg-dark-gray: #090e15;
    --bg-card-dark: rgba(9, 14, 21, 0.85);

    --whatsapp-green: #25d366;
    --whatsapp-hover: #20ba5a;
    --whatsapp-glow: rgba(37, 211, 102, 0.4);

    --live-red: #ff3333;
    --live-red-glow: rgba(255, 51, 51, 0.5);

    --text-white: #ffffff;
    --text-muted: #a0b0c0;
    --text-gold: #fbc02d;

    --border-glass: rgba(255, 255, 255, 0.08);
    --border-gold-glass: rgba(251, 192, 45, 0.25);

    --font-condensed: 'Roboto Condensed', sans-serif;
    --font-sans: 'Poppins', sans-serif;
    --font-outfit: 'Outfit', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Base Reset & Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: #030508;
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-black-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-main);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-bright);
}

/* Ambient Stadium Glow Overlays */
.stadium-glow-left {
    position: absolute;
    top: -10%;
    left: -20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(251, 192, 45, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(50px);
}

.stadium-glow-right {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(50px);
}

/* Keyframes for High-End Micro-interactions */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 15px rgba(251, 192, 45, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(251, 192, 45, 0.6);
    }

    100% {
        box-shadow: 0 0 15px rgba(251, 192, 45, 0.3);
    }
}

@keyframes greenPulseGlow {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.65);
    }

    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
}

@keyframes floatElement {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes liveIndicatorPulse {
    0% {
        opacity: 0.3;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 0.3;
        transform: scale(0.9);
    }
}

/* Helper Utility Classes */
.accent-gold {
    color: var(--gold-main);
    text-shadow: 0 0 10px rgba(251, 192, 45, 0.2);
}

.bold-italic {
    font-family: var(--font-condensed);
    font-style: italic;
    font-weight: 900;
}

/* Premium Header styling */
.header {
    background-color: rgba(3, 5, 8, 0.92);
    border-bottom: 2px solid var(--border-gold-glass);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.brand-logo-img {
    height: 55px;
    object-fit: contain;
    display: block;
}

/* Header Quick Info */
.header-features {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 8px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.header-feature-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.feature-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(251, 192, 45, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-main);
    background: rgba(251, 192, 45, 0.04);
    box-shadow: 0 0 10px rgba(251, 192, 45, 0.1);
    transition: var(--transition-smooth);
}

.header-feature-item:hover .feature-icon {
    background: var(--gold-main);
    color: #000;
    box-shadow: 0 0 12px var(--gold-glow);
}

.currency-symbol {
    font-weight: 900;
    font-size: 18px;
    font-family: var(--font-outfit);
}

.feature-title {
    font-size: 10px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.feature-desc {
    font-size: 9px;
    color: var(--text-muted);
}

/* Trusted India Badge */
.header-trusted-badge {
    border: 1.5px solid var(--gold-main);
    border-radius: 8px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(251, 192, 45, 0.15) 0%, transparent 100%);
    box-shadow: 0 0 15px rgba(251, 192, 45, 0.15);
    transition: var(--transition-smooth);
}

.header-trusted-badge:hover {
    box-shadow: 0 0 20px rgba(251, 192, 45, 0.3);
    transform: translateY(-2px);
}

.badge-icon {
    color: var(--gold-main);
    filter: drop-shadow(0 0 5px rgba(251, 192, 45, 0.5));
}

.badge-text {
    line-height: 1.1;
}

.badge-title {
    font-size: 8px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.badge-count {
    font-size: 13px;
    font-weight: 900;
    color: var(--gold-main);
}

.badge-location {
    font-size: 8px;
    color: var(--text-muted);
    font-weight: 700;
}

/* Main Content Wrapper */
.main-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Hero Section */
.hero-section {
    padding: 60px 0 45px;
    position: relative;
    background: linear-gradient(180deg, #030508 0%, rgba(3, 5, 8, 0.4) 15%, rgba(3, 5, 8, 0.4) 85%, #030508 100%),
        url('images/stadium_bg.png') no-repeat center center;
    background-size: cover;
    box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.95), inset 0 0 50px rgba(0, 0, 0, 0.9);
}

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

/* Hero Left content block */
.hero-left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-mini-tag {
    font-family: var(--font-condensed);
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-white);
    margin-bottom: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 30px #000, 0 0 20px #000, 0 0 10px #000, 0 0 5px #000;
}

.hero-main-title {
    font-family: var(--font-condensed);
    font-size: 80px;
    font-style: italic;
    line-height: 0.85;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 18px;
    text-shadow: 0 0 60px #000, 0 0 40px #000, 0 0 20px #000, 0 0 10px #000, 0 0 5px #000;
}

.highlight-text {
    color: var(--gold-main);
    text-shadow: 0 0 60px #000, 0 0 40px #000, 0 0 20px #000, 0 0 10px #000, 0 0 5px #000;
}

.action-banner {
    background: linear-gradient(90deg, var(--gold-main) 0%, var(--gold-dark) 100%);
    color: #000;
    padding: 6px 18px;
    font-family: var(--font-condensed);
    font-style: italic;
    font-weight: 900;
    font-size: 24px;
    transform: skewX(-12deg);
    display: inline-flex;
    flex-direction: column;
    width: fit-content;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(251, 192, 45, 0.3), 0 4px 10px rgba(0, 0, 0, 0.5);
}

.action-banner>* {
    transform: skewX(12deg);
}

.hero-seconds-text {
    font-family: var(--font-condensed);
    font-style: italic;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-top: 4px;
    margin-bottom: 20px;
    text-shadow: 0 0 40px #000, 0 0 25px #000, 0 0 15px #000, 0 0 8px #000, 0 0 4px #000;
}

.feature-checklist {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.feature-checklist li {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 19px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    transition: var(--transition-smooth);
    text-shadow: 0 0 25px #000, 0 0 15px #000, 0 0 8px #000, 0 0 4px #000;
}

.feature-checklist li:hover {
    transform: translateX(4px);
}

.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--gold-main);
    color: var(--gold-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    background: rgba(251, 192, 45, 0.05);
    box-shadow: 0 0 8px rgba(251, 192, 45, 0.2);
}

/* Welcome Bonus Promo Card */
.bonus-promo-card {
    background: #090e15;
    border: 1.5px solid var(--gold-main);
    border-radius: 12px;
    padding: 16px 18px 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(251, 192, 45, 0.15);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 340px;
    transition: var(--transition-smooth);
}

.bonus-promo-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(251, 192, 45, 0.25);
}

.bonus-text-content {
    display: flex;
    flex-direction: column;
    max-width: 60%;
    z-index: 2;
}

.bonus-label {
    font-family: var(--font-condensed);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-white);
}

.bonus-percentage {
    font-family: var(--font-condensed);
    font-size: 64px;
    font-weight: 900;
    color: var(--gold-main);
    line-height: 0.85;
    margin: 2px 0;
}

.bonus-amount {
    font-family: var(--font-condensed);
    font-size: 24px;
    font-weight: 900;
    color: var(--text-white);
}

.bonus-conditions-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1ebe5d;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    padding: 6px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.bonus-graphic {
    width: 95px;
    position: absolute;
    right: 8px;
    top: 45%;
    transform: translateY(-50%);
    z-index: 5;
}

.gift-box-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.6));
    animation: floatElement 4s ease-in-out infinite;
}

/* Cricketer Athlete overlay (Center) */
.batsman-container {
    position: absolute;
    bottom: -20px;
    left: 53.5%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 440px;
    height: calc(100% + 20px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
}

.batsman-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.75));
    transition: var(--transition-smooth);
}

.hero-container:hover .batsman-img {
    transform: translateY(-8px) scale(1.02);
}

/* Right Signup Form Card styles */
.hero-right-signup {
    display: flex;
    justify-content: flex-end;
}

.signup-card {
    background: rgba(6, 9, 13, 0.98);
    border: 2px solid var(--gold-main);
    box-shadow: 0 0 30px rgba(251, 192, 45, 0.35), inset 0 0 20px rgba(0, 0, 0, 0.7);
    border-radius: 16px;
    width: 100%;
    max-width: 380px;
    padding: 26px;
    position: relative;
    overflow: hidden;
    animation: pulseGlow 4s infinite ease-in-out;
}

.signup-card-header {
    text-align: center;
    margin-bottom: 22px;
}

.header-logo-icon {
    color: var(--gold-main);
    margin-bottom: 6px;
    filter: drop-shadow(0 0 5px var(--gold-glow));
}

.signup-main-title {
    font-family: var(--font-condensed);
    font-style: italic;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.signup-sub-tag {
    font-family: var(--font-condensed);
    font-style: italic;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #000;
    background: var(--gold-main);
    padding: 4px 18px;
    border-radius: 4px;
    width: fit-content;
    margin: 10px auto 0;
    box-shadow: 0 4px 10px rgba(251, 192, 45, 0.25);
}

/* Step Progress indicator */
.step-progress-wrapper {
    margin-bottom: 22px;
}

.step-indicator-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.steps-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.step-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--text-muted);
    background: #06090d;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    transition: var(--transition-smooth);
}

.step-dot.active {
    background: var(--gold-main);
    border-color: var(--gold-main);
    color: #000;
    box-shadow: 0 0 12px var(--gold-glow);
    font-weight: 900;
}

.step-dot.completed {
    background: var(--whatsapp-green);
    border-color: var(--whatsapp-green);
    color: #fff;
}

.step-line {
    width: 48px;
    height: 2px;
    background: var(--glass-border);
}

.step-line.completed {
    background: var(--gold-main);
}

/* Input elements and Form structure */
.form-steps-container {
    position: relative;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-input-label {
    font-family: var(--font-condensed);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    text-align: center;
}

.form-input-subtitle {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 16px;
}

.phone-input-group {
    display: flex;
    border: 1.5px solid var(--border-gold-glass);
    border-radius: 8px;
    overflow: hidden;
    background: #030508;
    margin-bottom: 4px;
    transition: var(--transition-smooth);
}

.phone-input-group:focus-within {
    border-color: var(--gold-main);
    box-shadow: 0 0 12px rgba(251, 192, 45, 0.2);
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1.5px solid var(--glass-border);
}

.flag-icon {
    width: 22px;
    height: auto;
    border-radius: 2px;
}

.country-code {
    font-weight: 700;
    font-size: 14px;
}

.chevron-down {
    color: var(--text-muted);
}

#mobile-number {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 12px;
    font-family: inherit;
    font-size: 16px;
    letter-spacing: 1px;
}

.error-msg {
    font-size: 11px;
    color: var(--live-red);
    display: block;
    margin-bottom: 12px;
    min-height: 18px;
    text-align: left;
    font-weight: 500;
}

/* Primary Form buttons */
.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    font-family: var(--font-condensed);
    font-style: italic;
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.btn-arrow {
    position: absolute;
    right: 18px;
    font-family: monospace;
    font-size: 26px;
    font-weight: 900;
}

.yellow-btn {
    background: var(--gold-main);
    color: #000;
    box-shadow: 0 4px 15px rgba(251, 192, 45, 0.35);
}

.yellow-btn:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 192, 45, 0.55);
}

.whatsapp-btn {
    background: var(--whatsapp-green);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-top: 10px;
    padding: 12px;
    font-size: 19px;
    font-style: normal;
    animation: greenPulseGlow 3s infinite ease-in-out;
}

.whatsapp-btn:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

.form-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    margin: 15px 0;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--glass-border);
}

.form-divider span {
    padding: 0 12px;
}

.form-trust-info {
    margin-top: 18px;
    text-align: center;
}

.trust-pill-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    opacity: 0.9;
}

.terms-text {
    font-size: 9px;
    color: var(--text-muted);
    line-height: 1.4;
    font-weight: 500;
}

.terms-text a {
    color: var(--gold-main);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.terms-text a:hover {
    text-shadow: 0 0 5px var(--gold-glow);
}

/* OTP Digits input flow */
.otp-inputs-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 18px;
}

.otp-digit {
    width: 48px;
    height: 52px;
    background: #030508;
    border: 1.5px solid var(--glass-border);
    border-radius: 8px;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    outline: none;
    transition: var(--transition-smooth);
}

.otp-digit:focus {
    border-color: var(--gold-main);
    box-shadow: 0 0 10px rgba(251, 192, 45, 0.25);
}

.otp-timer-container {
    text-align: center;
    font-size: 13px;
    margin-bottom: 18px;
    font-weight: 600;
}

.btn-back {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 18px auto 0;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-back:hover {
    color: #fff;
}

/* Registration Success screen */
.success-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.success-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.12);
    border: 2px solid var(--whatsapp-green);
    color: var(--whatsapp-green);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 1.8s infinite;
}

.success-title {
    color: var(--whatsapp-green);
    letter-spacing: 0.5px;
}

.id-display-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--gold-main);
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    margin-bottom: 22px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.id-label {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1px;
    font-weight: 700;
}

.id-value {
    font-size: 22px;
    font-weight: 900;
    color: var(--gold-main);
    margin: 6px 0 10px;
    letter-spacing: 0.5px;
}

.btn-copy {
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    color: var(--text-white);
    font-size: 11px;
    padding: 5px 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.btn-copy:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--gold-main);
}

.full-btn {
    width: 100%;
}

/* Live Match Banner Section */
.live-match-section {
    background: #090e15;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 16px 24px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.live-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 12px;
}

.live-headline {
    display: flex;
    align-items: center;
    gap: 16px;
}

.live-indicator {
    color: var(--text-white);
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-condensed);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.red-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--live-red);
    display: inline-block;
    animation: liveIndicatorPulse 1s infinite ease-in-out;
}

.match-title {
    font-family: var(--font-condensed);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-white);
    opacity: 0.9;
}

.btn-view-markets {
    background: var(--gold-main);
    color: #000;
    border: none;
    border-radius: 4px;
    padding: 6px 14px;
    font-family: var(--font-condensed);
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.btn-arrow-small {
    font-family: monospace;
    font-size: 14px;
    font-weight: 900;
}

.btn-view-markets:hover {
    background: var(--gold-bright);
}

/* Live Odds Panel Grid */
.live-odds-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.odds-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    border: none;
    padding: 0;
}

.flag-rect {
    width: 44px;
    height: 28px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.country-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.country-name {
    font-family: var(--font-condensed);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.odds-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--whatsapp-green);
    font-family: var(--font-condensed);
    line-height: 1.1;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-divider span {
    border: 1px solid var(--gold-main);
    background: rgba(251, 192, 45, 0.05);
    color: var(--gold-main);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    font-family: var(--font-condensed);
}

.live-vertical-line {
    width: 1.5px;
    height: 38px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 15px;
}

.live-meta-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.meta-txt-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.meta-txt-top {
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
}

.meta-txt-bottom {
    font-family: var(--font-condensed);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.red-stroke {
    color: var(--live-red);
}

.gold-stroke {
    color: var(--gold-main);
}

.meta-vertical-line {
    width: 1.5px;
    height: 28px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0;
}

/* Stats Counter Section */
.stats-section {
    padding: 25px 0;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}

.stat-box {
    flex: 1;
    background: rgba(7, 10, 15, 0.85);
    border: 1.5px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.stats-box-divider {
    width: 1.5px;
    background: rgba(255, 255, 255, 0.3);
    margin: 10px 0;
    flex-shrink: 0;
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(251, 192, 45, 0.05);
    color: var(--gold-main);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(251, 192, 45, 0.1);
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-condensed);
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    color: var(--gold-main);
    letter-spacing: 0.5px;
}

.stat-title {
    font-size: 11px;
    font-weight: 800;
    margin: 4px 0 2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.stat-sub {
    font-size: 9px;
    color: var(--text-muted);
    line-height: 1.4;
    font-weight: 500;
}

/* Bottom CTA Journey Banner */
.cta-journey-section {
    position: relative;
    background: url('images/last_bar.jpeg') no-repeat center center;
    background-size: cover;
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 1024 / 157;
    margin-bottom: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.cta-journey-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Footer & Trust Area */
.footer {
    background: #020305;
    border-top: 1.5px solid rgba(255, 255, 255, 0.04);
    padding: 35px 20px 25px;
    text-align: center;
    position: relative;
}

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

/* Trust & Payments Unified Row Styles */
.footer-trust-payments-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.5);
    padding: 18px 36px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    width: 100%;
    box-sizing: border-box;
}

.trust-badges-subrow,
.payment-logos-subrow {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-trust-payments-row .row-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.footer-trust-payments-row .trust-icon {
    width: 28px;
    height: 28px;
    color: var(--gold-main);
    flex-shrink: 0;
}

.footer-trust-payments-row .item-text {
    display: flex;
    flex-direction: column;
}

.footer-trust-payments-row .text-bold {
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.footer-trust-payments-row .text-sub {
    font-family: var(--font-condensed);
    font-size: 9px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.footer-trust-payments-row .footer-divider-line {
    width: 1px;
    height: 26px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.footer-trust-payments-row .logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.upi-logo-container,
.gpay-logo-container,
.phonepe-logo-container {
    display: flex;
    align-items: center;
    height: 34px;
}

/* Responsible gaming statement */
.responsible-gaming-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 11px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.warning-badge {
    border: 1px solid var(--text-muted);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
}

.responsibly-txt {
    font-weight: 800;
    color: var(--text-white);
}

.warning-txt {
    max-width: 600px;
}

.divider-dot {
    opacity: 0.4;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--gold-main);
}

/* ==========================================================================
   MEDIA QUERIES (Pixel-perfect Mobile Responsiveness)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1.2fr 1fr;
    }

    .batsman-container {
        display: none;
    }

    .stats-container {
        flex-wrap: wrap;
    }

    .stats-box-divider {
        display: none;
    }

    .stat-box {
        flex: 1 1 calc(50% - 10px);
    }

    .live-odds-grid {
        grid-template-columns: 1fr 50px 1fr;
    }

    .live-meta-info {
        grid-column: span 3;
        justify-content: center;
        padding-left: 0;
        margin-top: 12px;
    }
}

@media (min-width: 1025px) {
    .header-container {
        max-width: none;
        width: 100%;
        padding: 0 28px;
    }

    .main-wrapper {
        max-width: none;
        width: 100%;
        padding: 0;
    }

    .hero-section {
        padding: 68px 0 54px;
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.34) 25%, rgba(0, 0, 0, 0.08) 52%, transparent 100%),
            linear-gradient(180deg, #030508 0%, rgba(3, 5, 8, 0.4) 15%, rgba(3, 5, 8, 0.4) 85%, #030508 100%),
            url('images/stadium_bg.png') no-repeat center 44%;
        background-size: cover;
        box-shadow: inset 0 0 135px rgba(0, 0, 0, 0.96), inset 0 -70px 90px rgba(3, 5, 8, 0.95);
    }

    .hero-container {
        min-height: 610px;
        grid-template-columns: 1fr 1fr;
        gap: 42px;
        padding: 0 28px;
    }

    .hero-left-content {
        padding-left: 10px;
        position: relative;
        z-index: 4;
    }

    .hero-mini-tag {
        display: inline-flex;
        width: fit-content;
        padding: 4px 13px;
        margin-bottom: 8px;
        border: 1px solid rgba(251, 192, 45, 0.28);
        border-radius: 999px;
        background: rgba(251, 192, 45, 0.07);
        box-shadow: 0 0 18px rgba(251, 192, 45, 0.12);
    }

    .action-banner {
        padding: 8px 22px;
        border-radius: 6px;
        box-shadow: 0 8px 24px rgba(251, 192, 45, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.42);
    }

    .hero-seconds-text {
        margin-bottom: 24px;
    }

    .feature-checklist {
        display: grid;
        grid-template-columns: repeat(2, minmax(205px, 1fr));
        gap: 10px;
        width: 100%;
        max-width: 520px;
        margin-bottom: 26px;
    }

    .feature-checklist li {
        margin-bottom: 0;
        min-height: 46px;
        padding: 10px 12px;
        border: 1px solid rgba(251, 192, 45, 0.16);
        border-radius: 10px;
        background:
            linear-gradient(135deg, rgba(12, 18, 27, 0.68), rgba(5, 9, 15, 0.5)),
            rgba(0, 0, 0, 0.24);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 9px 20px rgba(0, 0, 0, 0.34), 0 0 12px rgba(251, 192, 45, 0.06);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.72);
        backdrop-filter: blur(5px);
    }

    .feature-checklist li:hover {
        transform: translateY(-2px);
        border-color: rgba(251, 192, 45, 0.34);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 13px 26px rgba(0, 0, 0, 0.3);
    }

    .check-icon {
        background: rgba(251, 192, 45, 0.12);
        box-shadow: 0 0 12px rgba(251, 192, 45, 0.22);
    }

    .bonus-promo-card {
        max-width: 430px;
        min-height: 150px;
        padding: 20px 22px 48px;
        border-color: rgba(251, 192, 45, 0.9);
        background:
            radial-gradient(circle at 82% 35%, rgba(251, 192, 45, 0.13), transparent 34%),
            linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
            #080d13;
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.62), 0 0 24px rgba(251, 192, 45, 0.16);
    }

    .bonus-label {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9);
    }

    .bonus-percentage {
        font-size: 72px;
        text-shadow: 0 0 18px rgba(251, 192, 45, 0.28);
    }

    .bonus-amount {
        font-size: 25px;
    }

    .bonus-conditions-box {
        padding: 8px 0;
        background: linear-gradient(90deg, #18ad55, #27c86a, #18ad55);
    }

    .bonus-graphic {
        width: 112px;
        right: 18px;
    }

    .batsman-container {
        left: 52%;
        max-width: 480px;
        height: calc(100% + 28px);
        z-index: 3;
    }

    .signup-card {
        max-width: 400px;
        padding: 28px;
        background:
            radial-gradient(circle at 50% 0%, rgba(251, 192, 45, 0.12), transparent 34%),
            linear-gradient(180deg, rgba(16, 23, 33, 0.88), rgba(5, 9, 14, 0.96)),
            rgba(6, 9, 13, 0.92);
        border-color: rgba(251, 192, 45, 0.78);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.44), 0 0 28px rgba(251, 192, 45, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(7px);
    }

    .signup-card-header {
        padding-bottom: 18px;
        margin-bottom: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .signup-sub-tag {
        border-radius: 6px;
        box-shadow: 0 6px 18px rgba(251, 192, 45, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.36);
    }

    .phone-input-group {
        background: rgba(2, 5, 8, 0.72);
        border-color: rgba(251, 192, 45, 0.24);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .live-match-section {
        margin: 30px 28px;
    }

    .stats-section {
        padding: 25px 28px;
    }
}

@media (max-width: 768px) {
    /* Header - all in ONE line with logo */
    .header {
        padding: 8px 0;
    }

    .header-container {
        flex-wrap: nowrap;
        gap: 0;
        padding: 0 10px;
        align-items: center;
    }

    .logo-area {
        flex-shrink: 0;
    }

    .brand-logo-img {
        height: 32px;
    }

    .header-features {
        display: flex;
        flex: 1;
        overflow-x: auto;
        gap: 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0;
        justify-content: flex-end;
        align-items: center;
    }

    .header-features::-webkit-scrollbar {
        display: none;
    }

    .header-feature-item {
        flex-shrink: 0;
        padding: 2px 7px;
        gap: 4px;
        border-radius: 0;
        justify-content: center;
        position: relative;
    }

    .header-feature-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 10%;
        height: 80%;
        width: 1px;
        background: rgba(255,255,255,0.08);
    }

    .feature-icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        border-width: 1px;
    }

    .feature-icon svg {
        width: 9px;
        height: 9px;
    }

    .currency-symbol {
        font-size: 10px;
    }

    .feature-title {
        font-size: 7px;
        letter-spacing: 0.2px;
    }

    .feature-desc {
        font-size: 6px;
    }

    .header-trusted-badge {
        padding: 3px 6px;
        gap: 4px;
        border-radius: 5px;
        flex-shrink: 0;
    }

    .badge-icon svg {
        width: 12px;
        height: 12px;
    }

    .badge-title {
        font-size: 5.5px;
    }

    .badge-count {
        font-size: 8px;
    }

    .badge-location {
        font-size: 5.5px;
    }

    /* ── Hero Section ── */
    .hero-section {
        padding: 24px 0 22px;
        background:
            linear-gradient(180deg, rgba(3, 5, 8, 0.34) 0%, rgba(3, 5, 8, 0.3) 34%, rgba(3, 5, 8, 0.82) 100%),
            url('images/stadium_bg.png') no-repeat 48% top;
        background-size: cover;
        border-radius: 0 0 20px 20px;
        overflow: hidden;
        isolation: isolate;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            linear-gradient(180deg, rgba(3, 5, 8, 0) 0%, rgba(3, 5, 8, 0.18) 48%, rgba(3, 5, 8, 0.76) 100%),
            linear-gradient(115deg, rgba(251, 192, 45, 0.1) 0%, transparent 34%, rgba(37, 211, 102, 0.05) 100%);
        pointer-events: none;
        z-index: 0;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        left: 14px;
        right: 14px;
        top: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold-main), transparent);
        box-shadow: 0 0 16px rgba(251, 192, 45, 0.75);
        pointer-events: none;
        z-index: 3;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 18px;
        z-index: 1;
    }

    /* Left hero content */
    .hero-left-content {
        text-align: center;
        align-items: center;
        padding: 2px 4px 0;
        position: relative;
        z-index: 2;
    }

    .batsman-container {
        display: flex;
        position: absolute;
        left: auto;
        right: -58px;
        top: 48px;
        bottom: auto;
        width: 230px;
        max-width: none;
        height: 330px;
        transform: none;
        align-items: flex-start;
        justify-content: flex-end;
        opacity: 0.34;
        z-index: 1;
    }

    .batsman-img {
        height: 100%;
        filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.72));
    }

    .hero-mini-tag {
        font-size: 13.5px;
        letter-spacing: 1px;
        margin-bottom: 5px;
        color: rgba(255, 255, 255, 0.92);
    }

    .hero-main-title {
        font-size: 46px;
        line-height: 0.88;
        margin-bottom: 13px;
        letter-spacing: 0;
        text-shadow: 0 8px 28px #000, 0 0 16px rgba(251, 192, 45, 0.14);
    }

    .action-banner {
        font-size: 15.5px;
        padding: 6px 18px;
        margin-bottom: 4px;
        border-radius: 6px;
        box-shadow: 0 7px 22px rgba(251, 192, 45, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }

    .hero-seconds-text {
        font-size: 22px;
        margin: 6px 0 14px;
    }

    /* Checklist - 2 column grid on mobile */
    .feature-checklist {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin: 4px auto 16px;
        text-align: left;
        padding: 0;
        width: 100%;
        max-width: 340px;
    }

    .feature-checklist li {
        font-size: 11px;
        gap: 7px;
        margin-bottom: 0;
        text-shadow: none;
        min-height: 34px;
        padding: 7px 8px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .check-icon {
        width: 17px;
        height: 17px;
        flex-shrink: 0;
        background: rgba(251, 192, 45, 0.13);
        box-shadow: 0 0 10px rgba(251, 192, 45, 0.22);
    }

    .check-icon svg {
        width: 8px;
        height: 8px;
    }

    /* Bonus card – full width, horizontal layout */
    .bonus-promo-card {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        padding: 15px 18px 40px;
        border-radius: 13px;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
            #080d13;
        border-color: rgba(251, 192, 45, 0.86);
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.55), 0 0 22px rgba(251, 192, 45, 0.14);
    }

    .bonus-label {
        font-size: 11px;
        letter-spacing: 0.5px;
        color: rgba(255, 255, 255, 0.86);
    }

    .bonus-percentage {
        font-size: 54px;
        line-height: 0.9;
        text-shadow: 0 0 14px rgba(251, 192, 45, 0.26);
    }

    .bonus-amount {
        font-size: 18px;
    }

    .bonus-conditions-box {
        font-size: 9.5px;
        padding: 6px 0;
        letter-spacing: 0.3px;
        background: linear-gradient(90deg, #18ad55, #27c86a, #18ad55);
    }

    .bonus-graphic {
        width: 80px;
        right: 10px;
        top: 42%;
    }

    /* Signup form card */
    .hero-right-signup {
        justify-content: center;
        position: relative;
        z-index: 2;
    }

    .signup-card {
        max-width: 100%;
        padding: 20px 18px 18px;
        border-radius: 16px 16px 0 0;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.012) 36%, transparent 100%),
            rgba(5, 8, 12, 0.98);
        border-color: rgba(251, 192, 45, 0.92);
        box-shadow: 0 -2px 0 rgba(255, 213, 79, 0.35), 0 0 34px rgba(251, 192, 45, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .signup-card-header {
        padding: 2px 0 15px;
        margin-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .header-logo-icon svg {
        width: 30px;
        height: 30px;
    }

    .signup-main-title {
        font-size: 20px;
        line-height: 1.2;
    }

    .signup-sub-tag {
        font-size: 9.5px;
        letter-spacing: 0.5px;
        padding: 4px 12px;
        border-radius: 5px;
        box-shadow: 0 5px 16px rgba(251, 192, 45, 0.22);
    }

    .step-progress-wrapper {
        margin-bottom: 18px;
    }

    .step-indicator-label {
        font-size: 9px;
        color: rgba(213, 225, 238, 0.88);
        margin-bottom: 12px;
        letter-spacing: 1.7px;
    }

    .steps-dots {
        gap: 8px;
    }

    .step-dot {
        width: 28px;
        height: 28px;
        font-size: 11px;
        background: rgba(9, 14, 21, 0.9);
        border-color: rgba(200, 216, 232, 0.75);
    }

    .step-line {
        width: 42px;
        background: rgba(255, 255, 255, 0.13);
    }

    .form-input-label {
        font-size: 18px;
    }

    .form-input-subtitle {
        font-size: 10px;
        margin-bottom: 12px;
        color: rgba(190, 205, 221, 0.9);
    }

    .phone-input-group {
        border-color: rgba(251, 192, 45, 0.32);
        background: rgba(2, 5, 8, 0.88);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    #mobile-number {
        font-size: 14px;
        padding: 11px 10px;
    }

    .country-selector {
        padding: 11px 10px;
        gap: 5px;
        border-right-color: rgba(255, 255, 255, 0.12);
    }

    .btn-primary {
        font-size: 20px;
        padding: 11px 14px;
        border-radius: 9px;
    }

    .whatsapp-btn {
        font-size: 14px;
        padding: 11px 10px;
        margin-top: 8px;
    }

    .trust-pill-group {
        font-size: 9.5px;
        gap: 8px;
        flex-wrap: wrap;

    }

    .otp-digit {
        width: 38px;
        height: 42px;
        font-size: 16px;
    }

    .live-header-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .live-headline {
        flex-direction: column;
        gap: 6px;
    }

    .live-odds-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .vs-divider {
        margin: 6px 0;
    }

    .live-meta-info {
        grid-column: span 1;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .cta-left {
        max-width: 100%;
    }

    .cta-banner-title {
        font-size: 28px;
    }

    .cta-right {
        width: 100%;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .cta-footer-bar {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .footer-trust-payments-row {
        flex-direction: column;
        gap: 14px;
        padding: 18px 14px;
        border-radius: 12px;
        justify-content: center;
        align-items: stretch;
    }

    .footer-trust-payments-row .footer-divider-line.main-divider {
        display: block;
        width: 100%;
        height: 1px;
    }

    .footer-trust-payments-row .footer-divider-line {
        display: none;
    }

    .trust-badges-subrow {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        gap: 0;
        width: 100%;
    }

    .trust-badges-subrow .row-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        text-align: center;
        flex: 1;
        padding: 4px 6px;
        position: relative;
    }

    .trust-badges-subrow .row-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 10%;
        height: 80%;
        width: 1px;
        background: rgba(255, 255, 255, 0.1);
    }

    .trust-badges-subrow .trust-icon {
        width: 22px;
        height: 22px;
    }

    .trust-badges-subrow .item-text {
        align-items: center;
    }

    .trust-badges-subrow .text-bold {
        font-size: 9px;
        letter-spacing: 0.3px;
        text-align: center;
    }

    .trust-badges-subrow .text-sub {
        font-size: 7px;
        text-align: center;
    }

    .payment-logos-subrow {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        gap: 0;
        width: 100%;
        flex-wrap: nowrap;
    }

    .payment-logos-subrow .logo-item {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        padding: 4px 2px;
    }

    .payment-logos-subrow .logo-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 10%;
        height: 80%;
        width: 1px;
        background: rgba(255, 255, 255, 0.1);
    }

    .payment-logos-subrow .upi-logo-container svg {
        width: 56px;
        height: 22px;
    }

    .payment-logos-subrow .gpay-logo-container svg {
        width: 16px !important;
        height: 16px !important;
        margin-right: 3px !important;
    }

    .payment-logos-subrow .gpay-logo-container span {
        font-size: 15px !important;
    }

    .payment-logos-subrow .logo-item>span {
        font-size: 16px !important;
    }

    .payment-logos-subrow .phonepe-logo-container>div {
        width: 20px !important;
        height: 20px !important;
    }

    .payment-logos-subrow .phonepe-logo-container>div span {
        font-size: 11px !important;
    }

    .payment-logos-subrow .phonepe-logo-container>span {
        font-size: 15px !important;
    }

    .payment-logos-subrow .phonepe-logo-container {
        gap: 5px !important;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 18px 0;
    }

    .stats-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .stat-box {
        flex: none;
        min-width: 0;
        padding: 12px 10px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        border-radius: 10px;
    }

    .stat-icon-wrapper {
        width: 34px;
        height: 34px;
        border-radius: 8px;
    }

    .stat-icon-wrapper svg {
        width: 22px;
        height: 22px;
    }

    .stat-text {
        align-items: center;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-title {
        font-size: 9px;
        margin: 4px 0 2px;
    }

    .stat-sub {
        font-size: 8px;
        line-height: 1.25;
    }

    /* Extra small phone hero tweaks */
    .hero-section {
        padding: 22px 0 18px;
        background-position: 45% top;
    }

    .main-wrapper {
        padding: 0 12px;
    }

    .hero-mini-tag {
        font-size: 12.5px;
    }

    .batsman-container {
        right: -70px;
        top: 58px;
        width: 205px;
        height: 300px;
        opacity: 0.3;
    }

    .hero-main-title {
        font-size: 37px;
        line-height: 0.9;
        margin-bottom: 11px;
    }

    .action-banner {
        font-size: 14px;
        padding: 5px 14px;
    }

    .hero-seconds-text {
        font-size: 19px;
        margin-bottom: 13px;
    }

    .feature-checklist li {
        font-size: 10px;
        padding: 7px 6px;
    }

    .bonus-promo-card {
        max-width: 100%;
        padding: 13px 14px 36px;
    }

    .bonus-percentage {
        font-size: 46px;
    }

    .bonus-amount {
        font-size: 16px;
    }

    .bonus-graphic {
        width: 72px;
        right: 8px;
    }

    .signup-card {
        padding: 18px 14px 16px;
    }

    .signup-main-title {
        font-size: 19px;
    }

    .btn-primary {
        font-size: 18px;
    }

    .otp-digit {
        width: 36px;
        height: 40px;
        font-size: 15px;
    }
}
