/* ============================================
   🎨 PREMIUM DESIGN SYSTEM — SWIGGY LOOT ARENA
   Ultra-modern Telegram Mini App UI
   ============================================ */

/* Design Tokens & Resets */
:root {
    --bg-base: #06050c;
    --bg-surface: rgba(25, 22, 47, 0.45);
    --bg-surface-elevated: rgba(35, 30, 68, 0.7);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(252, 128, 25, 0.25);

    --color-primary: #fc8019;
    --color-primary-light: #ff993b;
    --color-secondary: #8a3ffc;
    --color-cyan: #0ef6cc;
    --color-gold: #ffbe1a;
    --color-instamart: #2AABEE;
    --color-instamart-deep: #0077ff;
    --color-success: #00f064;
    --color-error: #ff4b4b;
    --color-text-main: #f5f5f7;
    --color-text-muted: #9fa0b5;

    --font-header: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-base);
    color: var(--color-text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Helpers */
.hidden {
    display: none !important;
}

/* ============================================
   🎊 CONFETTI CANVAS
   ============================================ */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

/* ============================================
   🌌 SPLASH SCREEN — PARTICLE VORTEX + GLITCH
   ============================================ */
.splash-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-base);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow: hidden;
}

/* Particle canvas background */
.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Animated Mesh Gradient Blobs */
.splash-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(252, 128, 25, 0.5), transparent 70%);
    top: 10%;
    left: -10%;
    animation: blobFloat1 8s ease-in-out infinite;
}

.blob-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(138, 63, 252, 0.5), transparent 70%);
    bottom: 10%;
    right: -10%;
    animation: blobFloat2 10s ease-in-out infinite;
}

.blob-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(14, 246, 204, 0.4), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: blobFloat3 12s ease-in-out infinite;
}

@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.2); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 20px) scale(1.1); }
    66% { transform: translate(20px, -40px) scale(0.95); }
}

@keyframes blobFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.3); }
}

.splash-content {
    text-align: center;
    z-index: 10;
    padding: 20px;
    width: 100%;
    max-width: 400px;
}

/* Loader Logo — Spinning Rings with Core */
.loader-logo {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
}

.ring-outer {
    width: 110px;
    height: 110px;
    border-top-color: var(--color-primary);
    border-right-color: rgba(252, 128, 25, 0.2);
    border-bottom-color: transparent;
    border-left-color: rgba(252, 128, 25, 0.1);
    animation: ringRotate 2.5s linear infinite;
}

.ring-inner {
    width: 85px;
    height: 85px;
    border-top-color: transparent;
    border-right-color: rgba(14, 246, 204, 0.15);
    border-bottom-color: var(--color-cyan);
    border-left-color: rgba(14, 246, 204, 0.2);
    animation: ringRotate 1.8s linear infinite reverse;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-core {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(252, 128, 25, 0.3), 0 0 60px rgba(138, 63, 252, 0.15);
    z-index: 2;
    animation: corePulse 2s ease-in-out infinite;
}

@keyframes corePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(252, 128, 25, 0.3), 0 0 60px rgba(138, 63, 252, 0.15); }
    50% { transform: scale(1.06); box-shadow: 0 0 40px rgba(252, 128, 25, 0.5), 0 0 80px rgba(138, 63, 252, 0.25); }
}

.trophy-icon {
    font-size: 28px;
    color: #fff;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
    animation: trophyFloat 3s ease-in-out infinite;
}

@keyframes trophyFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-4px) rotate(3deg); }
    75% { transform: translateY(2px) rotate(-2deg); }
}

/* Logo Orbiting Particles */
.logo-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.lp {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-cyan);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--color-cyan);
    animation: orbitParticle 4s linear infinite;
}

.lp:nth-child(1) { top: 0; left: 50%; animation-delay: 0s; background: var(--color-primary); box-shadow: 0 0 6px var(--color-primary); }
.lp:nth-child(2) { top: 50%; right: 0; animation-delay: 0.5s; }
.lp:nth-child(3) { bottom: 0; left: 50%; animation-delay: 1s; background: var(--color-gold); box-shadow: 0 0 6px var(--color-gold); }
.lp:nth-child(4) { top: 50%; left: 0; animation-delay: 1.5s; }
.lp:nth-child(5) { top: 10%; right: 10%; animation-delay: 2s; background: var(--color-secondary); box-shadow: 0 0 6px var(--color-secondary); }
.lp:nth-child(6) { bottom: 10%; right: 10%; animation-delay: 2.5s; }
.lp:nth-child(7) { bottom: 10%; left: 10%; animation-delay: 3s; background: var(--color-primary); box-shadow: 0 0 6px var(--color-primary); }
.lp:nth-child(8) { top: 10%; left: 10%; animation-delay: 3.5s; }

