
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;


    background:
        radial-gradient(circle at top left, rgba(122, 10, 66, 0.18), transparent 50%),
        radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.20), transparent 30%),
        linear-gradient(135deg, #2a0c3d 10%, #041a30 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;

    color: #e7ecff;
    line-height: 1.6;
    min-height: 100vh;
}






.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem; 
}

main {
    padding-top: 0.0rem; 
}


.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: linear-gradient(
        90deg,
        rgba(5, 5, 20, 0.96),
        rgba(10, 5, 30, 0.9),
        rgba(5, 5, 20, 0.96)
    );
    border-bottom: 1px solid rgba(244, 114, 182, 0.4); 
    
}



.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem; 
}
.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

@font-face {
    font-family: 'Pricedown';
    src: url('assets/fonts/Pricedown Bl.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}



.brand-title {
    font-family: 'Pricedown', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.8rem;
    font-weight: 400;       
    letter-spacing: .08em;   
    text-transform: uppercase;
    color: #e5e7eb;
    text-shadow: 0 0 14px rgba(236, 72, 153, 0.9);
}

.brand-logo {
    max-height: 128px;
    width: auto;
    object-fit: contain;
    border-radius: 150px;

}


.brand-subtitle {
    font-size: 0.78rem;
    color: #a5f3fc;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.nav-link {
    text-decoration: none;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    color: #e5e7eb;
    border: 1px solid transparent;
    transition: all 0.15s ease;
}

.nav-link:hover {
    border-color: rgba(96, 165, 250, 0.6);
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.3), transparent 70%);
}

.nav-link.active {
    border-color: rgba(96, 165, 250, 0.8);
    background: rgba(15, 23, 42, 0.95);
    color: #f9fafb;
}



.badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: 0.78rem;
    padding: .25rem .8rem;
    border-radius: 999px;
    border: 1px solid rgba(96, 165, 250, 0.5);
    color: #bfdbfe;
    background: radial-gradient(circle at left, rgba(0, 0, 0, 0.12), transparent 70%);
}
 /*  badge online  */
.badge-dot { 
    width: .48rem;
    height: .48rem;
    border-radius: 999px;
    background: radial-gradient(circle, #22c55e 0%, #16a34a 50%, #166534 100%);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
}

/*  badge offline  */
/*.badge-dot {  
    width: .48rem;
    height: .48rem;
    border-radius: 999px;
    background: radial-gradient(circle, #ff0000 0%, #fa1313 50%, #77120e 100%);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
}*/

/*  badge maintenance  */
/*.badge-dot {  
    width: .48rem;
    height: .48rem;
    border-radius: 999px;
    background: radial-gradient(circle, #dba206 0%, #ce8c13 50%, #9e6b0d 100%);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
}*/

h1, h2, h3, h4 {
    font-weight: 700;
    color: #faf5ff;
    margin-bottom: 0.75rem;
}

.page-title {
    font-size: clamp(2.2rem, 3.3vw, 2.8rem);
    margin-bottom: 0.8rem;
    text-shadow: 0 0 14px rgba(56, 189, 248, 0.5);
}

.page-intro {
    font-size: 0.95rem;
    color: #c4d0ff;
    max-width: 650px;
}


.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}


.hero-card,
.card,
.card-soft {
    background:
        radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), transparent 65%),
        radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.25), transparent 65%),
        rgba(8, 7, 29, 0.96);
    border-radius: 1.6rem;
    border: 1px solid rgba(129, 140, 248, 0.7);
    box-shadow:
        0 18px 50px rgba(15, 23, 42, 0.95),
        0 0 30px rgba(236, 72, 153, 0.4);
}


.hero-card {
    padding: 1.5rem 1.7rem;
}

.card,
.card-soft {
    padding: 1.1rem 1.2rem;
}

.testimonial-card {
    position: relative;
    min-height: 150px;
}

.testimonial-name {
    font-weight: 600;
    color: #a5f3fc;
    margin-bottom: 0.4rem;
}

.testimonial-text {
    font-style: italic;
    color: #e5e7eb;
}


.testimonial-stars {
    margin-bottom: 0.5rem;
    color: #facc15; 
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.testimonial-stars span {
    display: inline-block;
}


.testimonial-card,
.testimonial-name,
.testimonial-text,
.testimonial-stars {
    transition: opacity 0.4s ease;
}


.hero-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0.75rem 0 1.35rem;
}

