/* ═════════════════════════════════════════════════════
   landing.css — Landing page styles
   Dark neon RPG theme optimized for conversion
   ═════════════════════════════════════════════════════ */

/* ── WRAPPER ───────────────────────────────────────── */
.landing-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem 4rem;
    overflow-x: hidden;
}

/* ── NEON BUTTONS ──────────────────────────────────── */
.btn-neon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, #ff00ff, #8707ff);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0.75rem 1.8rem;
    box-shadow: 0 2px 16px rgba(255, 0, 255, 0.2);
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 1px;
    text-decoration: none;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}
.btn-neon:hover {
    background: linear-gradient(90deg, #8707ff, #ff00ff);
    box-shadow: 0 4px 28px rgba(255, 0, 255, 0.4);
    transform: translateY(-2px);
    color: #fff;
}
.btn-neon:active { transform: translateY(0) scale(0.98); }
.btn-neon.btn-large {
    font-size: 1.15rem;
    padding: 1rem 2.5rem;
    min-height: 54px;
}

.btn-outline-neon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid rgba(252, 157, 252, 0.6);
    color: #ff80ff;
    background: transparent;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0.7rem 1.8rem;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
}
.btn-outline-neon:hover {
    background: rgba(255, 0, 255, 0.1);
    border-color: #ff00ff;
    color: #fff;
    box-shadow: 0 0 18px rgba(255, 0, 255, 0.25);
    transform: translateY(-2px);
}
.btn-outline-neon:active {
    transform: translateY(0);
}

/* ── LOGO ──────────────────────────────────────────── */
.landing-logo {
    text-align: center;
    margin-top: 4.5rem;
    animation: fadeIn 1s ease-out;
}
.landing-logo img {
    height: 140px;
    filter: drop-shadow(0 0 12px rgba(255, 0, 255, 0.7));
    transition: filter 0.3s;
}
.landing-logo img:hover {
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 1));
}

/* ── HERO ──────────────────────────────────────────── */
.landing-hero {
    text-align: center;
    padding: 1.5rem 1rem 3rem;
    max-width: 720px;
    animation: fadeIn 0.8s ease-out;
}
.landing-hero .badge-open {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 20px;
    font-size: 0.78rem;
    letter-spacing: 2px;
    color: #ff80ff;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    animation: attentionPulse 3s ease-in-out infinite;
}
.landing-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ff00ff 10%, #8707ff 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}
.subtitle-accent {
    font-size: 0.8em;
    display: block;
    margin-top: 0.5rem;
    opacity: 0.85;
}
.hero-description {
    font-size: 1.12rem;
    color: #ffd6ff;
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    opacity: 0.92;
}
.hero-description strong {
    color: #fff;
    font-weight: 700;
}
.landing-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

/* ── TRUST BADGES ──────────────────────────────────── */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #4ade80;
    font-weight: 600;
}
.trust-badge i {
    color: #4ade80;
    font-size: 1rem;
}

/* ── LIVE STATS SECTION ────────────────────────────── */
.live-stats-section {
    width: 100%;
    max-width: 1000px;
    margin: 3rem 0;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.05), rgba(135, 7, 255, 0.05));
    border: 1px solid rgba(255, 0, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(255, 0, 255, 0.1);
}
.stats-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}
.live-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}
.live-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(20, 20, 40, 0.6);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 14px;
    box-shadow: 0 2px 15px rgba(255, 0, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.live-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff00ff, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.live-stat:hover {
    background: rgba(255, 0, 255, 0.08);
    border-color: rgba(255, 0, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(255, 0, 255, 0.2);
}
.live-stat:hover::before { opacity: 1; }

.stat-icon {
    font-size: 2rem;
    color: #ff00ff;
    margin-bottom: 0.8rem;
    opacity: 0.8;
}
.live-stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #ff00ff;
    text-shadow: 0 0 14px rgba(255, 0, 255, 0.6);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.live-stat-label {
    font-size: 0.8rem;
    color: #ffd6ff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.85;
}

/* ── RECENT JOINS ──────────────────────────────────── */
.recent-joins {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 107, 107, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.joins-label {
    color: #ffd6ff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 0.5rem;
}
.join-name {
    color: #ff80ff;
    font-weight: 700;
    font-size: 0.85rem;
}

/* ── SECTION TITLES ────────────────────────────────── */
.section-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 0, 255, 0.12);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #ff80ff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}
.landing-wrapper .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}
.landing-wrapper .section-title h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #ff00ff, #8707ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.landing-wrapper .section-title p {
    color: #ffd6ff;
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* ── FEATURES ──────────────────────────────────────── */
.features-section {
    padding: 3.5rem 1rem;
    max-width: 1100px;
    width: 100%;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.3rem;
}
.feature-card {
    background: rgba(20, 20, 40, 0.6);
    border-radius: 14px;
    padding: 1.8rem;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 255, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff00ff, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(255, 0, 255, 0.18);
    border-color: rgba(255, 0, 255, 0.4);
    background: rgba(20, 20, 40, 0.9);
}
.feature-card:hover::before { opacity: 1; }

/* Fade-in animation */
.feature-card.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
}
.feature-card.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    transition: transform 0.25s ease;
}
.feature-card:hover .feature-icon { transform: scale(1.1); }