@keyframes orbitParticle {
    0%, 100% { opacity: 0; transform: scale(0); }
    20% { opacity: 1; transform: scale(1); }
    80% { opacity: 1; transform: scale(1); }
    95% { opacity: 0; transform: scale(0.5) translateY(-10px); }
}

/* Glitch Text Effect */
.glitch-text {
    font-family: var(--font-header);
    font-weight: 900;
    font-size: 36px;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #fff 30%, var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    margin-bottom: 6px;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff 30%, var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glitch-text::before {
    animation: glitch1 3s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch-text::after {
    animation: glitch2 3s infinite linear alternate-reverse;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch1 {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(3px, -1px); }
    94% { transform: translate(-2px, 1px); }
    96% { transform: translate(1px, 0); }
}

@keyframes glitch2 {
    0%, 90%, 100% { transform: translate(0); }
    91% { transform: translate(-2px, 1px); }
    93% { transform: translate(3px, -1px); }
    95% { transform: translate(-1px, 0); }
}

.splash-subtitle {
    font-size: 13px;
    color: var(--color-text-muted);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}

.splash-credits {
    font-size: 10px;
    color: var(--color-cyan);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 40px;
    opacity: 0.85;
}

/* Progress Bar */
.progress-bar-container {
    width: 80%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 0 auto 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-cyan), var(--color-secondary));
    background-size: 200% 100%;
    border-radius: 10px;
    transition: width 0.1s linear;
    position: relative;
    animation: progressShimmer 2s linear infinite;
}

@keyframes progressShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.progress-glow {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: var(--color-cyan);
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.8;
}

.loader-tip {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 400;
    animation: fadePulse 1.5s infinite alternate;
}

@keyframes fadePulse {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

/* ============================================
   🏠 MAIN DASHBOARD
   ============================================ */
.dashboard-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 20px 18px 100px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex-grow: 1;
    z-index: 10;
    overflow: hidden;
}

/* Liquid Gradient Background */
.liquid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.liquid-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.lb-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--color-primary), transparent 70%);
    top: -15%;
    right: -20%;
    animation: liquidMove1 15s ease-in-out infinite;
}

.lb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-secondary), transparent 70%);
    bottom: 10%;
    left: -25%;
    animation: liquidMove2 18s ease-in-out infinite;
}

.lb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--color-cyan), transparent 70%);
    top: 40%;
    left: 50%;
    animation: liquidMove3 20s ease-in-out infinite;
}

@keyframes liquidMove1 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-50px, 30px); }
    50% { transform: translate(-30px, 60px); }
    75% { transform: translate(20px, 40px); }
}

@keyframes liquidMove2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(40px, -40px); }
    66% { transform: translate(-20px, -20px); }
}

@keyframes liquidMove3 {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -40px); }
}

/* ============================================
   👋 USER GREETING HEADER
   ============================================ */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.user-greeting {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 2px solid rgba(252, 128, 25, 0.3);
    box-shadow: 0 4px 15px rgba(252, 128, 25, 0.2);
    flex-shrink: 0;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-fallback {
    font-size: 20px;
    color: #fff;
}

.greeting-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.greeting-hello {
    font-family: var(--font-header);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.greeting-sub {
    font-size: 11px;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(14, 246, 204, 0.08);
    border: 1px solid rgba(14, 246, 204, 0.2);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-cyan);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-cyan);
    animation: blink 1.2s infinite;
}

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

/* ============================================
   📊 LIVE STATS TICKER
   ============================================ */
.stats-ticker {
    background: rgba(14, 246, 204, 0.04);
    border: 1px solid rgba(14, 246, 204, 0.1);
    border-radius: 12px;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
}

.stats-ticker::before,
.stats-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.stats-ticker::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-base), transparent);
}

.stats-ticker::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-base), transparent);
}

.ticker-track {
    display: flex;
    width: max-content;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: tickerScroll 25s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    font-size: 11px;
    color: var(--color-text-muted);
    letter-spacing: 0.3px;
}

