/* ==========================================================================
   AFI FANTACALCIO COMMUNITY - Dual Bonus Choice Design System (Side-by-Side Mobile)
   ========================================================================== */

:root {
    /* Theme Palette */
    --bg-dark: #04120E;
    --bg-card: rgba(11, 31, 25, 0.85);
    --bg-card-border: rgba(0, 255, 157, 0.25);
    
    --mint-neon: #00FF9D;
    --mint-glow: rgba(0, 255, 157, 0.4);
    
    --gold-accent: #FFC700;
    --gold-glow: rgba(255, 199, 0, 0.4);
    --gold-gradient: linear-gradient(135deg, #FFE58F 0%, #FFC700 60%, #B8860B 100%);
    
    --text-white: #FFFFFF;
    --text-muted: #9EBAAF;
    --text-dim: #5C7A6E;
    
    /* Typography */
    --font-heading: 'Chakra Petch', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    /* Effects */
    --shadow-card: 0 16px 40px rgba(0, 0, 0, 0.5);
    --shadow-btn: 0 8px 24px rgba(0, 255, 157, 0.35);
}

/* Reset & Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
    padding-bottom: 75px;
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* Top Cyber Banner */
.top-cyber-banner {
    background: linear-gradient(90deg, #02241a, #00ff9d, #02241a);
    color: #000000;
    font-size: 0.82rem;
    padding: 7px 0;
    font-weight: 700;
}

.banner-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.banner-live {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mint-pulse {
    width: 8px;
    height: 8px;
    background-color: #000;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.banner-clock {
    font-family: monospace;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.25);
    padding: 2px 10px;
    border-radius: 8px;
    color: #000;
}

/* Header */
.header {
    background: rgba(4, 18, 14, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--bg-card-border);
    padding: 10px 0;
}

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

@media (min-width: 768px) {
    .header-flex {
        justify-content: space-between;
    }
}

.brand-duo {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (min-width: 768px) {
    .brand-duo {
        gap: 16px;
    }
}

.brand-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-img-afi {
    height: 38px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 255, 157, 0.3);
}

@media (min-width: 768px) {
    .brand-img-afi {
        height: 44px;
    }
}

.brand-title-afi {
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--mint-neon);
    letter-spacing: 0.5px;
}

.brand-vs {
    font-family: var(--font-heading);
    font-weight: 900;
    font-style: italic;
    color: var(--gold-accent);
    font-size: 0.95rem;
}

.brand-img-sb {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}

@media (min-width: 768px) {
    .brand-img-sb {
        height: 34px;
    }
}

/* Header Button Control: Hidden on mobile */
.header .desk-only-btn {
    display: none !important;
}

@media (min-width: 768px) {
    .header .desk-only-btn {
        display: inline-flex !important;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cyber-primary {
    background: linear-gradient(135deg, #00FF9D, #00C87B);
    color: #000000;
    box-shadow: var(--shadow-btn);
}

.btn-cyber-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #33FFB0, #00FF9D);
    box-shadow: 0 12px 30px rgba(0, 255, 157, 0.6);
}

.btn-gold-option {
    background: var(--gold-gradient);
    color: #000000;
    box-shadow: 0 8px 24px rgba(255, 199, 0, 0.35);
    width: 100%;
    padding: 12px 10px;
    font-size: 0.8rem;
    border-radius: 10px;
    text-align: center;
}

.btn-gold-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 199, 0, 0.6);
}

.btn-opt {
    width: 100%;
    padding: 12px 10px;
    font-size: 0.8rem;
    border-radius: 10px;
    text-align: center;
}

.btn-hero {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1rem;
    border-radius: 14px;
}

.btn-mid {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-header-outline {
    background: transparent;
    border: 2px solid var(--mint-neon);
    color: var(--mint-neon);
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-header-outline:hover {
    background: var(--mint-neon);
    color: #000;
}

.btn-cyber-glow {
    animation: cyberPulse 2s infinite alternate;
}

@keyframes cyberPulse {
    0% { box-shadow: 0 0 15px rgba(0, 255, 157, 0.4); }
    100% { box-shadow: 0 0 35px rgba(0, 255, 157, 0.8), 0 0 10px rgba(255, 199, 0, 0.6); }
}

/* Glass Card */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid var(--bg-card-border);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    padding: 14px 10px;
}

@media (min-width: 768px) {
    .glass-card {
        padding: 28px;
        border-radius: 24px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 24px 0 32px;
    text-align: center;
    overflow: hidden;
}

.emerald-glow-orb {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.15) 0%, rgba(255, 199, 0, 0.08) 40%, rgba(4, 18, 14, 0) 70%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}

.hero-layout {
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 255, 157, 0.12);
    border: 1px solid rgba(0, 255, 157, 0.3);
    color: var(--mint-neon);
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.74rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.hero-headline {
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    font-size: 1.65rem;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 3rem;
    }
}

.mint-text {
    color: var(--mint-neon);
    text-shadow: 0 0 20px var(--mint-glow);
}

.gold-text {
    color: var(--gold-accent);
    text-shadow: 0 0 20px var(--gold-glow);
}

.text-gold { color: var(--gold-accent); }
.text-mint { color: var(--mint-neon); }

.hero-lead {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 720px;
    margin: 0 auto 16px;
}

/* Alert Notice Box */
.selection-alert-box {
    background: rgba(255, 199, 0, 0.12);
    border: 1.5px solid rgba(255, 199, 0, 0.4);
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 760px;
    margin: 0 auto 20px;
    text-align: left;
}

.alert-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.alert-text {
    font-size: 0.85rem;
    color: #FFF1B0;
    line-height: 1.35;
}

.hero-main-cta {
    max-width: 600px;
    margin: 0 auto;
}

.cta-micro {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 8px;
}

/* Options Comparison Section - ALWAYS SIDE BY SIDE (2 COLUMNS EVEN ON MOBILE) */
.options-section {
    padding: 24px 0;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns side by side on ALL screen sizes */
    gap: 8px;
    max-width: 1040px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .options-grid {
        gap: 24px;
    }
}

.option-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.option-card:hover {
    transform: translateY(-3px);
}

.option-featured {
    border-color: var(--gold-accent);
    box-shadow: 0 10px 30px rgba(255, 199, 0, 0.15);
}

.opt-badge-top {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.68rem;
    padding: 5px 6px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 12px 12px 0 0;
    margin: -14px -10px 10px -10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {
    .opt-badge-top {
        font-size: 0.82rem;
        padding: 6px 14px;
        margin: -28px -28px 20px -28px;
    }
}

.gold-badge-bg {
    background: var(--gold-gradient);
    color: #000;
}

.mint-badge-bg {
    background: linear-gradient(90deg, #00FF9D, #00C87B);
    color: #000;
}

.opt-img-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.opt-radio-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 6px 8px;
    margin-bottom: 12px;
}

.radio-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--text-dim);
    flex-shrink: 0;
}

