   html {
        scroll-behavior: smooth;
    }

  @font-face {
    font-family: 'Aurebesh';
    src: url('Aurebesh Bold.otf'); /* Vérifie bien le nom de ton fichier */
}

    body {
        margin: 0;
        color: #fa25cb;
        font-family: "Orbitron", sans-serif;
        background-color: black;
    }

    .container {
        scroll-snap-type: y mandatory;
        overflow-y: scroll;
        height: 100vh;
    }

    section {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100vh;
        scroll-snap-align: start;
        text-align: center;
        padding: 0 20px;
        opacity: 0.2;
        transition: opacity 0.6s ease-in-out;
    }

    section.active-section {
        opacity: 1;
    }

    section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

    .content-block, nav, .discord-button {
        z-index: 2;
        position: relative;
    }

    h1 {
    width: fit-content; 
    min-width: 300px; /* Optionnel : pour garder une taille minimum esthétique */
    height: auto;
    
    padding: 40px 80px; 

    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Orbitron", sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
   
    background-image: url('title.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    
    margin-left: auto;
    margin-right: auto;
}

    p {
        font-size: 1.2rem;
        max-width: 600px;
        line-height: 1.6;
        border: 30px solid transparent;
        border-image-source: url('purple.png');
        border-image-slice: 40 fill;
        border-image-repeat: stretch;
        color: #ffffff;
	text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    }

    #home, #about, #recruit, #contact {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #home { background-image: url('homepage.png'); }
    #about { background-image: url('Who we are.png'); }
    #recruit { background-image: url('Recruit.png'); }
    #contact {
        background-image: url('Social.png');
        padding-bottom: 5vh;
        box-sizing: border-box;
    }

    nav {
        position: fixed;
        top: 70px;
        right: 20px;
    }

    nav a {
        display: block;
        color: #ffffff;
	text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
        text-decoration: none;
        margin: 5px;
        transition: all 0.3s ease;
        font-family: "Orbitron", sans-serif;
        border: 20px solid transparent;
        border-image-source: url('menu.png');
        border-image-slice: 30 fill;
        border-image-repeat: stretch;
    }

    nav a:hover {
        color: red;
        transform: scale(1.05);
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    }

    .discord-button {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        color: #ffffff;
	text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
        text-decoration: none;
        font-family: "Orbitron", sans-serif;
        background-image: url('join.png');
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
        transition: all 0.3s ease;
        width: 180px;
        height: 55px;
    }

    .discord-button:hover {
        transform: scale(1.05);
        color: red;
    }

    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .social-links {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 100px;
        margin-top: auto;
        z-index: 2;
        position: relative;
    }

    .deploy-button {
        position: relative;
        display: block;
        width: 64px;
        height: 64px;
    }

    .button-asset,
    .social-icon-hidden {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.4s ease-in-out;
        max-width: 100%;
    }

    .social-icon-hidden {
        color: #00ffff;
        font-size: 32px;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    
    .button-asset {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    
    .deploy-button:hover .social-icon-hidden {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    .deploy-button:hover .button-asset {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }

    .contact-content-wrapper {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .deploy-widget {
        position: fixed;
        bottom: 90px;
        right: 80px;
        width: 80px;
        height: 80px;
        z-index: 1000;
        cursor: pointer;
    }

    .widget-asset {
        width: 100%;
        height: 100%;
    }

    .widget-asset,
    .widget-frame-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    }

    .widget-frame-wrapper {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
        pointer-events: none; 
    }
    
    .widget-asset {
        opacity: 1;
        transform: scale(1);
    }

    .deploy-widget:hover .widget-frame-wrapper {
        opacity: 1;
        transform: scale(1) translateY(0);
        pointer-events: auto;
    }
    
    .deploy-widget:hover .widget-asset {
        opacity: 0;
        transform: scale(0.5);
    }

.twitch-responsive-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-top: 30px;
}
.twitch-responsive-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.body-tv {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('carbonite-tv.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.body-market {
    background-color: #0c0c1e;
    background-image: url('your-market-background.png');
    background-size: cover;
    background-attachment: fixed;
    color: #a9a9c9;
}

.market-container {
    display: flex;
    gap: 20px;
    padding-top: 85px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    align-items: flex-start;

}

.market-filters {
    flex-basis: 280px;
    flex-shrink: 0;
    border: 40px solid transparent; 
    border-image-source: url('panel-frame.png');
    border-image-slice: 50 fill;
    border-image-repeat: stretch;
    padding: 20px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.market-filters h2 {
    font-family: 'Orbitron', sans-serif;
    color: #00ffff;
    margin-top: 0;
    text-align: center;
}
.filter-group {
    margin-bottom: 20px;
}
.filter-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}
.filter-group input, .filter-group select, .search-button {
    width: 100%;
    padding: 8px;
    border-radius: 3px;
    border: 1px solid #4a4a8a;
    background-color: #0c0c1e;
    color: #a9a9c9;
    font-family: 'Lato', sans-serif;
}
.search-button {
    background-color: #00ffff;
    color: #0c0c1e;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.market-listings {
    flex-grow: 1;
    margin-top: 180px; 
}

.market-listings {
    flex-grow: 1;

}

.market-listings h1 {
    text-align: center; 
    margin-top: -50px; 
    margin-bottom: 40px; 
    font-family: "Orbitron", sans-serif;
    font-size: 3rem; 
    text-transform: uppercase;
    color: white;
}

table {
    width: 100%;
    border-collapse: collapse;
    position: relative;
    background-color: transparent;
}

table::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -25px;
    bottom: -10px;
    left: -330px;
    right: -50px;
    background-image: url('listing-bg.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
}

th, td {
    padding: 20px 35px;
    text-align: left;
    border-bottom: none;
    vertical-align: middle;
}

tbody .item-row {
    background-image: url('row-asset.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transition: all 0.2s ease-in-out;
}

tbody tr:hover {
    transform: scale(1.02);
    filter: brightness(1.2);
    cursor: pointer;
}

.price {
    color: #FFD700;
    font-weight: bold;
    text-align: right;
}

.price::after {
    content: '';
    display: inline-block;
    background-image: url('credit-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    vertical-align: middle;
}

.pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}


.pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.pagination a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 50px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none;
    color: #a9a9c9;
    text-decoration: none;
    font-family: "Orbitron", sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .pagination-prev {
    background-image: url('votre-asset-previous.png');
}

.pagination .pagination-next {
    background-image: url('votre-asset-next.png');
}

.pagination a:hover {
    color: white;
    filter: brightness(1.2);
    transform: scale(1.05);
}

.toggle-container {
    margin-bottom: -50px;
    border-bottom: 1px solid #4a4a8a;
    padding-bottom: -50x;
}

.sell-form {
    text-align: center;
    margin-top: 65px;
}

.sell-title {
    margin-top: -65px;
}


.sell-button-submit {
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    color: #00ffff;
    background-image: url('votre-asset-list-item.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 60px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.sell-button-submit:hover {
    color: white;
    filter: brightness(1.2);
}
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    text-align: left;
}

.filter-group input, 
.filter-group select, 
.form-group input {
    width: 100%;
    padding: 10px;
    border-radius: 3px;
    border: 1px solid #4a4a8a;
    background-color: #0c0c1e;
    color: #a9a9c9;
    font-family: 'Lato', sans-serif;
    box-sizing: border-box;
}

#view-toggle-btn {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #00ffff;
    
    background-color: transparent;
    border: 25px solid transparent;
    
    border-image-source: url('votre-bouton-asset.png');
    border-image-slice: 30 fill;
    border-image-repeat: stretch;
    
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

#view-toggle-btn:hover {
    
    transform: scale(1.02);
    filter: brightness(1.2);
    color: white;
}

.tab-pane {
    display: none;
}


.tab-pane.active {
    display: block;
}

@media (max-width: 768px) {
    /* Styles pour la page d'accueil sur mobile */
    .home-section h1 {
        width: 90%;
        font-size: 2rem;
        height: auto;
        min-height: 100px;
    }
    .home-section p {
        max-width: 90%;
        font-size: 1rem;
        border-width: 20px;
    }
    nav {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    nav a {
        width: 180px;
    }
    
    /* Styles pour la page Market sur mobile */
    .market-container {
        flex-direction: column;
        padding: 80px 15px 15px 15px;
    }
    .market-filters {
        flex-basis: auto; /* La largeur s'adapte */
    }
    th, td {
        padding: 8px;
        font-size: 14px;
    }
    .market-listings h1 {
        font-size: 2rem;
    }

    .deploy-button {
        width: 50px;
        height: 50px;
    }

    .social-icon-hidden {
        font-size: 24px;
    }

    .deploy-widget { /* On utilise la classe du widget deployable */
        display: none; /* On cache le widget Discord sur mobile */
    }
}

@keyframes pulse-glitch {
    0% {
        opacity: 0.5;
        transform: scale(1) rotate(var(--rotation));
        filter: brightness(1.2) contrast(1.2);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(var(--rotation));
        filter: brightness(2) drop-shadow(0 0 20px rgba(255, 0, 0, 0.8));
    }
    100% {
        opacity: 0.5;
        transform: scale(1) rotate(var(--rotation));
        filter: brightness(1.2) contrast(1.2);
    }
}

.pulsating-decor-fixed {
    position: fixed; /* Il reste à l'écran même quand tu scrolles */
    bottom: 90px;    /* 20px du bas */
    left: 50px;      /* 20px de la gauche */
    z-index: 100;    /* Au-dessus du fond mais sous les menus si besoin */
    pointer-events: none;
    width: 400px;    /* Taille de l'asset */
    height: auto;
    animation: pulse-glitch 3s infinite ease-in-out;
}

#musicButton {
    position: fixed;
    top: 70px;
    left: 20px; 
    z-index: 1002;
    padding: 10px 15px;
    font-family: 'Orbitron', sans-serif;
    background-color: #1a1a1a;
    color: #ff0000; 
    border: 2px solid #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

#musicButton:hover {
    background-color: #ffe81f;
    color: #1a1a1a;
}

.deploy-widget-click {
    position: fixed;
    top: 580px;    /* Ajuste cette valeur pour le descendre plus ou moins sous le menu */
    right: 20px;   /* Aligné avec la marge du menu nav */
    width: 220px;   /* Taille fixe pour éviter qu'il ne soit ratatiné */
    height: 120px;  /* Taille fixe */
    z-index: 1000; /* Assez haut pour être visible */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;

}

.widget-text {
    position: absolute;
    font-family: "Orbitron", sans-serif;
    font-size: 20px; /* Ajuste la taille selon tes besoins */
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.8); /* Lueur rouge Empire */
    pointer-events: none; /* Très important : le clic doit traverser le texte pour activer le bouton */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 25px;
    pointer-events: none;
}

.widget-trigger {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
}

/* Le cadre de la vidéo */
.video-frame-wrapper {
    position: absolute;
    top: 50;
    right: 250px;
    width: 480px;  /* Augmenté de 320px à 480px */
    height: 270px; /* Conserve le ratio 16:9 */
    
    background: black;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    border: 30px solid transparent; /* Épaisseur du cadre */
    border-image-source: url('ton-cadre-hud.png'); /* Ton fichier image ici */
    border-image-slice: 40 fill; /* Ajuste selon ton image */
    border-image-repeat: stretch;

    /* État caché */
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none; 
}

/* État déployé quand on clique */
.deploy-widget-click.active .video-frame-wrapper {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.video-frame-wrapper iframe {
    width: 100%;
    height: 100%;
    padding: 5px; 
    box-sizing: border-box;
}

.corner-asset {
    position: fixed;
    width: 150px; /* Ajustez la taille selon vos images */
    height: 150px;
    z-index: 5000; /* Priorité maximale pour rester au-dessus de tout */
    pointer-events: none; /* Permet de cliquer "à travers" l'image */
    background-size: contain;
    background-repeat: no-repeat;
    /* Effet Glow initial */
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.7)); 
    animation: glow-pulse 4s infinite ease-in-out;
}

/* Positionnement et images spécifiques */
.corner-asset {
    position: fixed;
    width: 150px; 
    height: 150px;
    z-index: 9999; 
    pointer-events: none;
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.7)); 
    animation: glow-pulse 4s infinite ease-in-out;
}