.ticker-item strong {
    color: var(--color-cyan);
    font-weight: 700;
}

.ticker-divider {
    color: rgba(255, 255, 255, 0.15);
    font-size: 8px;
}

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

/* ============================================
   ✨ TYPOGRAPHY HERO — NO BOX, PURE TEXT
   ============================================ */
.typo-hero {
    position: relative;
    z-index: 10;
    padding: 8px 0 4px;
}

.hero-label {
    font-size: 10px;
    color: var(--color-cyan);
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.label-dot {
    width: 6px;
    height: 6px;
    background: var(--color-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-cyan), 0 0 20px rgba(14, 246, 204, 0.3);
    animation: blink 1.5s infinite;
}

.hero-headline {
    font-family: var(--font-header);
    font-size: 42px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 16px;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(252, 128, 25, 0.25));
}

.hero-countdown-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(252, 128, 25, 0.06);
    border: 1px solid rgba(252, 128, 25, 0.12);
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 11px;
    color: var(--color-primary);
    font-weight: 600;
}

.hero-countdown-pill ion-icon {
    font-size: 13px;
    opacity: 0.8;
}

.countdown-timer {
    font-family: var(--font-header);
    font-weight: 800;
    letter-spacing: 1px;
    animation: countdownPulse 1s ease-in-out infinite;
}

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

/* ============================================
   🎯 FLOATING DEAL ORBS
   ============================================ */
.floating-orbs-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.deal-orb {
    position: absolute;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    animation: orbFloat 6s ease-in-out infinite;
    opacity: 0.9;
}

.orb-1 {
    background: rgba(252, 128, 25, 0.15);
    border: 1px solid rgba(252, 128, 25, 0.25);
    color: var(--color-primary);
    top: 25%;
    right: 8%;
    animation-delay: 0s;
}

.orb-2 {
    background: rgba(14, 246, 204, 0.12);
    border: 1px solid rgba(14, 246, 204, 0.2);
    color: var(--color-cyan);
    top: 55%;
    left: 5%;
    animation-delay: 2s;
}

.orb-3 {
    background: rgba(138, 63, 252, 0.12);
    border: 1px solid rgba(138, 63, 252, 0.2);
    color: var(--color-secondary);
    top: 75%;
    right: 12%;
    animation-delay: 4s;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(3deg); }
    50% { transform: translateY(-8px) rotate(-2deg); }
    75% { transform: translateY(-20px) rotate(1deg); }
}

/* ============================================
   🃏 LANDING CARDS — 3D TILT + PARALLAX
   ============================================ */
.action-section {
    position: relative;
    z-index: 10;
}

.landing-section-title {
    font-family: var(--font-header);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.landing-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--border-color), transparent);
}

.landing-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Individual Landing Card */
.landing-card {
    position: relative;
    border-radius: 22px;
    padding: 24px 22px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
}

/* 3D Tilt Shine Overlay */
.tilt-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 3;
    border-radius: 22px;
}

/* Ripple Effect Container */
.ripple-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 22px;
    pointer-events: none;
    z-index: 4;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: scale(0);
    animation: rippleExpand 0.6s ease-out forwards;
    pointer-events: none;
}

