/* ===== VARIABLES ===== */
:root {
    --bg-deep: #050814;
    --bg-dark: #080d1f;
    --bg-card: #0d1530;
    --bg-card-hover: #111d3d;
    --accent-blue: #00c3ff;
    --accent-gold: #f0b93a;
    --accent-purple: #7b4fff;
    --text-primary: #e8eeff;
    --text-secondary: #8899cc;
    --text-muted: #556080;
    --border: rgba(0, 195, 255, 0.15);
    --glow-blue: rgba(0, 195, 255, 0.3);
    --glow-gold: rgba(240, 185, 58, 0.3);
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Exo 2', sans-serif;
    --container: 1100px;
    --radius: 12px;
    --radius-lg: 20px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}
.btn--primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: #fff;
    box-shadow: 0 0 30px var(--glow-blue);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px var(--glow-blue), 0 10px 30px rgba(0,0,0,0.4);
}
.btn--ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}
.btn--ghost:hover {
    border-color: var(--accent-blue);
    background: rgba(0,195,255,0.07);
}
.btn--full { width: 100%; justify-content: center; }
.btn--large { padding: 18px 40px; font-size: 1.1rem; }

/* ===== SECTION LABELS ===== */
.section {
    padding: 90px 0;
}
.section--dark {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.section-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 20% 50%, rgba(123,79,255,0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(0,195,255,0.1) 0%, transparent 60%),
                var(--bg-deep);
}

.hero__grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,195,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,195,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 120px 24px 80px;
    margin-left: calc((100vw - var(--container)) / 2);
    margin-left: max(24px, calc((100vw - var(--container)) / 2));
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(240,185,58,0.15), rgba(240,185,58,0.05));
    border: 1px solid rgba(240,185,58,0.4);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: 32px;
    animation: fadeSlideUp 0.8s ease both;
}
.badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 10px var(--accent-gold);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
    animation: fadeSlideUp 0.8s ease 0.1s both;
}
.title-ai {
    color: var(--accent-blue);
    text-shadow: 0 0 40px rgba(0,195,255,0.5), 0 0 80px rgba(0,195,255,0.2);
}
.title-rest {
    color: var(--text-primary);
}

.hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-weight: 300;
    letter-spacing: 0.02em;
    animation: fadeSlideUp 0.8s ease 0.2s both;
}

.hero__event-info {
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    color: var(--accent-gold);
    margin-bottom: 48px;
    font-weight: 400;
    letter-spacing: 0.05em;
    animation: fadeSlideUp 0.8s ease 0.3s both;
}

.hero__cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease 0.3s both;
}

.hero__image-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    opacity: 0.70;
}
.hero__image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 35% 50%, rgba(0,195,255,0.05) 0%, transparent 60%);
}

.hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    animation: fadeSlideUp 1s ease 0.8s both;
}
.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-blue), transparent);
    animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
    0% { opacity: 0; transform: translateY(-10px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(10px); }
}
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== META BAR ===== */
.meta-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
}
.meta-bar__items {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 200px;
    padding: 16px 32px;
}
.meta-item--first {
    margin-left: -32px;
}
.meta-item__icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,195,255,0.08);
    border: 1px solid var(--border);
    border-radius: 10px;
    flex-shrink: 0;
    color: var(--accent-blue);
}
.meta-item__icon svg { width: 20px; height: 20px; }
.meta-item__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.meta-item__value {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}
.meta-item__sub {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 2px;
}
.meta-item__note {
    font-size: 0.75rem;
    color: var(--accent-gold);
    margin-top: 6px;
    line-height: 1.4;
    font-style: italic;
    max-width: 260px;
}
.meta-divider {
    width: 1px;
    height: 60px;
    background: var(--border);
    flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about__lead {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 60px;
    line-height: 1.8;
}

.parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.part-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.part-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    opacity: 0;
    transition: opacity 0.3s;
}
.part-card:hover { background: var(--bg-card-hover); border-color: rgba(0,195,255,0.3); }
.part-card:hover::before { opacity: 1; }

