/* =========================================
   1. VARIABLES & PALETTE "DEEP SPACE"
   ========================================= */
:root {
    /* --- COULEURS UNIFIÉES --- */
    /* Noir pur (Pour le fond des films) */
    --bg-void: #000000;
    /* Bleu Nuit Profond (Base du site) */
    --bg-abyss: #020617; 
    /* Bleu Surface (Pour les cartes et sections claires) */
    --bg-surface: #0f172a; 
    
    /* Dégradés de marque */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(to right, #8E2DE2, #4A00E0);
    
    /* Textes */
    --text-color: #f1f5f9;
    --text-muted: #94a3b8;
    
    /* Accents */
    --accent-color: #a78bfa;
    --accent-glow: 0 0 25px rgba(118, 75, 162, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    max-width: 100vw;
}

body {
    background-color: var(--bg-void);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: white; transition: 0.3s; }
ul { list-style: none; }

html {
    scroll-behavior: smooth; /* Active le défilement doux */
}

/* =========================================
   2. HEADER & NAV
   ========================================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: fixed;
    width: 100%;
    z-index: 100;
    /* Dégradé du haut vers le bas pour fondre le menu */
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo-container { display: flex; align-items: center; }
.logo-img {
    height: 45px; width: auto;
    mix-blend-mode: screen; 
    transition: transform 0.3s ease;
}
.logo-img:hover { transform: scale(1.05); filter: drop-shadow(0 0 8px rgba(100, 100, 255, 0.6)); }

/* Menu Central */
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: rgba(255,255,255,0.6); font-weight: 500; font-size: 0.9rem; position: relative; padding: 5px 0; }
.nav-links a:hover { color: white; }
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0;
    background-color: var(--accent-color); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.btn-login {
    background: var(--primary-gradient);
    padding: 8px 20px; border-radius: 50px;
    font-weight: 600; font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(118, 75, 162, 0.3);
}
.btn-login:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(118, 75, 162, 0.6); }

/* =========================================
   3. HERO SECTION (L'Origine de la lumière)
   ========================================= */
.hero {
    min-height: 100vh;
    /* MAGIE DES DÉGRADÉS :
       Centre : Un gris-bleu lumineux (#1e293b)
       Milieu : Le bleu abysse (--bg-abyss)
       Bords : Le noir total (--bg-void) pour fondre avec la section suivante
    */
    background: radial-gradient(circle at center, #1e293b 0%, var(--bg-abyss) 50%, var(--bg-void) 100%);
    
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: 120px 20px 40px 20px;
}

.hero-logo {
    width: 100%; max-width: 550px; height: auto;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 40px rgba(74, 0, 224, 0.4));
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.hero p {
    font-size: 1.3rem; color: var(--text-muted); max-width: 600px; margin-bottom: 40px;
}

/* Actions */
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.price-teaser {
    color: var(--accent-color); font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; font-size: 0.9rem; margin-bottom: -5px;
}
.btn-cta-main {
    background: var(--primary-gradient); padding: 16px 50px; border-radius: 50px;
    font-size: 1.1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(118, 75, 162, 0.5); transition: 0.3s; border: 2px solid transparent;
}
.btn-cta-main:hover {
    transform: scale(1.05); box-shadow: 0 0 50px rgba(118, 75, 162, 0.8);
    background: transparent; border-color: var(--accent-color);
}
.divider-text {
    font-size: 0.75rem; color: rgba(255,255,255,0.4); text-transform: uppercase;
    letter-spacing: 1px; display: flex; align-items: center; gap: 10px;
}
.divider-text::before, .divider-text::after {
    content: ""; height: 1px; width: 30px; background-color: rgba(255,255,255,0.1);
}

.hero-apps { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
.app-pill {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, 0.05); /* Très subtil */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px; border-radius: 30px;
    color: white; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease;
}
.app-pill:hover { background: white; color: black; transform: translateY(-3px); }

/* =========================================
   4. CATALOGUE (Le Noir Profond)
   ========================================= */
.catalog-wrapper {
    /* Fond noir pur pour faire ressortir les affiches */
    background-color: var(--bg-void);
    padding-top: 20px; padding-bottom: 60px;
    position: relative;
    /* Petit dégradé en haut pour adoucir l'arrivée depuis le Hero */
    background: linear-gradient(to bottom, var(--bg-void) 0%, var(--bg-void) 100%);
}

.row-title {
    text-align: left; margin-left: 5%; margin-bottom: 15px; color: white;
    font-size: 1.1rem; font-weight: 700; text-transform: uppercase;
    border-left: 4px solid var(--accent-color); padding-left: 15px;
}

/* --- TAPIS ROULANT ULTRA FLUIDE --- */
.movie-grid {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
    /* Masque progressif sur les bords pour l'élégance */
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.movie-track {
    display: flex;
    gap: 0; /* IMPÉRATIF : On utilise les marges des cartes, pas de gap */
    width: max-content;
    
    /* Active l'accélération carte graphique pour éviter les saccades */
    transform: translate3d(0, 0, 0); 
    will-change: transform;
    
    /* L'animation va de 0 à -25% (un quart de la bande totale) */
    animation: scroll 60s linear infinite; 
}

/* Pause quand la souris est dessus */
.movie-track:hover {
    animation-play-state: paused;
}

/* La carte du film */
.movie-card-wrapper {
    flex: 0 0 auto; /* Interdit l'écrasement */
    width: 150px;   /* Largeur fixe */
    margin-right: 15px; /* Espace fixe inclus dans la boucle */
}

/* Images */
.movie-poster {
    width: 100%;
    height: 225px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    display: block;
    transition: transform 0.3s;
}

.movie-poster:hover {
    transform: scale(1.08);
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0,0,0,0.8);
}

/* Correction Albums Musique */
.music-cover {
    aspect-ratio: 1/1;   /* Force le carré */
    width: 100%;         /* S'adapte au wrapper (150px PC / 120px Mobile) */
    height: auto;
    border-radius: 8px;
    display: block;      /* Évite les espaces fantômes */
}

/* Animation Mathématique : De 0 à -25% */
@keyframes scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-25%, 0, 0); }
}