@keyframes rippleExpand {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* FOOD Card Theme */
.landing-card.food-card {
    background: linear-gradient(145deg, rgba(45, 25, 12, 0.9), rgba(20, 12, 6, 0.95));
    border: 1px solid rgba(252, 128, 25, 0.2);
    box-shadow: 0 8px 32px rgba(252, 128, 25, 0.08), inset 0 1px 0 rgba(252, 128, 25, 0.1);
}

.landing-card.food-card:active {
    box-shadow: 0 4px 20px rgba(252, 128, 25, 0.2);
}

/* INSTAMART Card Theme */
.landing-card.instamart-card {
    background: linear-gradient(145deg, rgba(8, 32, 48, 0.9), rgba(4, 16, 24, 0.95));
    border: 1px solid rgba(42, 171, 238, 0.2);
    box-shadow: 0 8px 32px rgba(42, 171, 238, 0.06), inset 0 1px 0 rgba(42, 171, 238, 0.1);
}

.landing-card.instamart-card:active {
    box-shadow: 0 4px 20px rgba(42, 171, 238, 0.15);
}

/* Card Internal Background Glow */
.landing-card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.food-card .landing-card-glow {
    top: -40%;
    right: -20%;
    background: radial-gradient(circle, rgba(252, 128, 25, 0.35) 0%, transparent 70%);
}

.instamart-card .landing-card-glow {
    top: -40%;
    right: -20%;
    background: radial-gradient(circle, rgba(42, 171, 238, 0.3) 0%, transparent 70%);
}

/* Card Top Row: Badge + Arrow */
.landing-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.card-category-badge {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.food-card .card-category-badge {
    background: rgba(252, 128, 25, 0.15);
    color: var(--color-primary);
    border: 1px solid rgba(252, 128, 25, 0.2);
}

.instamart-card .card-category-badge {
    background: rgba(42, 171, 238, 0.12);
    color: var(--color-instamart);
    border: 1px solid rgba(42, 171, 238, 0.2);
}

.card-category-badge ion-icon {
    font-size: 12px;
}

.card-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.food-card .card-arrow {
    background: rgba(252, 128, 25, 0.12);
    color: var(--color-primary);
    border: 1px solid rgba(252, 128, 25, 0.15);
}

.instamart-card .card-arrow {
    background: rgba(42, 171, 238, 0.1);
    color: var(--color-instamart);
    border: 1px solid rgba(42, 171, 238, 0.15);
}

.landing-card:active .card-arrow {
    transform: translateX(3px);
}

/* Card Icon — Large Floating Icon */
.landing-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    animation: iconFloat 4s ease-in-out infinite;
}

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

.food-card .landing-card-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #fff;
    box-shadow: 0 8px 24px rgba(252, 128, 25, 0.3);
}

.instamart-card .landing-card-icon {
    background: linear-gradient(135deg, var(--color-instamart), var(--color-instamart-deep));
    color: #fff;
    box-shadow: 0 8px 24px rgba(42, 171, 238, 0.25);
}

/* Card Body Text */
.landing-card-body {
    position: relative;
    z-index: 1;
}

.landing-card-body h3 {
    font-family: var(--font-header);
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.2;
}

.landing-card-body p {
    font-size: 12.5px;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 280px;
}

/* Card Bottom Tags */
.landing-card-tags {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.card-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.food-card .card-tag {
    background: rgba(252, 128, 25, 0.1);
    color: rgba(252, 180, 100, 0.9);
    border: 1px solid rgba(252, 128, 25, 0.12);
}

.instamart-card .card-tag {
    background: rgba(42, 171, 238, 0.08);
    color: rgba(100, 200, 255, 0.9);
    border: 1px solid rgba(42, 171, 238, 0.1);
}

/* Shimmer sweep animation overlay */
.landing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    z-index: 1;
    animation: shimmerSweep 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmerSweep {
    0% { left: -100%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

/* Floating particles for cards */
.floating-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.food-card .floating-particle:nth-child(3) {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    bottom: 20%;
    left: 80%;
    animation: particleFloat1 5s ease-in-out infinite;
}

.food-card .floating-particle:nth-child(4) {
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    bottom: 60%;
    left: 90%;
    animation: particleFloat2 6s ease-in-out infinite 0.5s;
}

.food-card .floating-particle:nth-child(5) {
    width: 3px;
    height: 3px;
    background: var(--color-primary-light);
    top: 30%;
    left: 70%;
    animation: particleFloat3 7s ease-in-out infinite 1s;
}

.instamart-card .floating-particle:nth-child(3) {
    width: 6px;
    height: 6px;
    background: var(--color-instamart);
    bottom: 20%;
    left: 80%;
    animation: particleFloat1 5s ease-in-out infinite;
}

.instamart-card .floating-particle:nth-child(4) {
    width: 4px;
    height: 4px;
    background: var(--color-cyan);
    bottom: 60%;
    left: 90%;
    animation: particleFloat2 6s ease-in-out infinite 0.5s;
}

.instamart-card .floating-particle:nth-child(5) {
    width: 3px;
    height: 3px;
    background: var(--color-instamart-deep);
    top: 30%;
    left: 70%;
    animation: particleFloat3 7s ease-in-out infinite 1s;
}

@keyframes particleFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(-15px, -20px) scale(1.5); opacity: 0.7; }
}

@keyframes particleFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
    50% { transform: translate(10px, -25px) scale(1.3); opacity: 0.5; }
}

@keyframes particleFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.15; }
    50% { transform: translate(-12px, 18px) scale(1.4); opacity: 0.45; }
}

/* ============================================
   ❓ FAQ ACCORDION
   ============================================ */
