/* ============================================================
//  (Frontend)       Accueil/CSS/landing.css
// ============================================================

/* ========== LANDING PAGE ========== */

.landing-wrapper {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 70px);
}

.landing-hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-inner {
    text-align: center;
    padding: 20px 30px;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 1;
    margin-bottom: 12px;
    font-family: Arial, sans-serif;
}

.hero-subtitle {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
    margin-bottom: 60px;
}

/* ===== BOUTONS SOCIAUX ===== */
.hero-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
    backdrop-filter: blur(10px);
}

.btn-social:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.08);
}

.btn-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.btn-discord:hover { border-color: #5865F2; color: #5865F2; }
.btn-tiktok:hover  { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-twitch:hover  { border-color: #9147FF; color: #9147FF; }

/* ===== BAS DE PAGE ===== */
.bottom-section {
    padding: 18px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.shop-bubble {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.legal-bubble {
    display: inline-flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 26px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    max-width: 720px;
    text-align: left;
    backdrop-filter: blur(10px);
}

.legal-icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }

.legal-text {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    font-family: Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.legal-text strong { color: rgba(255,255,255,0.55); font-weight: 700; }

/* ===== FOOTER ===== */
.site-footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.footer-copy { font-size: 11px; color: rgba(255,255,255,0.3); font-family: Arial, sans-serif; }
.footer-bull { font-size: 11px; color: rgba(255,255,255,0.15); }
.footer-link {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    font-family: Arial, sans-serif;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-link:hover { color: #33C6FF; }

/* ===== PAGES SPA ===== */
.page { display: none; }
.page.active { display: flex; flex-direction: column; }

#page-landing {
    height: 100vh;
    overflow: hidden;
    padding-top: 70px;
}

#page-home, #page-login, #page-contact {
    padding-top: 70px;
    min-height: 100vh;
    overflow-y: auto;
}

/* ===== CONTAINER ===== */
.container {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===== BOUTON RETOUR ===== */
.btn-back {
    padding: 10px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Arial Black', Arial, sans-serif;
    transition: all 0.2s;
}
.btn-back:hover { background: rgba(51,198,255,0.15); border-color: #33C6FF; color: #33C6FF; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-title { font-size: 22px; letter-spacing: 3px; }
    .hero-subtitle { font-size: 11px; margin-bottom: 40px; }
    .bottom-section { padding: 14px 20px; }
    .legal-bubble { max-width: 100%; }
    .site-footer { padding: 10px 20px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 18px; }
    .hero-socials { flex-direction: column; align-items: center; }
    .btn-social { width: 240px; justify-content: center; }
}