.intro-row {
    margin-top: 0.8rem;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
    gap: 1.8rem;
    align-items: flex-start;
}

.intro-media {
    align-self: stretch;
}

.intro-slider {
    position: relative;
    width: 100%;
    border-radius: 1.2rem;
    border: 1px solid rgba(129, 140, 248, 0.7);
    box-shadow:
        0 22px 50px rgba(15, 23, 42, 0.95),
        0 0 28px rgba(56, 189, 248, 0.4);
    overflow: hidden;
}


.intro-slider::before {
    content: "";
    display: block;
    padding-top: 90%; 

}

.intro-media-title {
    font-size: 1.05rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-align: center;
    opacity: 50.9;
}

.intro-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
}

.intro-slide.is-active {
    opacity: 1;
    transform: scale(1);
}


.pill {
    font-size: 0.78rem;
    border-radius: 999px;
    border: 1px solid rgba(129, 140, 248, 0.7);
    padding: 0.25rem 0.75rem;
    color: #e0f2fe;
    background: linear-gradient(120deg, rgba(56, 189, 248, 0.15), rgba(37, 99, 235, 0.3));
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    border-radius: 999px;
    padding: 0.5rem 1.1rem;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.16s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #6366f1); 
    color: white;
    border-color: rgba(148, 163, 184, 0.8);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.8); 
}

.btn-primary:hover {
    filter: brightness(1.03);
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
}


.btn-ghost {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(129, 140, 248, 0.8);
    color: #e5e7eb;
}

.btn-ghost:hover {
    background: radial-gradient(circle at top, rgba(49, 46, 129, 0.9), rgba(15, 23, 42, 0.95));
    box-shadow: 0 0 18px rgba(59, 130, 246, 0.5);
}


.section {
    margin-bottom: 3rem;
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-kicker {
    font-size: 0.8rem;
    color: #7dd3fc;
    text-transform: uppercase;
    letter-spacing: .18em;
    margin-bottom: .25rem;
}

.section-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.section-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}



.card-label {
    font-size: 0.8rem;
    color: #f9a8d4;
    margin-bottom: 0.25rem;
}

.card-title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.card-meta {
    font-size: 0.8rem;
    color: #c4b5fd;
    margin-bottom: 0.4rem;
}


ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0.35rem 0 0.8rem;
}

li + li {
    margin-top: 0.12rem;
}


.faq-item {
    border-radius: 1rem;
    border: 1px dashed rgba(129, 140, 248, 0.7);
    padding: 0.9rem 1rem;
    margin-bottom: 0.7rem;
    background: rgba(12, 10, 38, 0.85);
}

.faq-question {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rule-block {
    border-radius: 1.1rem;
    border: 1px solid rgba(79, 70, 229, 0.8);
    background: rgba(10, 10, 36, 0.96);
    padding: 1rem 1.15rem;
}

.rule-title {
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #e5e7eb;
}

.jobs-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.job-tag {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .76rem;
    padding: .2rem .6rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.2);
    color: #bbf7d0;
    margin-bottom: .4rem;
}


.status-tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: 0.78rem;
    padding: .25rem .6rem;
    border-radius: 999px;
    border: 1px solid rgba(129, 140, 248, 0.7);
    color: #c7d2fe;
    margin-bottom: .4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 1.5rem;
}

.contact-snippets pre {
    background: rgba(8, 7, 29, 0.95);
    border-radius: 0.6rem;
    border: 1px solid rgba(79, 70, 229, 0.9);
    padding: 0.7rem 0.9rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.78rem;
    overflow-x: auto;
    margin-bottom: 0.6rem;
    color: #e5e7eb;
}


.copy-link {
    font-size: 0.8rem;
    color: #f9a8d4;
    cursor: pointer;
}

.copy-link:hover {
    text-decoration: underline;
}


.site-footer {
    border-top: 1px solid rgba(79, 70, 229, 0.9);
    padding: 1.2rem 1.5rem 2rem;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #a5b4fc;
    text-align: center;
}


@media (max-width: 800px) {
      .intro-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .intro-media img {
        max-height: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .nav-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        width: 100%;
        justify-content: flex-start;
    }
}