.faq-section {
    position: relative;
    z-index: 10;
}

.faq-title {
    font-family: var(--font-header);
    font-size: 13px;
    font-weight: 800;
    color: var(--color-text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.faq-title ion-icon {
    font-size: 18px;
    color: var(--color-cyan);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: rgba(20, 18, 40, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.faq-item.open {
    border-color: rgba(252, 128, 25, 0.15);
    background: rgba(25, 22, 50, 0.6);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: none;
    border: none;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    text-align: left;
    gap: 12px;
}

.faq-question span {
    flex: 1;
}

.faq-chevron {
    font-size: 16px;
    color: var(--color-text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 16px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 16px 14px;
}

.faq-answer p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
}

/* ============================================
   📌 STAGGERED ENTRY ANIMATIONS
   ============================================ */
.stagger-item {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   📎 STICKY FOOTER
   ============================================ */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    padding: 16px 20px 16px;
    background: linear-gradient(to top, var(--bg-base) 85%, transparent);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.app-credits {
    font-size: 10px;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.7;
    text-align: center;
}

.app-credits strong {
    color: var(--color-cyan);
    font-weight: 700;
}

/* Proofy Link Styling */
.proofy-link {
    color: var(--color-cyan);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
    display: inline-block;
}

.proofy-link:hover {
    text-shadow: 0 0 8px rgba(14, 246, 204, 0.6);
    color: #fff;
}

/* ============================================
   ⏳ REDIRECT SCREEN
   ============================================ */
.redirect-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-base);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.redirect-content {
    text-align: center;
    z-index: 10;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(252, 128, 25, 0.15);
    border-top: 3px solid var(--color-primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.redirect-content h3 {
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 6px;
    color: #fff;
}

.redirect-content p {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ============================================
   🔓 DENIED SCREEN
   ============================================ */
.denied-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-base);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    overflow: hidden;
}

.denied-content {
    text-align: center;
    z-index: 10;
    padding: 24px;
}

.shield-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.denied-content h2 {
    font-family: var(--font-header);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.denied-content p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Stadium Glow Background */
.stadium-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 60%;
    background: radial-gradient(circle,
            rgba(110, 0, 255, 0.15) 0%,
            rgba(252, 128, 25, 0.08) 40%,
            rgba(6, 5, 12, 0) 70%);
    z-index: 0;
    pointer-events: none;
    filter: blur(40px);
}

.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border: none;
    color: #fff;
    padding: 16px 24px;
    border-radius: 16px;
    font-family: var(--font-header);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(252, 128, 25, 0.35);
    transition: all 0.2s ease;
    outline: none;
}

.btn-primary:active {
    transform: scale(0.98);
    box-shadow: 0 4px 15px rgba(252, 128, 25, 0.2);
}

.btn-primary ion-icon {
    font-size: 18px;
    transition: transform 0.2s ease;
}

/* ============================================
   ✨ VERIFICATION LOADING SCREEN
   ============================================ */
.verify-screen-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-base);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1800;
    overflow: hidden;
}

.verify-screen-content {
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Shield Scanner Animation */
.shield-scanner {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scanner-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
}

.scanner-ring.ring-1 {
    width: 120px;
    height: 120px;
    border-top-color: var(--color-cyan);
    border-right-color: rgba(14, 246, 204, 0.3);
    animation: scanRotate 2s linear infinite;
}

.scanner-ring.ring-2 {
    width: 95px;
    height: 95px;
    border-bottom-color: var(--color-primary);
    border-left-color: rgba(252, 128, 25, 0.3);
    animation: scanRotate 1.5s linear infinite reverse;
}

.scanner-ring.ring-3 {
    width: 70px;
    height: 70px;
    border-top-color: var(--color-secondary);
    border-right-color: rgba(138, 63, 252, 0.3);
    animation: scanRotate 2.5s linear infinite;
}

@keyframes scanRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.shield-core {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(14, 246, 204, 0.15), rgba(138, 63, 252, 0.15));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    animation: shieldPulse 1.5s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(14, 246, 204, 0.2), 0 0 30px rgba(14, 246, 204, 0.1); transform: scale(1); }
    50% { box-shadow: 0 0 25px rgba(14, 246, 204, 0.4), 0 0 50px rgba(14, 246, 204, 0.15); transform: scale(1.05); }
}

.shield-scan-icon {
    font-size: 26px;
    color: var(--color-cyan);
    filter: drop-shadow(0 0 8px rgba(14, 246, 204, 0.5));
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-cyan), transparent);
    top: 50%;
    left: 0;
    animation: scanLineMove 1.8s ease-in-out infinite;
    opacity: 0.7;
    box-shadow: 0 0 10px rgba(14, 246, 204, 0.5);
}