.active-radio {
    border-color: var(--gold-accent);
    background: radial-gradient(circle, var(--gold-accent) 40%, transparent 45%);
}

.radio-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.25;
}

@media (min-width: 768px) {
    .radio-label {
        font-size: 0.88rem;
    }
}

.opt-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.opt-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .opt-title {
        font-size: 1.2rem;
        margin-bottom: 14px;
    }
}

.opt-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
    flex: 1;
}

.opt-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.76rem;
    color: var(--text-white);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .opt-benefits li {
        font-size: 0.92rem;
        gap: 10px;
    }
}

.b-check {
    color: var(--mint-neon);
    font-weight: 900;
    font-size: 0.95rem;
    line-height: 1.1;
    flex-shrink: 0;
}

.opt-rules-box {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 8px 10px;
    margin-bottom: 14px;
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .opt-rules-box {
        padding: 12px 14px;
        margin-bottom: 20px;
        font-size: 0.85rem;
    }
}

.rules-head {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2px;
}

/* Sections */
section {
    padding: 30px 0;
}

.section-title-box {
    text-align: center;
    margin-bottom: 24px;
}

.section-kicker {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--mint-neon);
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    display: block;
}

.section-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
    font-size: 1.45rem;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .section-heading {
        font-size: 2.3rem;
    }
}

/* Steps Section (Horizontal Flow) */
.steps-flex {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .steps-flex {
        flex-direction: row;
        gap: 16px;
        align-items: stretch;
    }
}

.step-box {
    flex: 1;
    background: var(--bg-card);
    border: 1.5px solid var(--bg-card-border);
    border-radius: 16px;
    padding: 20px 16px;
    position: relative;
    transition: transform 0.3s;
}

.step-box:hover {
    transform: translateY(-3px);
    border-color: var(--mint-neon);
}

.highlight-step {
    border-color: var(--gold-accent);
    background: rgba(255, 199, 0, 0.08);
}

.sb-number {
    position: absolute;
    top: 12px;
    right: 14px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.05);
}

.sb-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.sb-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.sb-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.step-connector {
    display: none;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--text-dim);
    font-size: 1.5rem;
    align-self: center;
}

@media (min-width: 768px) {
    .step-connector {
        display: block;
    }
}

.action-center {
    text-align: center;
}

/* FAQ Section */
.faq-wrapper {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-card {
    background: var(--bg-card);
    border: 1.5px solid var(--bg-card-border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    padding: 14px 16px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

.faq-toggle-icon {
    color: var(--mint-neon);
    font-weight: 900;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.faq-card.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 16px 14px 16px;
    color: var(--text-muted);
    font-size: 0.85rem;
    display: none;
}

.faq-card.active .faq-content {
    display: block;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(4, 18, 14, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--bg-card-border);
    padding: 10px 14px;
    z-index: 999;
}

@media (min-width: 992px) {
    .mobile-sticky-bar {
        display: none;
    }
}

.sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.sticky-meta {
    display: flex;
    flex-direction: column;
}

.sticky-primary {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--mint-neon);
}

.sticky-secondary {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.btn-sticky {
    padding: 10px 16px;
    font-size: 0.8rem;
    border-radius: 10px;
    white-space: nowrap;
}

/* Footer */
.footer {
    background: #020A08;
    border-top: 1px solid var(--bg-card-border);
    padding: 28px 0;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.8rem;
}

.footer-inner {
    max-width: 800px;
    margin: 0 auto;
}

.footer-brands {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.f-afi {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--mint-neon);
}

.f-sep {
    color: var(--text-dim);
}

.f-sb-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
}

.f-disclaimer {
    margin-bottom: 12px;
    line-height: 1.4;
}