.rule-block {
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), transparent 65%),
                radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.25), transparent 65%),
                rgba(12, 10, 38, 0.92);
    border-radius: 1.2rem;
    border: 1px solid rgba(96, 165, 250, 0.6); 
    padding: 1.3rem 1.4rem;
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.9),
        0 0 25px rgba(236, 72, 153, 0.35),
        0 0 18px rgba(56, 189, 248, 0.28);
    margin-bottom: 1.5rem;
}


.rule-title {
    font-size: 1.15rem;
    color: rgba(120, 181, 255, 0.9); 
    margin-bottom: 0.6rem;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}



.rules-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.4rem;
}

.rules-nav a {
    background: rgba(15, 23, 42, 0.9); 
    border: 1px solid rgba(129, 140, 248, 0.8);
    color: #e5e7eb;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.16s ease;
    box-shadow: none; 
}

.rules-nav a:hover {
    background: radial-gradient(
        circle at top,
        rgba(49, 46, 129, 0.9),
        rgba(15, 23, 42, 0.95)
    ); 
    box-shadow: 0 0 18px rgba(59, 130, 246, 0.5); 
    transform: translateY(-1px);
}





html {
    scroll-behavior: smooth;
}


.back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 0.6rem 0.9rem;
    background: rgba(236, 72, 153, 0.25);
    border: 1px solid rgba(236, 72, 153, 0.55);
    border-radius: 0.8rem;
    cursor: pointer;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 20px rgba(236,72,153,0.4);
    display: none;
    transition: 0.25s;
}

.back-top:hover {
    background: rgba(236, 72, 153, 0.35);
    transform: translateY(-3px);
}



.rule-block-with-image {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.rule-block-with-image .rule-text {
    flex: 1;
}

.rule-block-with-image .rule-image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rule-block-with-image .rule-image img {
    max-width: 150px;    
    height: auto;
    border-radius: 0.8rem;
    border: 1px solid rgba(129, 140, 248, 0.7);
    box-shadow:
        0 10px 25px rgba(15, 23, 42, 0.9),
        0 0 18px rgba(236, 72, 153, 0.4);
}


@media (max-width: 800px) {
    .rule-block-with-image {
        flex-direction: column;
    }

    .rule-block-with-image .rule-image {
        justify-content: flex-start;
    }
}

.rule-large-image {
    width: 100%;
    margin-top: 1.2rem;
    border-radius: 1rem;
    border: 1px solid rgba(129, 140, 248, 0.7);
    box-shadow:
        0 15px 40px rgba(15, 23, 42, 0.85),
        0 0 25px rgba(236, 72, 153, 0.35),
        0 0 20px rgba(56, 189, 248, 0.28);
    display: block;
}


.rule-gallery-full {
    margin-top: 1.2rem;
}

.rule-gallery-full img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    border: 1px solid rgba(96, 165, 250, 0.6);
    box-shadow:
        0 12px 35px rgba(15, 23, 42, 0.9),
        0 0 20px rgba(236, 72, 153, 0.4),
        0 0 14px rgba(56, 189, 248, 0.3);
    object-fit: cover;
}


.hl-violet {
    background: rgba(139, 92, 246, 0.25);      
    color: #e5e7eb;                            
    padding: 0 .18rem;
    border-radius: 0.25rem;
    box-shadow: 0 0 10px rgba(129, 140, 248, 0.6);
}

.rule-block[id] {
    scroll-margin-top: 180px; 
}


.section[id] {
    scroll-margin-top: 100px;
}


.whitelist-form {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
    min-width: 220px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    color: #e5e7eb;
}

.whitelist-form input,
.whitelist-form select,
.whitelist-form textarea {
    width: 100%;
    border-radius: 0.6rem;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.95);
    padding: 0.55rem 0.8rem;
    color: #e5e7eb;
    font-size: 0.9rem;
}

.whitelist-form input::placeholder,
.whitelist-form textarea::placeholder {
    color: #9ca3af;
    font-size: 0.85rem;
}

.whitelist-form input:focus,
.whitelist-form select:focus,
.whitelist-form textarea:focus {
    outline: none;
    border-color: rgba(96, 165, 250, 0.9);
    box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.5);
}


.checkbox-label {
    display: flex !important;        
    align-items: center;           
    gap: 0.6rem;
    font-size: 0.9rem;
    line-height: 1.4;
}


.checkbox-label {
    display: flex !important;        
    align-items: center;             
    gap: 0.6rem;
    font-size: 0.9rem;
    line-height: 1.4;
}


