/* ============================================
   NIGHTANGELS.FR - components.CSS
   UNIVERSAL COMPONENTS 2026
============================================ */
/* ===========================================  
   HERO  
============================================ */
.ru-hero{  
    position:relative;  
    justify-content:center;  
    align-items:center;  
    margin:40px auto 20px;
    overflow:hidden;  
}  
.ru-hero-inner{  
    position:relative;  
    z-index:2;  
    width:100%;  
    max-width:1100px;  
    text-align:center;  
}  
.ru-subtitle{  
    margin-bottom:20px;  
    font-size:1.2rem;  
    letter-spacing:4px;  
    text-transform:uppercase;  
    color:var(--theme-text);    
}  
.ru-title{  
    font-size:2rem;  
    line-height:1;  
    letter-spacing:2px;  
    text-transform:uppercase;  
    color:var(--accent-color);  
    text-shadow:  
    0 0 20px rgba(255,255,255,0.05),  
    0 0 60px rgba(198,164,106,0.08);  
}  
.ru-text{  
    width:min(900px,100%);  
    margin:20px auto 0;  
    font-size:1.2rem;  
    line-height:1.2;  
    color:var(--theme-text);  
} 
/* =============================================
   HERO
============================================= */
body[data-page="royaume"] .royaume-hero{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:100px 40px 20px;
    text-align:center;
}
body[data-page="royaume"] .royaume-hero-inner{
    width:100%;
    max-width:1100px;
}
body[data-page="royaume"] .royaume-subtitle{
    margin-bottom:26px;
    font-size:1rem;
    letter-spacing:7px;
    text-transform:uppercase;
    color:var(--royaume-text-secondary);
}
body[data-page="royaume"] .royaume-title{
    font-size:2.5rem;
    line-height:1;
    text-transform:uppercase;
    color:var(--accent-color);
    text-shadow:
        0 0 30px rgba(255,255,255,.04),
        0 0 60px color-mix(
            in srgb,
            var(--theme-primary) 18%,
            transparent
        );
}
body[data-page="royaume"] .royaume-description{
    width:min(800px,100%);
    margin:20px auto;
    font-size:1.2rem;
    line-height:1.5;
    color:var(--royaume-text-secondary);
}
/* ============================================
   HEADER TITLE
============================================ */
.na-section{
    --section-padding:120px 20px;
    width:100%;
    margin:0 auto;
    padding:var(--section-padding);
}
.na-section__header{
    --section-header-width:800px;
    max-width:var(--section-header-width);
    margin:40px auto;
    text-align:center;
}
.na-section__eyebrow{
    margin:0 0 10px;
    color:var(--theme-title);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:1.2rem;
}
.na-section__title{
    margin:0;
    color:var(--accent-color);
    font-size:2.8rem;
    line-height:1;
}
.na-section__description{
    max-width:var(--section-header-width);
    margin:20px auto 0;
    color:var(--theme-text-secondary);
    line-height:1.5;
    font-size:1.2rem;
}
/* ============================================
   NA RU SECTION - TITLE
============================================ */
.ru-section-bloc{
    margin:20px auto;
}
.ru-section__line{
    width:240px;
    height:2px;
    margin-bottom:20px;
    background:
    linear-gradient(
    to right,
    var(--univers-gold),
    transparent
    );
}
.ru-section__subtitle{
    margin-bottom:16px;
    font-size:1rem;
    letter-spacing:5px;
    text-transform:uppercase;
    color:var(--univers-gold); 
}
.ru-section__title{
	font-size:2rem;
    line-height:1;
    text-transform:uppercase;
    color:var(--accent-color);
    text-shadow:
        0 0 30px rgba(255,255,255,.04),
        0 0 60px color-mix(
            in srgb,
            var(--theme-primary) 18%,
            transparent
        );
    padding:20px;
    width:min(800px,100%);
    margin:auto;
}
/* ============================================
   RU GRID
============================================ */
.ru-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(360px,1fr));
    gap:20px;
}
.ru-grid-twoo{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    align-items:stretch;
}
.na-cards{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(360px,1fr));
    gap:20px;
}
/* ============================================
   RU CARD
============================================ */
.ru-card{
    position:relative;
    overflow:hidden;
    border-radius:34px;
    background:
    linear-gradient(
        145deg,
        rgba(14,14,16,.94),
        rgba(4,4,5,.98)
    );
    border:1px solid rgba(255,255,255,.08);
    transition:
        transform .5s ease,
        border-color .5s ease,
        box-shadow .5s ease;
}
.ru-card:hover{
    transform:translateY(-8px);
    border-color:
    color-mix(
        in srgb,
        var(--theme-primary) 40%,
        rgba(255,255,255,.08)
    );
    box-shadow:
    0 0 40px color-mix(
        in srgb,
        var(--theme-primary) 14%,
        transparent
    );
}

