:root {
    --bg-deep: #080a11;
    --bg-card: #11131f;
    --border-light: rgba(255, 255, 255, 0.06);
    --cyan: #00f2fe;
    --purple: #4f46e5;
    --pink: #ec4899;
    --text-main: #ffffff;
    --text-muted: #8b92a5;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

body {
    background: #05060a;
    color: var(--text-main);
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* Glows */
.bg-glow {
    position: fixed; width: 100vw; height: 100vh; pointer-events: none; z-index: 0;
    filter: blur(100px); opacity: 0.4;
}
.top-left { top: -20vh; left: -20vw; background: radial-gradient(circle, var(--purple), transparent 70%); }
.bottom-right { bottom: -20vh; right: -20vw; background: radial-gradient(circle, var(--cyan), transparent 70%); }

/* App Container */
.app-container {
    width: 100%; max-width: 420px; position: relative; z-index: 1;
    padding: 0 20px 80px; min-height: 100vh;
}

/* Header */
.header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; border-bottom: 1px solid var(--border-light); margin-bottom: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; }
.logo i { color: var(--cyan); }
.live-badge {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.75rem; font-weight: 700; color: #22c55e;
    background: rgba(34, 197, 94, 0.1); padding: 4px 12px; border-radius: 20px;
}
.dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.2; } 100% { opacity: 1; } }

/* Hero */
.hero { text-align: center; margin-bottom: 25px; }
.badge {
    display: inline-block; background: rgba(79, 70, 229, 0.2); color: var(--cyan);
    padding: 6px 16px; border-radius: 20px; font-size: 0.7rem; font-weight: 700;
    border: 1px solid rgba(0, 242, 254, 0.2); margin-bottom: 15px;
}
.title { font-size: 2rem; font-weight: 900; line-height: 1.2; margin-bottom: 15px; }
.gradient-text {
    background: linear-gradient(135deg, var(--pink), var(--purple), var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.subtitle { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.strike { color: #ef4444; text-decoration: line-through; }
.highlight-green { color: #4ade80; font-weight: 700; }

/* Premium Pricing Box (Redesigned) */
.pricing-card {
    background: var(--bg-card); border: 1px solid var(--border-light);
    border-radius: 20px; padding: 20px; margin-bottom: 15px;
    display: flex; justify-content: space-between; align-items: center;
}
.pricing-left { display: flex; flex-direction: column; gap: 5px; }
.label { font-size: 0.65rem; font-weight: 700; color: var(--text-muted); letter-spacing: 1px; }
.amount-strike { font-size: 1rem; font-weight: 700; color: #ef4444; text-decoration: line-through; }
.amount-cyan { font-size: 3rem; font-weight: 900; color: #fff; text-shadow: 0 0 30px rgba(0, 242, 254, 0.3); line-height: 1; }

.pricing-divider { width: 1px; height: 60px; background: var(--border-light); }

.pricing-right { display: flex; gap: 15px; }
.feat-item { display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; }
.icon-wrap {
    width: 35px; height: 35px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.3), rgba(0, 242, 254, 0.2));
    display: flex; align-items: center; justify-content: center; color: var(--cyan); font-size: 0.9rem;
}
.feat-item span { font-size: 0.55rem; color: var(--text-muted); font-weight: 600; line-height: 1.2; }

.info-text { text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 20px; }

/* CTA Button */
.cta-btn {
    width: 100%; border: none; border-radius: 50px; padding: 18px;
    display: flex; justify-content: center; align-items: center; gap: 15px;
    background: linear-gradient(90deg, var(--purple), var(--cyan));
    color: #fff; font-weight: 800; cursor: pointer; position: relative;
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.4); transition: transform 0.2s;
}
.cta-btn:active { transform: scale(0.96); }
.cta-btn i { font-size: 1.5rem; }
.cta-text { display: flex; flex-direction: column; text-align: left; }
.cta-main { font-size: 1.1rem; }
.cta-sub { font-size: 0.6rem; opacity: 0.8; font-weight: 600; letter-spacing: 1px; }

/* Sections */
.section { margin-bottom: 30px; }
.section-header { margin-bottom: 15px; }
.section-header h2 { font-size: 1.1rem; font-weight: 700; }
.section-icon { color: var(--cyan); margin-right: 8px; }

.scroll-x { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 10px; }
.scroll-x::-webkit-scrollbar { display: none; }
.ss-card {
    min-width: 75%; height: 220px; border-radius: 15px;
    background-size: cover; background-position: center;
    border: 1px solid var(--border-light); flex-shrink: 0;
}

.video-wrapper {
    width: 100%; aspect-ratio: 16/9; border-radius: 15px;
    overflow: hidden; border: 1px solid var(--border-light);
}
.video-wrapper iframe { width: 100%; height: 100%; border: none; }

/* Sticky Footer */
.sticky-footer {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(8, 10, 17, 0.95); backdrop-filter: blur(15px);
    border-top: 1px solid var(--border-light); padding: 10px 20px;
    max-width: 420px; margin: 0 auto;
}
.sticky-form { display: flex; justify-content: space-between; align-items: center; width: 100%; cursor: pointer; }
.sticky-content { display: flex; align-items: center; gap: 15px; }
.sticky-icon {
    width: 45px; height: 45px; border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.sticky-text { display: flex; flex-direction: column; }
.sticky-title { font-weight: 800; font-size: 1rem; }
.sticky-sub { font-size: 0.6rem; color: var(--cyan); font-weight: 600; letter-spacing: 0.5px; }
.sticky-btn {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: #fff; padding: 8px 20px; border-radius: 30px; font-weight: 800; font-size: 0.8rem;
}