.whitelist-form input[type="radio"],
.whitelist-form input[type="checkbox"] {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    flex-shrink: 0;
}


   
body.whitelist-page .section-header,
body.whitelist-page .page-intro {
    max-width: 900px;
    margin: 0 auto;
}




.penal-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.75rem;
    font-size: 0.9rem;
}


.penal-table th,
.penal-table td {
    border: 1px solid rgba(148, 163, 184, 0.6);
    padding: 0.75rem 1.1rem;   
    vertical-align: top;
    line-height: 1.5;          
}


.penal-table th + th,
.penal-table td + td {
    border-left: 2px solid rgba(148, 163, 184, 0.9); 
}


.penal-table th {
    background: rgba(15, 23, 42, 0.98);
    font-weight: 600;
    text-align: left;
}


.penal-table td:first-child {
    width: 40%;
}

.penal-table td:nth-child(2) {
    width: 25%;
}

.penal-table td:nth-child(3) {
    width: 35%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.12);
    font-size: 0.8rem;
    font-weight: 500;
}

/* offline */
/*.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff9a;
    box-shadow: 0 0 6px rgba(0, 255, 154, 0.8);
}*/

/* maintenance */
/*.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b9830e;
    box-shadow: 0 0 6px rgba(194, 128, 7, 0.8);
}*/

/* enligne */
.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff9a;
    box-shadow: 0 0 6px rgba(0, 255, 154, 0.8);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0, 0, 0, 0.45);
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    color: #ffffff;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, background 0.2s ease, transform 0.15s ease;
    z-index: 2;
}

.slider-arrow-left {
    left: 0.5rem;
}

.slider-arrow-right {
    right: 0.5rem;
}


.intro-slider:hover .slider-arrow {
    opacity: 1;
    pointer-events: auto;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.65);
    transform: translateY(-50%) scale(1.05);
}



.staff-hero {
    padding-top: 1.5rem;
}


.staff-banner {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}


.staff-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.1);
    transform: scale(1.02);
    z-index: 0;
}


.staff-banner-overlay {
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, rgba(5, 0, 20, 0.85), rgba(5, 0, 20, 0.15));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 2.5rem;
    min-height: 220px; 
}

.staff-banner-overlay .page-title {
    margin-bottom: 0.4rem;
}

.staff-banner-overlay .page-intro {
    max-width: 540px;
    font-size: 0.95rem;
    opacity: 0.95;
}


.staff-banner-overlay .page-title {
    margin-bottom: 0.4rem;
}

.staff-banner-overlay .page-intro {
    max-width: 540px;
    font-size: 0.95rem;
    opacity: 0.95;
}



.staff-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-top: 1.5rem;
}

.staff-card {
    position: relative;
    border-radius: 1.6rem;     
    padding: 1.4rem 1.6rem;     
    overflow: hidden;
}



.staff-card::before {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: inherit;
    background:
        radial-gradient(circle at center, rgba(210, 130, 255, 0.55), transparent 65%);
    z-index: -1;
    filter: blur(20px);
    opacity: 0.9;
}

.staff-card-inner {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.staff-avatar-wrap {
    flex-shrink: 0;
    width: 92px;
    height: 92px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
}

.staff-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-info {
    flex: 1;
    min-width: 0;
}

.staff-name {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.staff-role {
    font-size: 0.86rem;
    opacity: 0.85;
    margin-bottom: 0.45rem;
}

.staff-bio {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.95;
    margin-bottom: 0.6rem;
}


.staff-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}



.btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 0.8rem;
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
}

.btn-social i {
    font-size: 1rem;
    line-height: 1;
}

.btn-social span {
    line-height: 1;
}

.btn-social:hover {
    transform: translateY(-1px);
}



.btn-social.youtube i {
    color: #ff0000;
}

.btn-social.twitch i {
    color: #9146ff;
}

.btn-social.tiktok i {
    color: #ffffff;
    text-shadow:
        0 0 1px #ff0050,
        0 0 1px #00f2ea;
}



.btn-social.instagram i {
    background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fd5949 40%, #d6249f 70%, #285aeb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn-social.facebook i {
    color: #1877f2;
}



.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
    margin-top: 1.5rem;
}

.contact-right .ticket-title {
    margin-bottom: 0.75rem;
}

.ticket-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}


.ticket-card {
    border-radius: 1.6rem;     
    padding: 1.1rem 1.2rem;    
}

