/* === Style général néon noir/rouge === */
body {
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;

    /* Animation d'apparition du body */
    opacity: 0;
    animation: fadeInBody 1s ease forwards;
}

/* === Background animé stardust === */
.background {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #0a0a0a, #1a0000);
    z-index: -1;
}
.background::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: transparent url("../logo/stardust.png") repeat;
    animation: moveStars 80s linear infinite;
    opacity: 0.15;
}

/* === Navbar fluide === */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100%;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(5px);
    padding: 12px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo {
    width: clamp(30px, 6vw, 50px);
    height: auto;
}

/* Menu Desktop */
.menu {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-grow: 1;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    font-size: clamp(0.8rem, 1.2vw, 1rem);
}

.menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #ff4d4d;
    transition: width 0.3s ease;
}

.menu a:hover::after { width: 100%; }
.menu a:hover { color: #ff4d4d; }

.menu a.active {
    color: #ff4d4d;
}
.menu a.active::after {
    width: 100%;
    background: #ff4d4d;
}

/* === Burger menu === */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-right: 40px; 
}

.burger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Quand le menu est actif → burger devient croix */
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}



/* === Responsive (Mobile) === */
@media (max-width: 768px) {
    .menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10,10,10,0.95);
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 15px 0;
        display: none;
    }

    .menu.show {
        display: flex;
        animation: fadeIn 0.3s ease forwards;
    }

    .burger {
        display: flex;
    }
}

/* Petit effet d'apparition */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}



/* === Hero === */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 150px 50px 100px 50px;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-text {
    max-width: 600px;

    /* Animation d'entrée */
    transform: translateX(-50px);
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
    animation-delay: 0.5s;
}

.hero-text h1 {
    font-size: 4rem;
    color: #ff0000;
    text-shadow: 0 0 3px #ff4d4d58, 0 0 8px #d70a527b, 0 0 13px #ff000073;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 30px;
}

.hero-image {
    transform: translateX(50px);
    opacity: 0;
    animation: slideInRight 1s ease forwards, floatUpDown 6s ease-in-out infinite alternate;
    animation-delay: 0.7s;
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}


.hero-image img {
    width: 300px;
    max-width: 90vw;
    filter: drop-shadow(0 0 20px #ff0000);
}

/* === Services === */
.services {
    padding: 80px 50px;
    text-align: center;
}

.services h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    color: #ff0000;
    text-shadow: 0 0 3px #ff4d4d, 0 0 8px #d70a5267;

    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.9s;
}

.service-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.card {
    background: rgba(10,10,10,0.7);
    border-radius: 20px;
    padding: 30px;
    width: 300px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;

    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.card:nth-child(1) { animation-delay: 1.1s; }
.card:nth-child(2) { animation-delay: 1.3s; }
.card:nth-child(3) { animation-delay: 1.5s; }

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px #ff4d4d, 0 0 40px #d70a53;
}
.card h3 { color: #ff4d4d; margin-bottom: 15px; }

/* === Boutons néon === */
.lang-btn {
    position: relative;
    display: inline-block;
    padding: 20px 60px;
    font-size: 1.5rem;
    color: #fff;
    background: transparent;
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.3s ease, text-shadow 0.3s ease, filter 0.5s ease;

    transform: scale(0.8);
    opacity: 0;
    animation: fadeInScale 1s ease forwards;
    animation-delay: 1.7s;
}

.lang-btn span { position: relative; z-index: 2; }
.lang-btn::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 12px;
    background: linear-gradient(120deg, #ff4d4d, #d70a53, #ff0000, #ff4d4d);
    background-size: 300% 300%;
    animation: borderFlow 3s linear infinite, gradientShift 5s ease-in-out infinite alternate;
    z-index: 0;
    filter: blur(2px);
}
.lang-btn::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #0a0a0a;
    border-radius: 10px;
    z-index: 1;
}
.lang-btn:hover::before { filter: blur(4px); }
.lang-btn:hover {
    color: #ff4d4d;
    text-shadow: 0 0 10px #ff4d4d, 0 0 20px #d70a53;
}

/* === Footer === */
.footer {
    padding: 40px 50px;
    text-align: center;
    background: rgba(10,10,10,0.9);

    transform: translateY(50px);
    opacity: 0;
    animation: slideUpFooter 1s ease forwards;
    animation-delay: 2s;
}