/* Haut Gauche */
.corner-tl { top: 0; left: 0; background-image: url('corner-tl.png'); }

/* Haut Droite - Décalé de 40px pour éviter la scrollbar */
.corner-tr { 
    top: 0; 
    right: 20px; 
    left: auto; /* Sécurité pour éviter le conflit gauche/droite */
    background-image: url('corner-tr.png'); 
}

/* Bas Gauche - Collé au sol */
.corner-bl { 
    bottom: -80px !important;
    top: auto;
    left: 0; 
    background-image: url('corner-bl.png'); 
}

/* Bas Droite - Collé au sol et décalé de la scrollbar */
.corner-br { 
    bottom: -80px !important; 
    right: 20px;
    top: auto; 
    left: auto;
    background-image: url('corner-br.png'); 
}

/* Animation de pulsation */
@keyframes glow-pulse {
    0% { filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 25px rgba(255, 0, 0, 0.9)); }
    100% { filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5)); }
}

.fade-text {
    transition: opacity 1s ease-in-out;
    opacity: 1;
}

.edge-asset {
    position: fixed;
    left: 50%;
    transform: translateX(-50%); /* Centrage horizontal parfait */
    z-index: 4999;
    pointer-events: none;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    
    /* Application du GLOW identique aux coins */
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.7));
    animation: glow-pulse 4s infinite ease-in-out;
}

