/* ══ HERO PRINCIPAL ══ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-red);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://ddragon.leagueoflegends.com/cdn/img/champion/splash/Ambessa_0.jpg');
    background-size: cover;
    background-position: center 20%;
    filter: brightness(0.25) saturate(0.8);
    transform: scale(1.04);
    transition: transform 8s ease;
}

.hero:hover .hero-bg {
    transform: scale(1.0);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(8, 6, 8, 0.55) 0%, rgba(8, 6, 8, 0.1) 40%, rgba(8, 6, 8, 0.1) 60%, rgba(8, 6, 8, 0.95) 100%),
        linear-gradient(to right, rgba(139, 26, 26, 0.25) 0%, transparent 40%, transparent 60%, rgba(139, 26, 26, 0.15) 100%);
    pointer-events: none;
}

.hero-scanlines {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.08) 2px, rgba(0, 0, 0, 0.08) 4px);
    pointer-events: none;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 100px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 26, 26, 0.25);
    border: 1px solid rgba(139, 26, 26, 0.5);
    color: var(--gold);
    padding: 7px 20px;
    border-radius: 2px;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero-badge::before,
.hero-badge::after {
    content: '◆';
    font-size: 0.5rem;
    color: var(--gold-dim);
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.8rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: 0.06em;
    text-shadow: 0 0 80px rgba(139, 26, 26, 0.8), 0 4px 24px rgba(0, 0, 0, 0.9), 0 0 120px rgba(201, 168, 76, 0.15);
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, var(--red-bright) 0%, var(--gold) 45%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(139, 26, 26, 0.9));
}

.hero-subtitle {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.75rem, 2vw, 0.95rem);
    color: var(--gold-dim);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 32px;
    margin-top: 12px;
}

.hero-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto 28px;
    max-width: 320px;
}

.hero-ornament::before,
.hero-ornament::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim));
}

.hero-ornament::after {
    background: linear-gradient(90deg, var(--gold-dim), transparent);
}

.hero-ornament-icon {
    color: var(--red-bright);
    font-size: 0.8rem;
}

.hero-desc {
    max-width: 580px;
    margin: 0 auto 40px;
    color: rgba(232, 221, 208, 0.85);
    font-size: 1rem;
    line-height: 1.85;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-stats {
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 560px;
    backdrop-filter: blur(16px);
    background: rgba(8, 6, 8, 0.55);
}

.hero-stat {
    flex: 1;
    min-width: 120px;
    padding: 20px 16px;
    border-right: 1px solid rgba(201, 168, 76, 0.12);
    position: relative;
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 1px;
    background: var(--red);
}

.hero-stat-value {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* ══ PAGE HERO (Privacy / TOS) ══ */
.page-hero {
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-red);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://ddragon.leagueoflegends.com/cdn/img/champion/splash/Ambessa_0.jpg');
    background-size: cover;
    background-position: center 20%;
    filter: brightness(0.15) saturate(0.6);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(8, 6, 8, 0.5) 0%, rgba(8, 6, 8, 0.95) 100%),
        linear-gradient(to right, rgba(139, 26, 26, 0.2) 0%, transparent 60%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--red-bright);
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--red-bright);
}

.page-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    text-shadow: 0 0 40px rgba(139, 26, 26, 0.6);
}

.page-hero-sub {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

/* ══ HERO ACTIONS ══ */
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Cinzel', serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.25s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

/* Bouton principal Discord */
.hero-btn-primary {
    background: var(--red);
    border: 1px solid var(--red-bright);
    color: #fff;
}

.hero-btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

@keyframes hero-btn-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(139, 26, 26, 0);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(139, 26, 26, 0.15);
    }
}

.hero-btn-primary {
    animation: hero-btn-pulse 2.5s ease-in-out infinite;
}

.hero-btn-primary:hover {
    background: var(--red-bright);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 26, 26, 0.5);
    animation: none;
}

/* Bouton ghost GitHub */
.hero-btn-ghost {
    background: rgba(8, 6, 8, 0.6);
    border: 1px solid var(--border-red);
    color: var(--text-dim);
    backdrop-filter: blur(8px);
}

.hero-btn-ghost:hover {
    border-color: var(--gold-dim);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
    transform: translateY(-3px);
}

@media (max-width: 480px) {
    .hero-btn {
        width: 100%;
        justify-content: center;
        clip-path: none;
    }
}