.ic-pink   { background: rgba(255, 0, 255, 0.12);    color: #ff80ff; }
.ic-purple { background: rgba(135, 7, 255, 0.12);    color: #b07aff; }
.ic-red    { background: rgba(255, 60, 60, 0.1);     color: #ff6b6b; }
.ic-green  { background: rgba(50, 205, 50, 0.1);     color: #4ade80; }
.ic-yellow { background: rgba(255, 200, 0, 0.1);     color: #fbbf24; }
.ic-blue   { background: rgba(80, 130, 255, 0.1);    color: #60a5fa; }
.ic-orange { background: rgba(255, 107, 53, 0.1);    color: #fb923c; }
.ic-cyan   { background: rgba(0, 229, 255, 0.1);     color: #22d3ee; }

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
}
.feature-card p {
    font-size: 0.9rem;
    color: #ffd6ff;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0 0 1rem 0;
    flex: 1;
}
.feature-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #ff80ff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 0, 255, 0.1);
}
.feature-detail i {
    color: #4ade80;
    font-size: 0.7rem;
}

/* ── HOW IT WORKS ──────────────────────────────────── */
.how-section {
    padding: 3.5rem 1rem;
    max-width: 820px;
    width: 100%;
    border-top: 1px solid rgba(255, 0, 255, 0.08);
    border-bottom: 1px solid rgba(255, 0, 255, 0.08);
}
.landing-wrapper .steps {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}
.landing-wrapper .step {
    display: flex;
    align-items: flex-start;
    gap: 1.3rem;
    background: rgba(20, 20, 40, 0.6);
    border-radius: 14px;
    padding: 1.5rem 1.8rem;
    box-shadow: 0 2px 16px rgba(255, 0, 255, 0.08);
    border: 1px solid rgba(255, 0, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
}
.landing-wrapper .step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ff00ff, #8707ff);
    opacity: 0;
    transition: opacity 0.3s;
}
.landing-wrapper .step:hover {
    border-color: rgba(255, 0, 255, 0.3);
    transform: translateX(6px);
    box-shadow: 0 6px 24px rgba(255, 0, 255, 0.15);
    background: rgba(20, 20, 40, 0.9);
}
.landing-wrapper .step:hover::before { opacity: 1; }
.step-num {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff00ff, #8707ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 0 14px rgba(255, 0, 255, 0.35);
    flex-shrink: 0;
}
.step-content h3 {
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}
.step-content p {
    font-size: 0.92rem;
    color: #ffd6ff;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0 0 1rem 0;
}
.step-content p strong {
    color: #fff;
    font-weight: 700;
}
.step-tags {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.8rem;
}
.step-tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 0, 255, 0.12);
    border: 1px solid rgba(255, 0, 255, 0.25);
    border-radius: 12px;
    color: #ff80ff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ── WHY SECTION ───────────────────────────────────── */
.why-section {
    width: 100%;
    max-width: 1100px;
    padding: 3.5rem 1rem;
    border-top: 1px solid rgba(255, 0, 255, 0.08);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.why-card {
    background: rgba(20, 20, 40, 0.6);
    border: 1px solid rgba(255, 0, 255, 0.15);
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}
.why-card:hover {
    border-color: rgba(255, 0, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 0, 255, 0.15);
    background: rgba(20, 20, 40, 0.9);
}
.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.15), rgba(135, 7, 255, 0.15));
    border: 2px solid rgba(255, 0, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ff00ff;
    transition: transform 0.3s;
}
.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}
.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
}
.why-card p {
    font-size: 0.9rem;
    color: #ffd6ff;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* ── CTA BANNER ────────────────────────────────────── */
.cta-banner {
    width: 100%;
    max-width: 900px;
    margin: 3rem auto;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.12), rgba(135, 7, 255, 0.12));
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 30px rgba(255, 0, 255, 0.15);
    animation: attentionPulse 4s ease-in-out infinite;
}
.cta-banner-content {
    text-align: center;
}
.cta-banner-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}
.cta-banner-content h3 i {
    color: #ff00ff;
}
.cta-banner-content p {
    font-size: 1.1rem;
    color: #ffd6ff;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}
.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4ade80;
    font-weight: 600;
    font-size: 0.9rem;
}
.cta-features i {
    color: #4ade80;
}
.cta-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(90deg, #ff00ff, #8707ff);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    box-shadow: 0 4px 20px rgba(255, 0, 255, 0.3);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    letter-spacing: 1px;
    min-height: 54px;
}
.cta-banner-btn:hover {
    background: linear-gradient(90deg, #8707ff, #ff00ff);
    box-shadow: 0 6px 30px rgba(255, 0, 255, 0.45);
    transform: translateY(-3px);
    color: #fff;
}
.cta-banner-btn:active {
    transform: translateY(-1px);
}

/* ── TESTIMONIALS ──────────────────────────────────── */
.testimonials-section {
    width: 100%;
    max-width: 1000px;
    padding: 3.5rem 1rem;
}
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.testimonial {
    background: rgba(20, 20, 40, 0.6);
    border: 1px solid rgba(255, 0, 255, 0.15);
    border-radius: 14px;
    padding: 1.8rem;
    box-shadow: 0 2px 16px rgba(255, 0, 255, 0.08);
    transition: all 0.3s ease;
}
.testimonial:hover {
    border-color: rgba(255, 0, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(255, 0, 255, 0.15);
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.player-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff00ff, #8707ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}
.player-info {
    flex: 1;
}
.player-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}
.player-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: #ff80ff;
}
.player-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.testimonial-quote {
    font-size: 0.92rem;
    color: #ffd6ff;
    line-height: 1.7;
    font-style: italic;
    opacity: 0.9;
}



/* ── FINAL CTA ─────────────────────────────────────── */
.landing-wrapper .final-cta {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 900px;
    position: relative;
    margin-top: 3rem;
}
.final-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.15), transparent);
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
}
.landing-wrapper .final-cta h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ff00ff, #8707ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.landing-wrapper .final-cta p {
    color: #ffd6ff;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}