.ticket-card h4 {
    margin-bottom: 0.3rem;
    font-size: 0.98rem;
}

.ticket-card p {
    font-size: 0.9rem;
    opacity: 0.95;
}



@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .staff-banner-overlay {
        padding: 1.2rem 1.4rem;
    }

    .staff-banner-overlay .page-title {
        font-size: 1.6rem;
    }

    .staff-banner-overlay .page-intro {
        max-width: 100%;
        font-size: 0.9rem;
    }
}



.prevention-box {
    margin-top: 2rem;
    padding: 1.4rem 1.6rem;
    border-radius: 1.6rem;
    position: relative;  
}


.prevention-card {
    display: block;
    padding: 0.6rem 0.7rem;
    border-radius: 0.9rem;
    background: rgba(6, 14, 50, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.12s ease, background 0.12s ease, box-shadow 0.12s ease;
}

.prevention-card:hover {
    transform: translateY(-2px);
    background: rgba(12, 24, 70, 0.95);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.prevention-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.prevention-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.prevention-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.5rem;
    margin-bottom: 0.9rem;
}

.prevention-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.prevention-card h4 span {
    font-weight: 700;
}

.prevention-card p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.prevention-footer {
    font-size: 0.8rem;
    opacity: 0.85;
}


.phone-number {
    margin-left: 0.35rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
}

.phone-number i {
    font-size: 0.85rem;
}

.phone-number:hover {
    text-decoration: underline;
}


@media (max-width: 720px) {
    .prevention-grid {
        grid-template-columns: 1fr;
    }
}


#copy-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(56, 189, 248, 0.25);
    border: 1px solid rgba(96, 165, 250, 0.7);
    color: #e0f2fe;
    padding: 0.6rem 1rem;
    border-radius: 0.8rem;
    box-shadow: 0 0 12px rgba(96,165,250,0.45);
    font-size: 0.9rem;
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 999;
}
#copy-toast.show {
    opacity: 1;
}


.astro-socials {
    display: flex;
    gap: 2rem;
}

.astro-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 1rem;
}

.astro-btn i {
    font-size: 1.2rem;
}




.astro-links {
    margin-top: 0.7rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.astro-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 1.3rem;
    border-radius: 999px;
    border: 1px solid #2b86ff; 
    background: rgba(3, 8, 30, 0.95);
    color: #ffffff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.astro-pill i {
    font-size: 1rem;
}

.astro-pill:hover {
    background: linear-gradient(90deg, #0f5bff, #8b5dff);
    box-shadow: 0 0 18px rgba(60, 140, 255, 0.6);
    transform: translateY(-1px);
}


.partnership-card {

}

.partnership-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.partnership-text {
    flex: 1;
    min-width: 0;
}

.partnership-logo-wrap {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
}

.partnership-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.partner-links {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.partner-pill {
    padding: 0.25rem 1rem;
    font-size: 0.8rem;
}

.partner-pill i {
    font-size: 0.95rem;
}



@media (max-width: 720px) {
    .partnership-inner {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .partnership-logo-wrap {
        width: 64px;
        height: 64px;
    }
}



.ticket-partnership-header {
    margin-top: 0.6rem;
    margin-bottom: 0.6rem;
    font-size: 1.1rem;           
    font-weight: 700;
    color: #ffffff;              
    text-align: center;
    letter-spacing: .12em;       
    text-transform: uppercase;   
}



.partnership-card {
   
}

.partnership-inner {
    display: flex;
    align-items: center;   
    gap: 1.1rem;
}

.partnership-text {
    flex: 1;
    min-width: 0;
}

.partnership-logo-wrap {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
    margin-top: 0;        
}

.partnership-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.partner-links {
    margin-top: 0.6rem;
    display: flex;
    flex-wrap: nowrap;         
    gap: 0.45rem;
}

.partner-pill {
    padding: 0.22rem 0.95rem;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
}

.partner-pill i {
    font-size: 0.95rem;
}





.ticket-partnership-header {
    margin-top: 0.6rem;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.9;
    text-align: center;
    grid-column: 1 / -1;
}



@media (max-width: 720px) {
    .partnership-inner {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .partnership-logo-wrap {
        width: 80px;
        height: 80px;
        margin-top: 0;
    }

    .partner-links {
        flex-wrap: wrap;
    }
}



.partner-facebook i {
    color: #ffffff;  

}


.maintenance-box {
    max-width: 700px;
    margin: 2rem auto;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: rgba(8, 8, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
    text-align: center;
}

.maintenance-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.maintenance-box h2 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.maintenance-box p {
    margin-bottom: 0.4rem;
    line-height: 1.6;
}



#snow-container {
    position: fixed;
    inset: 0;
    pointer-events: none;   
    z-index: 0;           
}


.snowflake {
    position: absolute;
    top: -10px;
    color: #ffffff;
    opacity: 0.8;
    font-size: 8px;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.226);
    animation-name: fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}


@keyframes fall {
    0% {
        transform: translate3d(0, -10px, 0);
    }
    100% {
        transform: translate3d(0, 110vh, 0);
    }
}


.site-header,
.wrapper,
main {
    position: relative;
    z-index: 1; 
}


/* weazelnews */

/* select admin weazel */
.article-form select {
    width:100%;
    padding:8px 10px;
    border-radius:6px;
    border:1px solid #1f2937;
    background:#020617;
    color:#e5e7eb;
    font-size:14px;
}

/* filtres catégories horizontales (non utilisés mais gardés au cas où) */
.news-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.news-filter-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    text-decoration: none;
    border: 1px solid rgba(129, 140, 248, 0.7);
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.9);
    transition: all 0.16s ease;
}

.news-filter-pill:hover {
    background: radial-gradient(circle at top, rgba(49, 46, 129, 0.9), rgba(15, 23, 42, 0.95));
    box-shadow: 0 0 16px rgba(59, 130, 246, 0.5);
}

.news-filter-pill.is-active {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    border-color: rgba(191, 219, 254, 0.9);
    color: #fff;
}

.news-category-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.1rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    background: rgba(59, 130, 246, 0.25);
    color: #bfdbfe;
    margin-right: 0.5rem;
}