.footer .social-links {
    margin-top: 20px;
}
.footer .social-links a {
    margin: 0 10px;
    color: #fff;
    font-weight: 700;
    position: relative;
}
.footer .social-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background: #ff4d4d;
    transition: width 0.3s ease;
}
.footer .social-links a:hover::after { width: 100%; }
.footer .social-links a:hover { color: #ff4d4d; }

/* === Animations Keyframes === */
@keyframes moveStars { from { transform: translate(0,0); } to { transform: translate(-800px,-800px); } }
@keyframes borderFlow { 0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%} }
@keyframes gradientShift { 0%{background-position:0% 0%}50%{background-position:100% 100%}100%{background-position:0% 0%} }
@keyframes swing {0%{transform:rotateZ(-2deg)}50%{transform:rotateZ(2deg)}100%{transform:rotateZ(-2deg)} }

@keyframes fadeInBody { to { opacity: 1; } }
@keyframes slideDownNavbar { to { transform: translateY(0); opacity: 1; } }
@keyframes slideInLeft { to { transform: translateX(0); opacity: 1; } }
@keyframes slideInRight { to { transform: translateX(0); opacity: 1; } }
@keyframes fadeInUp { to { transform: translateY(0); opacity: 1; } }
@keyframes fadeInScale { to { transform: scale(1); opacity: 1; } }
@keyframes slideUpFooter { to { transform: translateY(0); opacity: 1; } }

/* === Responsive === */
@media (max-width:1024px){
    .hero{flex-direction:column;text-align:center;padding-top:120px}
    .hero-text h1{font-size:3rem}
    .hero-text p{font-size:1.3rem}
    .hero-image img{width:250px}
    .service-cards{flex-direction:column;gap:30px}
    .card{width:90%;margin:0 auto}
}
@media (max-width:480px){
    .hero-text h1{font-size:2.2rem}
    .hero-text p{font-size:1.1rem}
    .lang-btn{padding:15px 40px;font-size:1.2rem}
}

.hosting {
    padding: 80px 50px;
    text-align: center;
}

.hosting h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    color: #ff0000;
    text-shadow: 0 0 3px #ff4d4d, 0 0 8px #d70a5267;
}

.hosting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    justify-items: center;
    align-items: center;
}

/* === Animation d'entrée pour hosting cards === */
.host-card {
    background: rgba(10,10,10,0.7);
    border-radius: 20px;
    padding: 20px;
    width: 150px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.hosting-grid .host-card:nth-child(1) { animation-delay: 0.1s; }
.hosting-grid .host-card:nth-child(2) { animation-delay: 0.2s; }
.hosting-grid .host-card:nth-child(3) { animation-delay: 0.3s; }
.hosting-grid .host-card:nth-child(4) { animation-delay: 0.4s; }
.hosting-grid .host-card:nth-child(5) { animation-delay: 0.5s; }
.hosting-grid .host-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Animation constante subtile (float/pulsation) === */
.host-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px #ff0000);
    animation: float 3s ease-in-out infinite alternate;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

.host-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px #ff4d4d, 0 0 40px #d70a53;
}

.host-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px #ff0000);
}

.host-card p {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}


.host-card1 {
    width: 220px;
    padding: 25px 20px;
    background: rgba(10,10,10,0.85);
    border: 2px solid #ff00007a;
    box-shadow: 0 0 15px #ff000082, 0 0 30px #d70a527d;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.host-card1:hover {
    border-color: #ff4d4d84;
    box-shadow: 0 0 25px #ff4d4d85, 0 0 50px #d70a5298;
    transform: translateY(-10px) scale(1.05);
}

.host-card1 img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px #ff0000);
    animation: float 3s ease-in-out infinite alternate;
}

.host-card1 h3 {
    color: #ff4d4d;
    font-size: 1.3rem;
    margin: 5px 0;
}