/* Configuration Haut */
.edge-top {
    top: 0;
    width: 500px; /* Ajustez selon la largeur désirée */
    height: 40px;  /* Ajustez selon la hauteur de votre image top.png */
    background-image: url('top.png');
}

/* Configuration Bas */
.edge-bottom {
    bottom: 0 !important;
    width: 500px; /* Ajustez selon la largeur désirée */
    height: 40px;  /* Ajustez selon la hauteur de votre image bottom.png */
    background-image: url('bottom.png');
}

.drawer-container {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(-100%); /* Caché par défaut */
    width: 300px; /* Largeur du tiroir ouvert */
    height: 400px;
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid #ff0000;
    z-index: 9998;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

/* Quand le tiroir est ouvert */
.drawer-container.open {
    transform: translateY(-50%) translateX(0);
}

.drawer-content {
    padding: 20px;
    color: white;
    font-family: 'Orbitron', sans-serif;
}

/* La poignée (ton asset deploy.png) */
.drawer-handle {
    position: absolute;
    right: -50px; /* Sort de la boîte pour être visible même tiroir fermé */
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    cursor: pointer;
    pointer-events: auto;
}

.drawer-handle img {
    width: 100%;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.8));
    transition: filter 0.3s;
}

.drawer-handle:hover img {
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 1));
}