/* ====== LAYOUT WEAZEL FAÇON GRAND JOURNAL ====== */

.news-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

/* carte "à la une" */
.news-feature {
    display: flex;
    flex-direction: row;
    gap: 1.4rem;
    margin-bottom: 1.8rem;
    padding: 1.6rem 1.8rem;
}

.news-feature-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    gap: 1.4rem;
}

.news-feature-image-wrap {
    flex: 0 0 260px;
    max-width: 320px;
}

.news-feature-image {
    width: 100%;
    height: 100%;
    max-height: 260px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.9);
}

.news-feature-content {
    flex: 1;
}

.news-feature-title {
    font-size: 1.8rem;
    margin: 0.25rem 0 0.4rem;
}

.news-feature-excerpt {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-top: 0.4rem;
    color: #cbd5f5;
}

.news-feature-readmore {
    margin-top: 0.7rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.9;
}

/* liste des autres articles */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-item {
    padding: 0.8rem 1rem;
}

.news-item-link {
    display: flex;
    gap: 0.9rem;
    text-decoration: none;
    color: inherit;
}

.news-item-thumb {
    flex: 0 0 110px;
}

.news-item-image {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
}

.news-item-body {
    flex: 1;
}

.news-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
}

.news-item-date {
    opacity: 0.75;
}

.news-item-title {
    font-size: 1rem;
    margin-top: 0.15rem;
    margin-bottom: 0.15rem;
}

.news-item-excerpt {
    font-size: 0.85rem;
    color: #cbd5f5;
}

/* ===== SIDEBAR ===== */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;                 /* moins d’espace entre logo et box */
    margin-top: -10rem;        /* aligne la colonne avec le titre de la page */
}

.news-sidebar-box {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 18px;
    padding: 1rem 1.1rem;

    /* même type de glow que les grosses cartes de gauche */
    border: 1px solid rgba(129, 140, 248, 0.7);
    box-shadow:
        0 18px 50px rgba(15, 23, 42, 0.95),
        0 0 30px rgba(236, 72, 153, 0.4);
}

.news-sidebar-box:first-of-type {
    margin-top: -2.5rem;  /* augmente ou diminue un peu si tu veux ajuster finement */
}

.news-sidebar-title {
    font-size: 1rem;
    margin-bottom: 0.7rem;
}

.news-latest-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.news-latest-item a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #e5e7eb;
    font-size: 0.85rem;
}

.news-latest-date {
    opacity: 0.7;
    font-size: 0.78rem;
}

