/* =====================================================
   landing.css — Guest landing page styles
   Dark neon RPG theme with dopamine-driving design
   ===================================================== */

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

/* ── NEON BUTTONS ──────────────────────────────────── */
.btn-neon {
    display: inline-block;
    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: background 0.2s, box-shadow 0.2s, transform 0.15s;
    letter-spacing: 1px;
    text-decoration: none;
}
.btn-neon:hover {
    background: linear-gradient(90deg, #8707ff, #ff00ff);
    box-shadow: 0 4px 28px rgba(255, 0, 255, 0.4);
    transform: translateY(-2px) scale(1.03);
    color: #fff;
}
.btn-neon:active { transform: translateY(0) scale(0.98); }

.btn-outline-neon {
    display: inline-block;
    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.2s;
    text-decoration: none;
}
.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);
}

/* ── 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;
}
.landing-hero p {
    font-size: 1.12rem;
    color: #ffd6ff;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    opacity: 0.92;
}
.landing-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── LIVE STATS ────────────────────────────────────── */
.live-stats {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    max-width: 860px;
}
.live-stat {
    text-align: center;
    padding: 1.2rem 1.8rem;
    background: rgba(40, 0, 60, 0.35);
    border: 1px solid rgba(255, 0, 255, 0.1);
    border-radius: 12px;
    min-width: 150px;
    box-shadow: 0 1px 12px rgba(255, 0, 255, 0.08);
    transition: background 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
    cursor: default;
}
.live-stat:hover {
    background: rgba(255, 0, 255, 0.1);
    border-color: rgba(255, 0, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 0, 255, 0.15);
}
.live-stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.65rem;
    font-weight: 900;
    color: #ff00ff;
    text-shadow: 0 0 14px rgba(255, 0, 255, 0.6);
    line-height: 1;
}
.live-stat-label {
    font-size: 0.76rem;
    color: #ffd6ff;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

/* ── SECTION TITLES ────────────────────────────────── */
.landing-wrapper .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}
.landing-wrapper .section-title h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 0.4rem;
    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: 1rem;
    opacity: 0.85;
}

/* ── 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.95);
    border-radius: 14px;
    padding: 1.8rem;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.06);
    transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.25s ease;
    border: 1px solid rgba(255, 0, 255, 0.08);
    position: relative;
    overflow: hidden;
}
.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.22);
}
.feature-card:hover::before { opacity: 1; }

.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.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}
.feature-card p {
    font-size: 0.88rem;
    color: #ffd6ff;
    line-height: 1.6;
    opacity: 0.85;
    margin: 0;
}

/* ── 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.95);
    border-radius: 12px;
    padding: 1.3rem 1.5rem;
    box-shadow: 0 1px 14px rgba(255, 0, 255, 0.07);
    border: 1px solid rgba(255, 0, 255, 0.06);
    transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
}
.landing-wrapper .step:hover {
    border-color: rgba(255, 0, 255, 0.22);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(255, 0, 255, 0.12);
}
.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.3rem;
    font-size: 1rem;
}
.step-content p {
    font-size: 0.88rem;
    color: #ffd6ff;
    line-height: 1.6;
    opacity: 0.85;
    margin: 0;
}

/* ── REGISTER BANNER ───────────────────────────────── */
.landing-wrapper .register-banner {
    margin: 2.5rem auto 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    background: linear-gradient(90deg, rgba(255, 0, 255, 0.1), rgba(135, 7, 255, 0.15));
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 12px;
    padding: 1.25rem 2rem;
    box-shadow: 0 2px 20px rgba(255, 0, 255, 0.12);
    max-width: 700px;
    animation: attentionPulse 4s ease-in-out infinite;
}
.register-banner-text {
    color: #fff;
    font-weight: 500;
    font-size: 1.06rem;
}
.register-banner-btn {
    background: linear-gradient(90deg, #ff00ff, #8707ff);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.06rem;
    font-weight: 700;
    padding: 0.7rem 1.6rem;
    box-shadow: 0 2px 14px rgba(255, 0, 255, 0.2);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 1px;
    display: inline-block;
}
.register-banner-btn:hover {
    background: linear-gradient(90deg, #8707ff, #ff00ff);
    box-shadow: 0 4px 22px rgba(255, 0, 255, 0.35);
    transform: translateY(-2px) scale(1.04);
    color: #fff;
}

/* ── TESTIMONIALS ──────────────────────────────────── */
.testimonials {
    margin: 2.5rem auto 0;
    max-width: 720px;
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
    justify-content: center;
}
.testimonial {
    background: rgba(60, 0, 80, 0.2);
    border: 1px solid rgba(255, 0, 255, 0.12);
    border-radius: 10px;
    padding: 0.85rem 1.3rem;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 1px 10px rgba(255, 0, 255, 0.1);
    min-width: 220px;
    max-width: 330px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    transition: border-color 0.25s, transform 0.2s;
}
.testimonial:hover {
    border-color: rgba(255, 0, 255, 0.3);
    transform: translateY(-2px);
}
.testimonial-quote  { font-weight: 500; color: #ffd6ff; font-style: italic; }
.testimonial-user   { font-size: 0.9rem; color: #ff80ff; font-style: normal; font-weight: 600; }

/* ── SOCIAL PROOF ──────────────────────────────────── */
.social-proof {
    margin: 2rem auto 0;
    text-align: center;
}
.player-count {
    display: inline-block;
    background: rgba(60, 0, 80, 0.22);
    border: 1px solid rgba(255, 0, 255, 0.15);
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    color: #ffd6ff;
    box-shadow: 0 1px 10px rgba(255, 0, 255, 0.12);
    font-size: 1.06rem;
}
.join-today {
    color: #ff80ff;
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 1.05rem;
    text-shadow: 0 0 8px rgba(255, 0, 255, 0.3);
}

/* ── DISCORD CTA ───────────────────────────────────── */
.landing-wrapper .discord-cta {
    margin: 2.5rem auto 0;
    display: flex;
    justify-content: center;
}
.landing-wrapper .discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(90deg, #5865F2, #7b5cff);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.75rem 1.8rem;
    box-shadow: 0 2px 16px rgba(88, 101, 242, 0.3);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 1px;
}
.landing-wrapper .discord-btn:hover {
    background: linear-gradient(90deg, #7b5cff, #5865F2);
    box-shadow: 0 4px 24px rgba(88, 101, 242, 0.5);
    transform: translateY(-2px) scale(1.04);
    color: #fff;
}

/* ── FINAL CTA ─────────────────────────────────────── */
.landing-wrapper .final-cta {
    text-align: center;
    padding: 3.5rem 1rem;
    max-width: 720px;
}
.landing-wrapper .final-cta h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    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.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.final-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 768px) {
    .landing-logo img      { height: 100px; }
    .live-stat             { min-width: 130px; padding: 0.9rem 1rem; }
    .features-grid         { grid-template-columns: 1fr 1fr; }
    .testimonials          { flex-direction: column; align-items: center; }
    .testimonial           { max-width: 100%; min-width: 0; }
}
@media (max-width: 600px) {
    .landing-logo img      { height: 80px; }
    .landing-hero h1       { font-size: 1.5rem; }
    .live-stats            { gap: 0.7rem; }
    .features-grid         { grid-template-columns: 1fr; }
    .landing-hero-cta,
    .final-cta-btns        { flex-direction: column; align-items: center; }
    .btn-neon,
    .btn-outline-neon      { width: 100%; text-align: center; }
}