/* --- DANS LA SECTION MOBILE (Fin du fichier) --- */
@media (max-width: 768px) {
    /* ... tes autres règles mobile ... */

    /* CACHER L'INDICATEUR DE SCROLL SUR MOBILE */
    .scroll-indicator {
        display: none; 
    }
}

/* Animation Mathématique Parfaite */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* On déplace de la moitié exacte */
    }
}

/* Adaptation Mobile */
@media (max-width: 768px) {
    .movie-track { animation-duration: 30s; }
    .movie-card-wrapper { width: 120px; margin-right: 10px; }
    .movie-poster { height: 180px; }
    .music-cover { width: 140px; height: 140px; }
}

/* =========================================
   BADGE STRIPE CLIMATE
   ========================================= */
.climate-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(16, 185, 129, 0.05); /* Fond vert très léger et transparent */
    border: 1px solid rgba(16, 185, 129, 0.2); /* Bordure verte subtile */
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 50px; /* Espace avant les cartes */
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    max-width: 90%;
}

.climate-badge:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.15);
}

.climate-icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #10b981; /* Vert émeraude */
    color: #020617; /* Icône sombre */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
}

.climate-text {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.climate-text strong {
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.climate-text span {
    color: #a7f3d0; /* Vert très clair pour le texte */
    font-size: 0.8rem;
    font-weight: 400;
}

/* Adaptation Mobile */
@media (max-width: 768px) {
    .climate-badge {
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        text-align: center;
        gap: 10px;
    }
    
    .climate-text {
        text-align: center;
    }
    
    .climate-icon-box {
        margin-bottom: 5px;
    }
}

/* =========================================
   5. PRICING (Transition Douce vers le Bleu)
   ========================================= */
.pricing-section {
    padding: 100px 20px; text-align: center;
    /* TRUC VISUEL : On part du Noir (Haut) vers le Bleu Abysse (Bas) */
    background: linear-gradient(to bottom, var(--bg-void) 0%, var(--bg-abyss) 100%);
}

.section-title { font-size: 2.5rem; margin-bottom: 50px; }

.pricing-container {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 30px;
    max-width: 1200px; margin: 0 auto;
}

.card {
    /* Fond semi-transparent pour laisser voir le dégradé derrière */
    background-color: rgba(15, 23, 42, 0.6); 
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px; padding: 40px 30px;
    width: 100%; max-width: 350px;
    display: flex; flex-direction: column; justify-content: space-between;
    transition: all 0.4s ease; position: relative;
}
.card:hover { transform: translateY(-10px); border-color: var(--accent-color); box-shadow: var(--accent-glow); }

.popular-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--secondary-gradient); padding: 4px 15px; border-radius: 20px;
    font-size: 0.75rem; font-weight: bold; text-transform: uppercase;
}