.news-latest-title {
    font-weight: 500;
}

/* catégories verticales dans la sidebar */
.news-sidebar-cats {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.news-cat-pill {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.85rem;
    text-decoration: none;
    border: 1px solid rgba(129, 140, 248, 0.7);
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.9);
    transition: all 0.16s ease;
}

.news-cat-pill:hover {
    background: radial-gradient(circle at top, rgba(49, 46, 129, 0.9), rgba(15, 23, 42, 0.95));
    box-shadow: 0 0 16px rgba(59, 130, 246, 0.5);
}

.news-cat-pill.is-active {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    border-color: rgba(191, 219, 254, 0.9);
    color: #fff;
}

/* ===== Page article seul (mise en page magazine) ===== */

.news-article-full {
    max-width: 1000px;
    margin: 0 auto;
   padding: 0.4rem 2.4rem 2.2rem; 
    border-radius: 1.6rem;

    /* même style que les autres card-soft (fond sombre) */
    background:
        radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), transparent 65%),
        radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.25), transparent 65%),
        rgba(8, 7, 29, 0.96);
    border: 1px solid rgba(129, 140, 248, 0.7);
    box-shadow:
        0 18px 50px rgba(15, 23, 42, 0.95),
        0 0 30px rgba(236, 72, 153, 0.4);
}

/* bloc header (logo + catégorie + titre + meta) */
.news-article-full-header {
    margin-bottom: 1.2rem;
}

/* ligne du haut : logo à gauche, catégorie à droite */
.news-article-full-top {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:0.75rem;
}

/* logo dans l’article – un peu plus petit pour laisser monter le titre */
.news-article-logo-img {
    height: 180px;  /* tu peux mettre 170 / 190 si besoin */
    width:auto;
    display:block;
}

/* titre centré, remonté (zone rouge) */
.news-article-full-title {
    font-size: 2rem;
    margin: -3rem 0 0.8rem;
    text-align:center;
}

/* ligne meta */
.news-article-meta {
    font-size:0.9rem;
    opacity:0.85;
    text-align:left;
}

/* corps de l'article */
/* corps de l'article */
.news-article-full-body {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-top: 0.8rem;
}

/* colonne de texte alignée sur la photo */
.news-article-full-body > .weazel-article-content {
    max-width: 760px;      /* augmente à 900 / 1000 si tu veux plus large */
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}



.news-article-full-body img,
.news-body img {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block;
    margin: 0.75rem auto;
    border-radius: 14px;
}


/* Sécuriser toutes les images dans le contenu des articles Weazel */
.weazel-article-content img,
.news-body img {
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0.75rem auto;
}



/* lien retour */
.news-back-link {
    color: #93c5fd;
    text-decoration: none;
    font-size: 0.9rem;
}

.news-back-link:hover {
    text-decoration: underline;
}

/* responsive */
@media (max-width: 992px) {
    .news-layout {
        grid-template-columns: minmax(0, 1fr);
    }
    .news-sidebar {
        order: -1;
        margin-top: 0; /* sur mobile on remet normal */
    }
    .news-feature,
    .news-feature-link {
        flex-direction: column;
    }
    .news-feature-image-wrap {
        flex: 0 0 auto;
        max-width: 100%;
    }
    .news-article-full {
        padding:1.6rem 1.4rem;
    }
}

@media (max-width: 640px) {
    .news-item-link {
        flex-direction: column;
    }
    .news-item-thumb {
        flex: 0 0 auto;
        width: 100%;
    }
    .news-item-image {
        width: 100%;
        height: 140px;
    }
}

/* logo dans la sidebar au-dessus des dépêches */
.weazel-sidebar-logo {
    width: 220px;                 /* logo bien gros */
    margin: -2.8rem auto 9px;     /* remonte + réduit l’espace avec la box */
    display: block;
}

/* Bouton d'accès panneau Weazel (discret en haut à droite) */
.weazel-access-btn {
    position: fixed;
    top: 80px;           /* ajuste si besoin pour ne pas coller le header */
    right: 24px;
    z-index: 900;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.7);
    color: #e5e7eb;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.weazel-access-btn:hover {
    background: rgba(37, 99, 235, 0.95);
    border-color: #60a5fa;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .weazel-access-btn {
        top: 72px;
        right: 12px;
        padding: 4px 10px;
        font-size: 11px;
    }
}