.host-card1 p {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.host-card1 .lang-btn {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    border-radius: 12px;
    text-align: center;
    background: linear-gradient(120deg, #ff4d4d, #d70a53, #ff0000);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0 10px #ff0000, 0 0 20px #d70a53;
    transition: all 0.3s ease;
}

.host-card1 .lang-btn:hover {
    filter: brightness(1.2);
    box-shadow: 0 0 20px #ff4d4d, 0 0 40px #d70a53;
}

/* Animation float */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

.category-section {
    display: flex;
    flex-wrap: wrap;      /* permet aux cartes de passer à la ligne suivante si elles dépassent */
    justify-content: center; /* centre les cartes sur chaque ligne */
    gap: 20px;            /* espace entre les cartes */
    margin-bottom: 40px;  /* espace après chaque catégorie */
}

.category-section .host-card1 {
    width: 220px; /* largeur fixe pour chaque VPS */
}

/* Keyframes animation dynamique pour chaque carte */
@keyframes dynamicFade {
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}


/* === Section Contact === */
.contact-section {
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-section h2.section-title {
    font-size: 3rem;
    color: #ff0000;
    text-shadow: 0 0 3px #ff4d4d, 0 0 8px #d70a5267;
    text-align: center;
}

/* === Grille Contact === */
.contact-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

/* === Formulaire à gauche === */
.contact-form {
    flex: 1 1 35%;
    background: rgba(10,10,10,0.7);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* centre verticalement */
    gap: 20px;
    box-shadow: 0 0 20px #ff0000, 0 0 40px #d70a53;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    color: #fff;
    font-size: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    margin-top: 5px;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: #0a0a0a;
    color: #fff;
    outline: none;
    font-size: 1rem;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-form .contact-btn {
    flex: 1;
}

/* === Coordonnées centre === */
.contact-info {
    flex: 1 1 25%;
    background: rgba(10,10,10,0.7);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 0 20px #ff0000, 0 0 40px #d70a53;
}

.contact-info h3 {
    color: #ff4d4d;
    margin-bottom: 10px;
}

.contact-info p, .contact-info a {
    color: #fff;
    font-size: 1rem;
}

.contact-info a {
    font-weight: 600;
    color: #ff4d4d;
    text-decoration: none;
}

.contact-info a:hover {
    text-shadow: 0 0 10px #ff4d4d, 0 0 20px #d70a53;
}

/* === Disponibilités droite === */
.availability-card {
    flex: 1 1 30%; /* prend moins de place pour bien aligner avec form + coord */
    min-width: 250px; /* responsive */
    background: rgba(10,10,10,0.85);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 0 20px #ff0000, 0 0 40px #d70a53;
    max-height: 500px; /* fixe si tu veux limiter */
    overflow-y: auto; /* scroll si trop grand */
}

.availability-card h4 {
    color: #ff4d4d;
    margin-bottom: 10px;
}

.availability-card label {
    color: #fff;
    font-size: 1rem;
}

#availability {
    margin-top: 10px;
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 15px;
    max-height: 400px;
    overflow-y: auto; /* permet de scroller si la liste dépasse */
}

#availability ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.availability-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #fff;
}

.availability-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #fff;
}

/* === Boutons Contact spécifiques === */
.contact-btn {
    position: relative;
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2rem;
    color: #fff;
    background: transparent;
    border-radius: 10px;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact-btn span {
    position: relative;
    z-index: 2;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 10px;
    background: linear-gradient(120deg, #ff4d4d, #d70a53, #ff0000, #ff4d4d);
    background-size: 300% 300%;
    animation: borderFlow 3s linear infinite, gradientShift 5s ease-in-out infinite alternate;
    z-index: 0;
    filter: blur(2px);
}

.contact-btn::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #0a0a0a;
    border-radius: 8px;
    z-index: 1;
}

.contact-btn:hover::before { filter: blur(4px); }
.contact-btn:hover { color: #ff4d4d; text-shadow: 0 0 10px #ff4d4d, 0 0 20px #d70a53; }

@keyframes borderFlow {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

@keyframes gradientShift {
    0% {background-position: 0% 0%;}
    50% {background-position: 100% 100%;}
    100% {background-position: 0% 0%;}
}

/* === Responsive === */
@media (max-width: 1024px) {
    .contact-grid {
        flex-direction: column;
        align-items: center;
    }
    .contact-form, .contact-info, .availability-card {
        flex: 1 1 90%;
    }
}

/* === Animation Fade + Slide === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
/* === Sections "À propos" === */
.about-main {
    padding: 120px 50px 80px 50px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about-section h1,
.about-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: #ff0000; /* Rouge pur */
    text-shadow: 0 0 3px #ff0000b3, 0 0 8px #ff000080, 0 0 12px #ff000060;
    margin-bottom: 25px;
    animation: fadeInDown 1s ease forwards;
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease forwards;
}

/* === Fondateurs === */
.founders {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.founder-card {
    background: rgba(15,15,15,0.8);
    border-radius: 15px;
    padding: 25px;
    width: 220px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.founder-card h3 {
    color: #ff0000;
    margin-bottom: 10px;
    text-shadow: 0 0 3px #ff0000b3, 0 0 6px #ff000080;
}

.founder-card p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.4;
}

/* Hover effet néon rouge doux */
.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.6),
                0 0 20px rgba(255, 0, 0, 0.4);
}

/* === Animation d'entrée fondateurs === */
@keyframes fadeInUpDelay {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.founder-card:nth-child(1) {
    animation: fadeInUpDelay 0.8s ease forwards;
    animation-delay: 0.2s;
}
.founder-card:nth-child(2) {
    animation: fadeInUpDelay 0.8s ease forwards;
    animation-delay: 0.5s;
}
.founder-card:nth-child(3) {
    animation: fadeInUpDelay 0.8s ease forwards;
    animation-delay: 0.8s;
}
.founder-card:nth-child(4) {
    animation: fadeInUpDelay 0.8s ease forwards;
    animation-delay: 1.1s;
}

/* === Animations gauche/droite === */
.about-section {
    opacity: 0;
    transform: translateX(-50px);
    animation-fill-mode: forwards;
}

/* Animation depuis la gauche */
@keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Animation depuis la droite */
@keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(50px); }
    100% { opacity: 1; transform: translateX(0); }
}

.about-section:nth-child(odd) {
    animation: fadeInLeft 0.8s ease forwards;
    animation-delay: 0.3s;
}
.about-section:nth-child(even) {
    animation: fadeInRight 0.8s ease forwards;
    animation-delay: 0.6s;
}

/* === Cards principales === */
.about-main {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
}

.card1 {
    background: #111;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card1:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 18px rgba(255, 0, 0, 0.6);
}

.card1 h1, 
.card1 h2 {
    color: #ff0000;
    margin-bottom: 15px;
    text-shadow: 0 0 3px #ff0000b3, 0 0 8px #ff000080, 0 0 12px #ff000060;
}

.card1 p {
    line-height: 1.8;
    color: #eee;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .founders {
        flex-direction: column;
        gap: 30px;
    }
}
@media (max-width: 480px) {
    .about-section h1,
    .about-section h2 {
        font-size: 1.8rem;
    }
    .about-section p {
        font-size: 1rem;
    }
    .founder-card {
        width: 90%;
        padding: 20px;
    }
}

hf {
    display: block;              /* Pour le forcer en bloc comme un titre */
    text-align: center;          /* Centré au milieu */
    color: #ff0000;              /* Rouge pur */
    font-size: 2rem;             /* Taille du texte */
    font-family: 'Orbitron', sans-serif;
    margin: 20px auto;
    text-shadow: 0 0 3px rgba(255, 0, 0, 0.6),
                 0 0 8px rgba(255, 0, 0, 0.5),
                 0 0 15px rgba(255, 0, 0, 0.4); /* Néon rouge adouci */
}

.founder-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    border-radius: 8px;
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.founder-link:hover {
    background: #cc0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    transform: translateY(-3px);
}

/* === CONDITIONS & PRIVACY PAGE STYLE === */

/* Section générale */
.tos, .privacy {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 120px auto 80px auto;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 40px 50px;
    color: #f1f1f1;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.8s ease-in-out;
}

/* Contenu interne */
.tos .content, .privacy .content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tos h1, .privacy h1 {
    font-size: 2.3rem;
    color: #00bfff;
    text-align: center;
    margin-bottom: 25px;
}

.tos h2, .privacy h2 {
    color: #00aaff;
    margin-top: 25px;
    font-size: 1.4rem;
    border-left: 4px solid #00aaff;
    padding-left: 10px;
}

.tos p, .privacy p {
    font-size: 1rem;
    line-height: 1.7;
    color: #dcdcdc;
    text-align: justify;
}

/* Lien "Contact" */
.tos a, .privacy a {
    color: #00bfff;
    text-decoration: none;
    font-weight: 600;
}
.tos a:hover, .privacy a:hover {
    text-decoration: underline;
}

/* Séparateur entre sections */
.divider {
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, #00bfff, transparent);
    margin: 50px auto;
    border-radius: 50px;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .tos, .privacy {
        padding: 25px;
        margin: 90px 15px 60px 15px;
    }

    .tos h1, .privacy h1 {
        font-size: 1.8rem;
    }

    .tos h2, .privacy h2 {
        font-size: 1.2rem;
    }
}

/* Animation d’apparition */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