.card h3 { font-size: 1.5rem; margin-bottom: 10px; color: white; }
.card .price { font-size: 3rem; font-weight: 800; margin-bottom: 20px; color: var(--accent-color); }
.card .price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.features li {
    margin-bottom: 15px; color: #cbd5e1; border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 10px; font-size: 0.9rem; text-align: left;
}
.btn-subscribe {
    display: block; width: 100%; padding: 15px; background: transparent;
    border: 2px solid var(--accent-color); color: white; font-weight: bold;
    border-radius: 12px; margin-top: 20px; transition: 0.3s;
}
.btn-subscribe:hover, .btn-subscribe.glow { background: var(--secondary-gradient); border-color: transparent; }

/* =========================================
   6. FAQ & REQUEST (Fond Bleu Abysse)
   ========================================= */
.faq-section {
    padding: 80px 20px;
    /* On reste sur le Bleu Abysse défini à la fin du Pricing */
    background-color: var(--bg-abyss);
    text-align: center;
}
.faq-container { max-width: 800px; margin: 0 auto; text-align: left; }
.faq-item {
    background-color: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05); margin-bottom: 15px;
    border-radius: 8px; overflow: hidden; transition: all 0.3s;
}
.faq-item:hover { border-color: var(--accent-color); background-color: rgba(30, 41, 59, 0.5); }
summary { padding: 20px; font-weight: bold; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: white; }
summary i { font-size: 1.2rem; color: var(--accent-color); transition: transform 0.3s; }
details[open] summary i { transform: rotate(45deg); }
.faq-content { padding: 0 20px 20px 20px; color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; animation: fadeIn 0.5s; }

