/* ── Base — structure commune ── */

html, body {
    overflow: hidden !important;
    height: 100% !important;
}

.main {
    min-height: unset !important;
    height: 100vh;
    overflow: hidden;
}

.content {
    padding: 0 !important;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.home-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero */
.hero-tagline {
    color: #e0e0e0;
    line-height: 1;
    text-align: center;
    text-shadow: 0 0 60px rgba(125,83,255,0.3);
}

.hero-sub {
    color: #555;
    text-align: center;
    font-family: var(--font-display), sans-serif;
}

.hero-btns {
    display: flex;
    justify-content: center;
}

.btn-discord { background: #5865f2; color: #fff; }

.btn-discord {
    font-family: 'Bebas Neue', sans-serif !important;
}

/* Stats cards */
.stats-cards {
    display: flex;
    justify-content: center;
    width: 100%;
}

.stat-card {
    flex: 1;
    background: rgba(10,10,10,0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: #7d53ff;
}

.stat-card:nth-child(even)::before {
    background: #c5412b;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    color: #e0e0e0;
    line-height: 1;
}

.stat-footer {
    display: flex;
    align-items: center;
}

.stat-footer i {
    color: #c5412b;
}

.stat-label {
    color: #555;
    text-transform: uppercase;
    font-family: var(--font-display), sans-serif;
}


/* ── 1080p (1920×1080 → 2559px de large) ── */
@media (max-width: 2559px) {

    .home-wrap {
        padding: 0 36px;
        margin-top: -50px;
        min-width: 600px;
    }

    .hero-logo {
        width: 600px;
        margin-bottom: 10px;
    }

    .hero-tagline {
        font-size: 48px;
        letter-spacing: 8px;
        margin-bottom: 8px;
    }

    .hero-sub {
        font-size: 18px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .hero-btns {
        gap: 16px;
        margin-bottom: 100px;
    }

    .btn-lg { font-size: 18px; padding: 12px 28px; }

    .stats-cards {
        gap: 16px;
        max-width: 1200px;
    }

    .stat-card {
        padding: 20px 16px;
        gap: 8px;
    }

    .stat-number {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .stat-footer { gap: 7px; }
    .stat-footer i { font-size: 16px; }

    .stat-label {
        font-size: 15px;
        letter-spacing: 2px;
    }

}


/* ── 1440p+ (2560px et plus) ── */
@media (min-width: 2560px) {

    .home-wrap {
        padding: 0 48px;
        margin-top: -70px;
        min-width: 800px;
    }

    .hero-logo {
        width: 900px;
        margin-bottom: 14px;
    }

    .hero-tagline {
        font-size: 72px;
        letter-spacing: 10px;
        margin-bottom: 12px;
    }

    .hero-sub {
        font-size: 24px;
        letter-spacing: 3px;
        margin-bottom: 28px;
    }

    .hero-btns {
        gap: 22px;
        margin-bottom: 140px;
    }

    .btn-lg { font-size: 22px; padding: 16px 36px; }

    .stats-cards {
        gap: 22px;
        max-width: 1600px;
    }

    .stat-card {
        padding: 28px 22px;
        gap: 10px;
    }

    .stat-number {
        font-size: 58px;
        letter-spacing: 3px;
    }

    .stat-footer { gap: 10px; }
    .stat-footer i { font-size: 20px; }

    .stat-label {
        font-size: 18px;
        letter-spacing: 3px;
    }

}