.part-card__num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0,195,255,0.12);
    line-height: 1;
    margin-bottom: 16px;
}
.part-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 24px;
}
.part-card__list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.part-card__list li::before {
    content: '▸';
    color: var(--accent-blue);
    flex-shrink: 0;
}
.part-card__list li:last-child { border-bottom: none; }

/* ===== LEARN ===== */
.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.learn-card {
    background: rgba(0,195,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.3s ease;
}
.learn-card:hover {
    border-color: rgba(0,195,255,0.35);
    background: rgba(0,195,255,0.07);
    transform: translateY(-3px);
}
.learn-card__icon {
    font-size: 2rem;
    margin-bottom: 14px;
}
.learn-card p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.6;
}

/* ===== WHO ===== */
.who-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.who-pill {
    padding: 14px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: default;
}
.who-pill:hover {
    border-color: var(--accent-blue);
    color: var(--text-primary);
    background: rgba(0,195,255,0.07);
}

/* ===== FORMAT STEPS ===== */
.format-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}
.format-step {
    text-align: center;
    padding: 40px 24px;
    position: relative;
}
.format-step__dot {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, rgba(0,195,255,0.15), rgba(123,79,255,0.15));
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    color: var(--accent-blue);
}
.format-step__dot svg { width: 30px; height: 30px; }
.format-step h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.format-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== MAP ===== */
.map-wrap {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}
.map-info {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.map-info__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.map-info__item:last-of-type { border-bottom: none; }
.map-info__notice {
    display: block;
    font-size: 0.78rem;
    color: var(--accent-gold);
    font-style: italic;
    margin-top: 5px;
    line-height: 1.4;
}
.map-info__item--notice {
    background: rgba(240,185,58,0.06);
    border: 1px solid rgba(240,185,58,0.2) !important;
    border-radius: 8px;
    padding: 12px;
    margin-top: 4px;
}
.map-info__item--notice strong { color: var(--accent-gold); }
.map-info__item--notice span { color: var(--text-secondary); font-size: 0.82rem; line-height: 1.5; }
.map-info__item strong {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}
.map-info__item span {
    color: var(--text-primary);
    font-size: 0.93rem;
}
.map-embed { position: relative; }
.map-img {
    width: 100%;
    border-radius: 12px;
    display: block;
    border: 1px solid var(--border);
}
.map-note {
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
}

/* ===== REGISTER ===== */
.register__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.register__text p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1rem;
    line-height: 1.8;
}
.register__steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.reg-step {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-secondary);
    font-size: 0.93rem;
}
.reg-step__num {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.register__form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}
.form-input:focus {
    border-color: var(--accent-blue);
    background: rgba(0,195,255,0.04);
    box-shadow: 0 0 0 3px rgba(0,195,255,0.1);
}
.form-input::placeholder { color: var(--text-muted); }
.form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 16px;
}