/* Section Jellyseerr */
.request-section {
    padding: 80px 20px; text-align: center;
    background: linear-gradient(to bottom, var(--bg-abyss) 0%, #000 100%); /* Retour au noir pour le footer */
}
.jellyseerr-box {
    background: linear-gradient(135deg, #1e293b, #0f172a); border: 1px solid #334155;
    padding: 40px; border-radius: 20px; max-width: 800px; margin: 0 auto;
}
.btn-secondary {
    display: inline-block; margin-top: 30px; padding: 12px 35px;
    background: white; color: var(--bg-abyss); border-radius: 30px; font-weight: bold;
}
.btn-secondary:hover { background: #cbd5e1; }

/* =========================================
   7. FOOTER
   ========================================= */
footer {
    padding: 40px; text-align: center; font-size: 0.8rem;
    color: var(--text-muted);
    background-color: #000; /* Noir pur final */
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* =========================================
   8. MOBILE & ANIMATIONS
   ========================================= */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) {
    .nav-links { display: none; } /* Cache menu PC */
    .hero-logo { max-width: 300px; }
    .btn-cta-main { padding: 12px 30px; font-size: 1rem; width: 100%; }
    .hero-apps { flex-direction: row; gap: 10px; }
    .app-pill { padding: 8px 15px; font-size: 0.8rem; }
    .movie-track { animation-duration: 30s; }
    .pricing-container { flex-direction: column; align-items: center; }
}

/* BOUTON GESTION (Style Alerte) */
.manage-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    background: linear-gradient(45deg, #b91c1c, #ef4444); /* Rouge vif */
    border: 1px solid #f87171;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    margin-top: 20px;
    text-decoration: none;
}

.manage-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

/* --- SCROLL INDICATOR --- */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 1.5rem;
    margin-top: 5px;
    color: var(--accent-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* =========================================
   PAGES SPÉCIFIQUES (Activation, Succès, Maintenance)
   ========================================= */

/* --- Container Global Centré --- */
.activation-container, 
.success-container, 
.maintenance-container {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    background: radial-gradient(circle at center, #1e293b 0%, #020617 100%);
}

/* --- Boîte de Formulaire (Activation) --- */
.form-box {
    background: rgba(30, 41, 59, 0.8);
    padding: 40px;
    border-radius: 20px;
    max-width: 450px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-box input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: #0f172a;
    border: 1px solid #334155;
    color: white;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}

.form-box input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(167, 139, 250, 0.2);
}

.form-box label {
    display: block;
    text-align: left;
    color: var(--accent-color);
    font-weight: bold;
    margin-top: 15px;
    font-size: 0.9rem;
}

/* Alerte Mot de Passe */
.alert-password {
    background-color: rgba(234, 179, 8, 0.1);
    border: 1px solid #eab308;
    color: #fef08a;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
    font-size: 0.9rem;
}

/* --- Page Succès --- */
.icon-success {
    font-size: 5rem;
    color: #4ade80;
    margin-bottom: 20px;
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-box-info {
    background: rgba(255,255,255,0.05); 
    padding: 30px; 
    border-radius: 15px; 
    max-width: 500px; 
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
}

/* --- Page Maintenance (Coming Soon) --- */
.maintenance-icon {
    font-size: 5rem;
    color: #f59e0b;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.maintenance-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(to right, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Animations --- */
@keyframes popIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.8; } 100% { transform: scale(1); opacity: 1; } }

/* =========================================
   CORRECTIFS MOBILE (URGENT)
   ========================================= */

@media (max-width: 768px) {
    
    /* 1. On cache le texte "Explorer le catalogue" qui gêne les boutons */
    .scroll-indicator {
        display: none !important;
    }

    /* 2. On force les albums de musique à ne pas déborder */
    /* On cible spécifiquement l'image qui a la classe music-cover */
    img.music-cover {
        width: 100% !important;  /* Prend la largeur du wrapper (120px), pas plus ! */
        height: auto !important; /* La hauteur s'adapte pour rester carré */
        aspect-ratio: 1/1;       /* Force le format carré */
        object-fit: cover;       /* L'image remplit le carré sans être déformée */
    }

    /* Sécurité supplémentaire pour le conteneur des films/musiques */
    .movie-card-wrapper {
        width: 120px !important;    /* Largeur fixe sur mobile */
        margin-right: 15px !important; /* Espace obligatoire entre chaque affiche */
        flex-shrink: 0 !important;  /* Interdit au navigateur de les écraser */
    }
}

/* =========================================
   PAGE ERREUR 404 (Style Glitch)
   ========================================= */

.error-container {
    min-height: 85vh; /* Prend presque tout l'écran */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #1e293b 0%, #000 100%);
    padding: 20px;
    overflow: hidden; /* Important pour l'effet glitch */
}

/* Le Gros Chiffre 404 */
.glitch {
    font-size: 8rem;
    font-weight: 900;
    color: white;
    position: relative;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0px var(--primary-color), -2px -2px 0px var(--accent-color);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

/* Création des doubles fantômes pour l'effet */
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000; /* Cache le texte original par moments */
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 2s infinite linear alternate-reverse;
}

.error-subtitle {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.error-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.error-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Animation du Glitch */
@keyframes glitch-anim {
    0% { transform: translate(0) }
    20% { transform: translate(-2px, 2px) }
    40% { transform: translate(-2px, -2px) }
    60% { transform: translate(2px, 2px) }
    80% { transform: translate(2px, -2px) }
    100% { transform: translate(0) }
}

/* Animation Glitch corrigée pour couvrir tout le texte */
@keyframes glitch-anim-2 {
    /* On définit des tranches aléatoires sur toute la hauteur (0 à 150px) */
    0% { clip: rect(10px, 9999px, 30px, 0); }
    5% { clip: rect(80px, 9999px, 100px, 0); }
    10% { clip: rect(12px, 9999px, 50px, 0); }
    15% { clip: rect(120px, 9999px, 140px, 0); }
    20% { clip: rect(40px, 9999px, 60px, 0); }
    25% { clip: rect(90px, 9999px, 110px, 0); }
    30% { clip: rect(10px, 9999px, 130px, 0); }
    35% { clip: rect(60px, 9999px, 85px, 0); }
    40% { clip: rect(20px, 9999px, 40px, 0); }
    45% { clip: rect(100px, 9999px, 115px, 0); }
    50% { clip: rect(0px, 9999px, 20px, 0); }
    55% { clip: rect(70px, 9999px, 90px, 0); }
    60% { clip: rect(130px, 9999px, 150px, 0); }
    
    /* Pause : On cache les fantômes par moment pour faire clignoter */
    61%, 100% { clip: rect(0, 0, 0, 0); } 
}

/* Mobile */
@media (max-width: 768px) {
    .glitch { font-size: 5rem; }
    .error-subtitle { font-size: 1.5rem; }
}