/* Styles globaux */
:root {
    --violet: #4b0082;
    --electrique: #00f0ff;
    --fond: #0a0015;
    --flash: #d946ef;
    --clair: #fafafa;
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--fond);
    font-family: 'Segoe UI', sans-serif;
    color: white;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    position: relative;
    max-width: 1000px;
    margin: auto;
    padding: 2rem;
    z-index: 2;
}

/* 🔮 Fumée animée */
body::before {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 255, 0.05), transparent 70%) repeat;
    animation: smoke 30s infinite linear;
    z-index: 0;
    pointer-events: none;
}

@keyframes smoke {
    0% { transform: rotate(0deg) scale(1); opacity: 0.3; }
    50% { transform: rotate(180deg) scale(1.2); opacity: 0.4; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.3; }
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, var(--violet), var(--electrique));
    padding: 1rem 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px #000;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.logo span {
    color: var(--flash);
}

nav a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--flash);
}

.hero {
    text-align: center;
    margin-bottom: 3rem;
}

h1, h2 {
    color: var(--flash);
}

section {
    margin: 4rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

th, td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    background-color: var(--violet);
    color: var(--clair);
}

td {
    color: var(--clair);
}

form {
    display: flex;
    flex-direction: column;
}

input, textarea {
    margin: 10px 0;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background-color: #eee;
    font-size: 14px;
}

button {
    background: var(--electrique);
    color: #000;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button:hover {
    background: var(--flash);
    color: white;
}

footer {
    text-align: center;
    margin-top: 4rem;
    font-size: 0.9rem;
    color: #bbb;
}

.centered {
    text-align: center;
    font-style: italic;
}

/* Styles spécifiques pour la page Coming Soon */
.coming-soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background: linear-gradient(135deg, #1b1536, #2a1f58);
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.coming-soon-content {
    text-align: center;
    max-width: 90%;
}

.coming-soon-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
}

.coming-soon-title {
    margin-top: 2rem;
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
}

.coming-soon-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-top: 1rem;
}