.ru-card__image{
    position:relative;
    aspect-ratio:16/10;
    overflow:hidden;
}

.ru-card__image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:
        transform 1s ease,
        filter 1s ease;
}

.ru-card:hover .ru-card__image img{

    transform:scale(1.05);

    filter:
        brightness(.75)
        saturate(1.05);
}

.ru-card__content{

    padding:34px;
}

.ru-card__category{

    margin-bottom:18px;

    font-size:.72rem;

    letter-spacing:3px;

    text-transform:uppercase;

    color:var(--theme-primary);
}

.ru-card__title{

    margin-bottom:16px;

    font-size:2rem;

    line-height:1;
}

.ru-card__description{

    line-height:1.95;

    color:var(--royaume-text-secondary);
}
/* =========================================
   RU CARD - CHARACTER
========================================= */
.ru-card--character .ru-card__image{
    aspect-ratio:4/5;
}
.ru-card--character .ru-card__image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:top center;
}

.ru-card--character .ru-card__content{

    text-align:center;
}

.ru-card--character .ru-card__title{
    font-size:2.2rem;
}

.ru-card--character .ru-button{

    display:flex;
}
/* =========================================
   BUTTONS RU
========================================= */
.ru-button{
    position:relative;
    overflow:hidden;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    margin:30px auto 0;
    min-width:260px;
    min-height:62px;
    padding:0 34px;
    border-radius:24px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:1rem;
    font-weight:600;
    color:#fff;
    border:1px solid rgba(255,255,255,.08);
    background:
    linear-gradient(
        145deg,
        color-mix(
            in srgb,
            var(--portal-color) 18%,
            rgba(0,0,0,.92)
        ),
        rgba(0,0,0,.96)
    );
    box-shadow:
        0 0 25px color-mix(
            in srgb,
            var(--portal-color) 12%,
            transparent
        ),
        inset 0 0 18px rgba(255,255,255,.03);
    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}