@keyframes scanLineMove {
    0% { top: 10%; opacity: 0; }
    20% { opacity: 0.8; }
    80% { opacity: 0.8; }
    100% { top: 90%; opacity: 0; }
}

.verify-screen-title {
    font-family: var(--font-header);
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #fff 40%, var(--color-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.verify-screen-subtitle {
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 400;
    max-width: 260px;
    line-height: 1.5;
    animation: fadePulse 2s infinite alternate;
}

/* Bouncing Dots Loader */
.loading-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.loading-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-cyan);
    animation: dotBounce 1.2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(14, 246, 204, 0.4);
}

.loading-dots .dot:nth-child(1) { animation-delay: 0s; }
.loading-dots .dot:nth-child(2) { animation-delay: 0.15s; background: var(--color-primary); box-shadow: 0 0 6px rgba(252, 128, 25, 0.4); }
.loading-dots .dot:nth-child(3) { animation-delay: 0.3s; background: var(--color-secondary); box-shadow: 0 0 6px rgba(138, 63, 252, 0.4); }

@keyframes dotBounce {
    0%, 80%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    40% { transform: translateY(-12px) scale(1.2); opacity: 1; }
}

/* ============================================
   🔒 JOIN GATE MODAL
   ============================================ */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(6, 5, 12, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1500;
    padding: 20px;
}

.modal-content {
    background: linear-gradient(135deg, rgba(30, 26, 60, 0.95), rgba(12, 10, 26, 0.95));
    border: 1px solid rgba(252, 128, 25, 0.25);
    border-radius: 24px;
    padding: 28px 24px;
    width: 100%;
    max-width: 360px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    animation: modalSlideUp 0.4s var(--ease-spring);
}

@keyframes modalSlideUp {
    from { transform: translateY(40px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.lock-icon {
    font-size: 38px;
    color: var(--color-primary);
    filter: drop-shadow(0 0 8px rgba(252, 128, 25, 0.4));
}

.modal-content h3 {
    font-family: var(--font-header);
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.modal-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

/* Channel Promotion Card */
.channels-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.channel-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.channel-info {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.channel-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(14, 246, 204, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-cyan);
    font-size: 18px;
}

.channel-details h4 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.channel-details p {
    font-size: 10px;
    color: var(--color-text-muted);
}

.btn-join-channel {
    background: linear-gradient(135deg, var(--color-cyan), #00a2ff);
    color: #06050c;
    border: none;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 100px;
    font-family: var(--font-header);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(14, 246, 204, 0.3);
    transition: all 0.2s ease;
}

.btn-join-channel:active {
    transform: scale(0.95);
}

/* Verifying status loader */
.verifying-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--color-cyan);
    font-size: 13px;
    font-weight: 600;
}

.small-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(14, 246, 204, 0.2);
    border-top: 2px solid var(--color-cyan);
    border-radius: 50%;
    animation: spin 0.8s infinite linear;
}

/* Error Warning Toast */
.verify-error {
    background: rgba(255, 75, 75, 0.1);
    border: 1px solid rgba(255, 75, 75, 0.25);
    color: var(--color-error);
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    animation: alertFadeIn 0.3s ease-out;
}

.alert-icon {
    font-size: 16px;
    filter: drop-shadow(0 0 4px rgba(255, 75, 75, 0.3));
}

@keyframes alertFadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.verify-success {
    background: rgba(0, 240, 100, 0.1);
    border: 1px solid rgba(0, 240, 100, 0.25);
    color: var(--color-success);
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    animation: alertFadeIn 0.3s ease-out;
}

/* Shake Animation on Fail */
.shake-anim {
    animation: shake 0.4s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-8px); }
    40%, 80% { transform: translateX(8px); }
}