/* ===== GOOGLE FORM ===== */
.google-form-container {
    margin-top: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.google-form-container iframe {
    display: block;
    border: none;
}

.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    font-size: 0.93rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}
.alert--success {
    background: rgba(0,255,120,0.08);
    border: 1px solid rgba(0,255,120,0.25);
    color: #4dff99;
}
.alert--error {
    background: rgba(255,60,60,0.08);
    border: 1px solid rgba(255,60,60,0.25);
    color: #ff7a7a;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    padding: 48px 24px;
    text-align: center;
}
.footer__brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.footer__ai { color: var(--accent-blue); }
.footer__tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.footer__actions {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}
.footer__copy {
    color: var(--text-muted);
    font-size: 0.78rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero {
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 60px 0 0 0;
        background: var(--bg-deep);
    }
    
    /* Content on top */
    .hero__content {
        position: relative;
        z-index: 2;
        margin: 0;
        padding: 40px 24px 20px;
        max-width: 100%;
        text-align: center;
        width: 100%;
        background: linear-gradient(to bottom, var(--bg-deep) 70%, rgba(5,8,20,0.5) 100%);
    }
    
    .hero__badge {
        display: inline-flex;
        margin-bottom: 16px;
        font-size: 0.7rem;
    }
    
    .hero__title {
        font-size: clamp(2.2rem, 12vw, 3.2rem);
        margin-bottom: 8px;
        line-height: 1.1;
    }
    
    .hero__subtitle {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        margin-bottom: 0;
        color: var(--text-secondary);
    }
    
    /* Image below text, full width and visible */
    .hero__image-wrap {
        position: relative;
        width: 100%;
        height: auto;
        z-index: 1;
        overflow: visible;
        min-height: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(to top, var(--bg-deep) 0%, transparent 100%);
        padding: 20px 0 40px 0;
    }
    
    .hero__image {
        width: 95%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center center;
        opacity: 1;
    }
    
    .hero__image-glow {
        display: none;
    }
    
    .hero__scroll-hint { 
        display: none;
    }
    
    .hero__particles {
        display: none;
    }
    
    .hero__grid-overlay {
        display: none;
    }

    /* Meta bar stacked */
    .meta-bar__items { flex-direction: column; }
    .meta-divider { width: 100%; height: 1px; }
    .meta-item { padding: 20px 16px; }

    /* Layout fixes */
    .map-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .section { padding: 60px 0; }
    .hero {
        min-height: 90vh;
        padding-bottom: 60px;
    }
    .hero__title { 
        font-size: clamp(2rem, 11vw, 2.8rem);
        margin-bottom: 8px;
    }
    .hero__subtitle { 
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    .hero__badge {
        font-size: 0.65rem;
        margin-bottom: 16px;
    }
    .format-steps { grid-template-columns: 1fr; }
    .parts-grid { grid-template-columns: 1fr; }
    .learn-grid { grid-template-columns: 1fr; }
}

/* ===== STICKY BOTTOM BAR ===== */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(8, 13, 31, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.5);
    padding: 14px 24px;
}
.sticky-bar__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.sticky-bar__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sticky-bar__title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}
.sticky-bar__sub {
    font-size: 0.78rem;
    color: var(--text-secondary);
}
.sticky-bar__times {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 2px;
    letter-spacing: 0.03em;
}
.sticky-bar__btn {
    flex-shrink: 0;
    padding: 12px 28px;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Add padding to body so sticky bar never overlaps footer content */
body {
    padding-bottom: 80px;
}

/* ===== REGISTER PAGE ===== */
.reg-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: radial-gradient(ellipse at 20% 40%, rgba(123,79,255,0.1) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 60%, rgba(0,195,255,0.08) 0%, transparent 60%),
                var(--bg-deep);
}
.reg-page__card {
    width: 100%;
    max-width: 480px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
}
.reg-page__card--wide {
    max-width: 760px;
}
.reg-page__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    transition: color 0.2s;
}
.reg-page__back:hover { color: var(--accent-blue); }
.reg-page__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 8px;
}
.reg-page__sub {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.reg-page__notice {
    margin-bottom: 28px;
    padding: 16px 20px;
    background: rgba(240,185,58,0.06);
    border: 1px solid rgba(240,185,58,0.25);
    border-radius: var(--radius);
}
.reg-page__notice p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}
.reg-page__notice strong {
    color: var(--accent-gold);
    font-weight: 600;
}
.reg-page__event-times {
    margin-bottom: 32px;
    padding: 20px;
    background: rgba(0,195,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.reg-page__event-times p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}
.reg-page__event-times strong {
    color: var(--text-primary);
    font-weight: 600;
}
.invite-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}
.invite-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(0,195,255,0.035);
}
.invite-option h2 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--accent-blue);
    margin-bottom: 8px;
}
.invite-option p {
    color: var(--text-secondary);
    font-size: 0.86rem;
    line-height: 1.5;
}
.invite-option--qr img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    padding: 8px;
    background: #fff;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .sticky-bar__times {
        display: none;
    }
}

@media (max-width: 600px) {
    .sticky-bar {
        padding: 12px 16px;
    }
    .sticky-bar__inner {
        flex-direction: column;
        gap: 10px;
    }
    .sticky-bar__text { 
        display: none; 
    }
    .sticky-bar__btn { 
        width: 100%; 
        justify-content: center;
        padding: 14px 24px;
        font-size: 1rem;
    }
    .reg-page__card { 
        padding: 32px 24px; 
    }
    .invite-option,
    .invite-option--qr {
        align-items: stretch;
        flex-direction: column;
    }
    .invite-option--qr img {
        align-self: center;
    }
}