.ru-button:hover{
    transform:
        translateY(-5px)
        scale(1.02);
    border-color:
        color-mix(
            in srgb,
            var(--portal-color) 55%,
            rgba(255,255,255,.08)
        );
    box-shadow:
        0 0 25px color-mix(
            in srgb,
            var(--portal-color) 25%,
            transparent
        ),
        0 0 70px color-mix(
            in srgb,
            var(--portal-color) 18%,
            transparent
        );
}
.ru-button::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:70%;
    height:100%;
    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.16),
        transparent
    );
    transform:skewX(-25deg);
    transition:.8s ease;
}
.ru-button:hover::before{
    left:140%;
}
/* =========================================
   BUTTONS NA
========================================= */
.na-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:100%;
    max-width:420px;
    min-height:58px;
    padding:16px 28px;
    margin:10px 5px;
    border:2px solid var(--btn-border,var(--theme-primary));
    border-radius:14px;
    box-sizing:border-box;
    text-decoration:none;
    text-transform:uppercase;
    font-family:'Cinzel',serif;
    font-size:.82rem;
    font-weight:700;
    letter-spacing:2px;
    color:var(--btn-text,var(--theme-text));
    cursor:pointer;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        border-color .25s ease;
}
.na-btn:hover{
    transform:translateY(-2px);
    box-shadow:
        0 8px 25px var(--btn-glow,var(--theme-glow));
}
.na-btn:active{
    transform:scale(.97);
}
/* =========================================
   PRIMARY
========================================= */
.na-btn--primary{
    background:var(--btn-bg,var(--theme-primary));
    border-color:var(--btn-border,var(--theme-primary));
    color:var(--btn-text,var(--theme-text));
    box-shadow:
        0 8px 25px var(--btn-glow,var(--theme-glow));
}
/* =========================================
   SECONDARY
========================================= */
.na-btn--secondary{
    background:rgba(0,0,0,.75);
    border-color:var(--btn-border,var(--theme-primary));
    color:var(--btn-text,var(--theme-text));
}
/* =========================================
   HERO SECONDARY
========================================= */
.hero--secondary .hero__content{
    max-width:650px;
}
.hero--secondary .hero__buttons{
    display:flex;
    gap:14px;
}
.hero--secondary .hero__buttons .na-btn{
    flex:1;
    text-align:center;
    white-space:nowrap;
}
/* ============================================
   NEWS
============================================ */
.news-card{
    overflow:hidden;
    border-radius:30px;
    background:
    linear-gradient(
        145deg,
        rgba(15,15,18,.94),
        rgba(0,0,0,.96)
    );
    border:
    1px solid var(--theme-border);
    box-shadow:
    0 0 30px rgba(0,0,0,.35);
    transition:
    .35s ease;
}
.news-card:hover{
    transform:
    translateY(-6px);
    border-color:
    var(--accent-color);
    box-shadow:
    0 0 35px var(--theme-glow);
}
.news-card__image{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
}
.news-card__content{
    padding:30px;
    display:flex;
    flex-direction:column;
    gap:18px;
}
.news-card__category{
    color:var(--accent-color);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:.75rem;
    font-weight:700;
}
.news-card__title{
    margin:0;
    color:var(--theme-title);
    font-size:2rem;
}
.news-card__subtitle{
    color:var(--theme-text);
    font-size:1rem;
    opacity:.85;
}
.news-card__description{
    color:var(--theme-text-secondary);
    line-height:1.8;
    margin:0;
}
.na-news__date{
    margin:8px 0 20px;
    font-size:.82rem;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:rgba(255,255,255,.55);
}
.news-card__older{
    margin:1.6rem 0;
    padding-top:1rem;
    border-top:1px solid var(--accent-color);
}
.news-card__older-title{
    margin-bottom:.8rem;
    font-size:.75rem;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:#888;
}
.news-card__older-link{
    display:block;
    padding:.35rem 0;
    color:#d8d8d8;
    text-decoration:none;
    transition:.25s;
}
.news-card__older-link:hover{
    color:var(--accent-color);
    transform:translateX(6px);
}
.news-card__archive{
    display:inline-block;
    margin-top:18px;
    color:var(--theme-primary);
    text-decoration:none;
    font-weight:700;
    transition:.25s;
}
.news-card__archive:hover{
    opacity:.8;
}
/* ============================================
   MUSIC
============================================ */
.music-card{
    border-radius:30px;
    overflow:hidden;
    background:linear-gradient(
        145deg,
        rgba(15,15,18,.94),
        rgba(0,0,0,.96)
    );
    border:1px solid var(--theme-border);
    transition:.35s ease;
}
.music-card.active{
    border-color:var(--music-color);
}
.music-card__player{
    aspect-ratio:16/9;
    background:#000;
}
.music-card__player iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
}
.music-card__list{
    display:flex;
    flex-direction:column;
}
.music-card__item{
    width:100%;
    padding:22px 28px;
    border:none;
    border-top:
    1px solid rgba(255,255,255,.06);
    background:transparent;
    cursor:pointer;
    text-align:left;
    color:var(--theme-text);
    transition:.3s ease;
}
.music-card__item strong{
    display:block;
    margin-bottom:6px;
    font-size:1rem;
    font-weight:600;
}
.music-card__item span{
    color:var(--theme-text-secondary);
    font-size:.85rem;
}
.music-card__item:hover{
    background:
    rgba(255,255,255,.03);
    color:var(--accent-color);
}
/* ============================================
   ACTIVE MUSIC
============================================ */
.music-card__item.active{
    color:var(--music-color);
    border-left:4px solid var(--music-color);
    background:
    color-mix(
        in srgb,
        var(--music-color) 18%,
        transparent
    );
}
.music-card__item.active strong{
    color:var(--music-color);
}