.landing-wrapper .final-cta p strong {
    color: #fff;
    font-weight: 700;
}
.final-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.final-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.final-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff80ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
}
.final-links a:hover {
    color: #fff;
    gap: 0.7rem;
}
.final-links a i {
    font-size: 1.1rem;
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .landing-logo img { height: 100px; }
    .live-stats-section { padding: 2rem 1rem; }
    .stats-title { font-size: 1.1rem; }
    .live-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .live-stat { padding: 1.2rem 0.8rem; }
    .stat-icon { font-size: 1.6rem; }
    .live-stat-value { font-size: 1.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .testimonials { grid-template-columns: 1fr; }
    .cta-banner { padding: 2rem 1.5rem; }
    .cta-banner-content h3 { font-size: 1.3rem; flex-direction: column; }
    .cta-features { gap: 1rem; }
}

@media (max-width: 600px) {
    .landing-logo img { height: 80px; }
    .landing-logo { margin-top: 3rem; }
    .landing-hero { padding: 1rem 0.5rem 2rem; }
    .landing-hero h1 { font-size: clamp(1.4rem, 8vw, 1.8rem); }
    .subtitle-accent { font-size: 0.75em; }
    .hero-description { font-size: 1rem; }
    .trust-badges { gap: 1rem; flex-direction: column; align-items: center; }
    .live-stats-section { padding: 1.5rem 1rem; }
    .live-stats { grid-template-columns: 1fr; }
    .live-stat { padding: 1.2rem; }
    .recent-joins { flex-direction: column; text-align: center; }
    .features-section, .how-section, .why-section, .testimonials-section { padding: 2.5rem 1rem; }
    .section-badge { font-size: 0.7rem; padding: 0.35rem 0.9rem; }
    .feature-card, .why-card { padding: 1.5rem; }
    .step-content { margin-right: 0; }
    .step-tags { justify-content: center; }
    .cta-banner { padding: 2rem 1rem; margin: 2rem auto; }
    .cta-banner-content h3 { font-size: 1.2rem; }
    .cta-banner-content p { font-size: 1rem; }
    .cta-features { flex-direction: column; gap: 0.8rem; }
    .cta-banner-btn { width: 100%; justify-content: center; }
    .landing-hero-cta { flex-direction: column; width: 100%; }
    .final-cta-btns { flex-direction: column; width: 100%; max-width: 350px; margin: 0 auto 2rem; }
    .final-links { flex-direction: column; gap: 1rem; }
    .btn-neon, .btn-outline-neon { width: 100%; justify-content: center; }
    .landing-wrapper .final-cta { padding: 3rem 1rem; }
    .landing-wrapper .final-cta h2 { font-size: 1.6rem; }
    .landing-wrapper .final-cta p { font-size: 1rem; }
}

/* ── ANIMATIONS ────────────────────────────────────── */
@keyframes attentionPulse {
    0%, 100% { box-shadow: 0 4px 30px rgba(255, 0, 255, 0.15); }
    50% { box-shadow: 0 6px 40px rgba(255, 0, 255, 0.25); }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