.btn-verify {
    width: 100%;
    background: linear-gradient(135deg, var(--color-success), #00c853);
    border: none;
    color: #06050c;
    padding: 14px 24px;
    border-radius: 14px;
    font-family: var(--font-header);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(0, 240, 100, 0.25);
    transition: all 0.2s ease;
}

.btn-verify:active {
    transform: scale(0.97);
}

.btn-verify:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-verify ion-icon {
    font-size: 18px;
}

/* ============================================
   ADMIN — Premium Toggle Switch
   ============================================ */
.toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.toggle-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toggle-label .title {
    font-family: var(--font-header);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.toggle-label .subtitle {
    font-size: 11px;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 30px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.toggle-slider:before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.toggle-switch input:checked+.toggle-slider {
    background: linear-gradient(135deg, var(--color-success), #00c853);
    border-color: rgba(0, 240, 100, 0.4);
    box-shadow: 0 0 15px rgba(0, 240, 100, 0.2);
}

.toggle-switch input:checked+.toggle-slider:before {
    transform: translateX(22px);
}

.toggle-status {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.toggle-status.active { color: var(--color-success); }
.toggle-status.inactive { color: var(--color-error); }

.gate-info {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 246, 204, 0.05);
    border: 1px solid rgba(14, 246, 204, 0.12);
    border-radius: 10px;
    padding: 10px 14px;
    margin-top: 12px;
    font-size: 11px;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.gate-info ion-icon {
    font-size: 16px;
    color: var(--color-cyan);
    flex-shrink: 0;
}

/* ============================================
   📱 RESPONSIVE — Telegram Mobile Views
   ============================================ */
@media (max-height: 600px) {
    .dashboard-container {
        padding-top: 12px;
        gap: 14px;
    }

    .stadium-hero {
        padding: 16px;
    }

    .hero-title {
        font-size: 22px;
    }

    .glitch-text {
        font-size: 28px;
    }
}

/* ============================================
   🔲 TELEGRAM JOIN FOOTER (ADMIN)
   ============================================ */
.tg-join-footer {
    position: relative;
    z-index: 1;
    margin-top: 4px;
}

.btn-telegram-join {
    width: 100%;
    background: linear-gradient(135deg, #2AABEE, #229ED9);
    border: none;
    color: #fff;
    padding: 15px 24px;
    border-radius: 16px;
    font-family: var(--font-header);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(42, 171, 238, 0.25);
    transition: all 0.25s ease;
    outline: none;
    text-decoration: none;
    text-transform: uppercase;
}

.btn-telegram-join:active {
    transform: scale(0.98);
    box-shadow: 0 3px 12px rgba(42, 171, 238, 0.2);
}

.btn-telegram-join ion-icon {
    font-size: 20px;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

/* Hero Stats (if used in admin) */
.hero-stats {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--color-text-muted);
    font-weight: 600;
}

.hero-stat ion-icon {
    font-size: 14px;
}

/* ============================================
   🔘 FLOATING ACTION BUTTON (FAB) MENU
   ============================================ */
.fab-container {
    position: fixed;
    bottom: 52px;
    right: 16px;
    z-index: 500;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* Limit FAB position on wide screens */
@media (min-width: 520px) {
    .fab-container {
        right: calc(50% - 230px);
    }
}

.fab-toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(30, 26, 60, 0.95), rgba(15, 12, 30, 0.98));
    backdrop-filter: blur(16px);
    color: var(--color-text-main);
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.3s var(--ease-spring);
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.fab-toggle:active {
    transform: scale(0.92);
}

.fab-toggle .fab-icon-close {
    display: none;
}

.fab-container.open .fab-toggle {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-color: rgba(252, 128, 25, 0.3);
    box-shadow: 0 6px 24px rgba(252, 128, 25, 0.25);
    transform: rotate(0deg);
}

.fab-container.open .fab-toggle .fab-icon-default {
    display: none;
}

.fab-container.open .fab-toggle .fab-icon-close {
    display: flex;
}

/* FAB Options */
.fab-options {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px) scale(0.9);
    pointer-events: none;
    transition: all 0.25s var(--ease-spring);
}

.fab-container.open .fab-options {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.fab-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(30, 26, 60, 0.95), rgba(15, 12, 30, 0.98));
    backdrop-filter: blur(16px);
    color: var(--color-text-main);
    font-family: var(--font-header);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
    outline: none;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}

.fab-option:active {
    transform: scale(0.95);
}

.fab-option ion-icon {
    font-size: 18px;
    color: var(--color-cyan);
}

.fab-option-danger ion-icon {
    color: var(--color-primary);
}

.fab-option:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(40, 36, 75, 0.95);
}

/* FAB Backdrop overlay when open */
.fab-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(6, 5, 12, 0.4);
    z-index: 499;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.fab-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}