.drawer-title {
    color: #ff0000;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    border-bottom: 1px solid rgba(255, 0, 0, 0.3);
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Container de l'iframe pour qu'elle s'adapte */
.raid-calendar-wrapper {
    width: 100%;
    height: calc(100% - 60px); /* Laisse de la place pour le titre */
    overflow: hidden;
    border-radius: 5px;
}

.raid-iframe {
    width: 100%;
    height: 100%;
    filter: invert(1) hue-rotate(180deg) brightness(0.8); /* Optionnel : Tente d'adapter les couleurs au thème sombre */
    background: transparent;
}

/* On élargit peut-être un peu le tiroir pour plus de lisibilité */
.drawer-container {
    width: 400px; /* Augmenté de 300 à 400 pour le calendrier */
}


body::before, body::after {
    content: "";
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    pointer-events: none;
    z-index: 4000; /* Sous les assets mais au-dessus du contenu */
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 10px;
}

/* Les lignes de circuit horizontales et verticales */
body::after {
    border: none;
    /* Création de lignes de circuit avec des gradients */
    background: 
        /* Ligne horizontale haut */
        linear-gradient(90deg, transparent 20%, rgba(255, 0, 0, 0.5) 20.5%, rgba(255, 0, 0, 0.5) 79.5%, transparent 80%) top / 100% 1px no-repeat,
        /* Ligne horizontale bas */
        linear-gradient(90deg, transparent 20%, rgba(255, 0, 0, 0.5) 20.5%, rgba(255, 0, 0, 0.5) 79.5%, transparent 80%) bottom / 100% 1px no-repeat,
        /* Ligne verticale gauche */
        linear-gradient(180deg, transparent 20%, rgba(255, 0, 0, 0.5) 20.5%, rgba(255, 0, 0, 0.5) 79.5%, transparent 80%) left / 1px 100% no-repeat,
        /* Ligne verticale droite */
        linear-gradient(180deg, transparent 20%, rgba(255, 0, 0, 0.5) 20.5%, rgba(255, 0, 0, 0.5) 79.5%, transparent 80%) right / 1px 100% no-repeat;
    
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.8));
    animation: circuit-flicker 6s infinite;
}

/* Ajout de petits "nœuds" ou points de soudure aux jonctions */
.circuit-node {
    position: fixed;
    width: 4px;
    height: 4px;
    background: #ff0000;
    box-shadow: 0 0 10px #ff0000;
    border-radius: 50%;
    z-index: 4001;
    pointer-events: none;
}

/* Animation de scintillement pour le côté "énergie qui circule" */
@keyframes circuit-flicker {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.4; }
    52% { opacity: 1; }
    54% { opacity: 0.6; }
}

.side-panel-asset {
    position: fixed;
    left: 40px;
    top: 25%;
    transform: translateY(-50%);
    width: 300px;
    height: 100px;
    background-image: url('texttab.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 5000;
    pointer-events: none;

    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.7)); 

    animation: glow-pulse 4s infinite ease-in-out;
}


.ticker-container {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    height: 30px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 0, 0, 0.5);
    overflow: hidden;
    z-index: 4500;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.ticker-text {
    display: inline-block;
    white-space: nowrap;
    font-family: 'Aurebesh', sans-serif;
    font-size: 1.1rem;
    color: #ff0000;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.8);
    animation: ticker-scroll 25s linear infinite;
    padding-left: 100%;
}

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}
