:root {
    --bg-color: #050505;
    --card-bg: #0a0a0a;
    --text-primary: #e0e0e0;
    --accent-color: #9c27b0; /* Violet Anomalie */
    --accent-glow: #ffc107;  /* Ambre */
    --font-header: 'Cinzel', serif;
    --font-body: 'Space Mono', monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background Effects */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48ZmlsdGVyIGlkPSJuIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMC42NSIgbnVtT2N0YXZlcz0iMyIgc3RpdGNoVGlsZXM9InN0aXRjaCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNuKSIvPjwvc3ZnPg==');
    opacity: 0.05;
    pointer-events: none;
    z-index: 1000;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, #1a0a2a 0%, #050505 70%);
    padding: 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.book-cover {
    flex: 1;
    max-width: 400px;
}

.book-cover img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(156, 39, 176, 0.3);
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 20px;
    margin-bottom: 20px;
}

h1 {
    font-family: var(--font-header);
    font-size: 3.5rem;
    margin-bottom: 10px;
    line-height: 1.1;
}

.credits {
    margin: 20px 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.credits strong {
    color: var(--accent-color);
}

.status-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(156, 39, 176, 0.1);
    border-left: 3px solid var(--accent-color);
    padding: 15px 25px;
    margin-top: 30px;
    font-weight: bold;
    color: var(--accent-glow);
}

.pulse-icon {
    width: 12px;
    height: 12px;
    background-color: var(--accent-glow);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-glow);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 193, 7, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

/* Concept Section */
.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-list {
    list-style: none;
    margin-top: 30px;
}

.features-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.features-list li::before {
    content: "◈";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Sections */
.section {
    padding: 100px 0;
}

.bg-darker {
    background-color: #030303;
}

.section-title {
    font-family: var(--font-header);
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--accent-color);
}

.section-title.left {
    text-align: left;
}

.centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--card-bg);
    padding: 30px;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    text-align: center;
}

.card h3 {
    font-family: var(--font-header);
    margin-bottom: 10px;
    color: var(--accent-glow);
}

.card .role {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    opacity: 0.7;
}

/* Waitlist */
.teaser-form {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle at center, #1a0a2a 0%, #050505 100%);
}

.waitlist {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.waitlist input {
    padding: 15px 25px;
    border-radius: 4px;
    border: 1px solid #333;
    background: #111;
    color: white;
    min-width: 300px;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

/* Quote */
.quote-section {
    padding: 100px 0;
    text-align: center;
}

blockquote {
    font-family: var(--font-header);
    font-size: 1.8rem;
    max-width: 900px;
    margin: 0 auto;
}

blockquote cite {
    display: block;
    margin-top: 20px;
    font-size: 1rem;
    color: var(--accent-color);
}

/* Footer */
.footer {
    padding: 60px 0;
    text-align: center;
    opacity: 0.5;
    font-size: 0.8rem;
}

.rotating {
    animation: rotate 60s linear infinite;
    max-width: 400px;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 60px 0;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .book-cover {
        max-width: 280px; /* Force a larger size on mobile than the flex default */
        order: -1; /* Ensure cover stays on top */
    }
    .hero-text {
        min-width: unset;
    }
    .status-box {
        justify-content: center;
    }
    .concept-grid { 
        grid-template-columns: 1fr; 
        text-align: center;
    }
    .section-title.left {
        text-align: center;
    }
    h1 { 
        font-size: 2.2rem; 
    }
    blockquote {
        font-size: 1.3rem;
    }
    .rotating {
        max-width: 200px;
        margin: 0 auto;
    }
}
