/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #111;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid #333;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    text-align: center;
    box-sizing: border-box;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    box-shadow: 0 0 15px #fff;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 150px 20px 100px;
    background: linear-gradient(180deg, #000, #1a1a1a);
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero p {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 40px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.time-block {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    min-width: 80px;
    border: 1px solid #333;
}

.time-block span {
    font-size: 36px;
    font-weight: 700;
    display: block;
}

.launch-date {
    font-size: 18px;
    color: #999;
}

/* Features Section */
.features {
    padding: 80px 50px;
    background: #000;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.feature {
    text-align: center;
    padding: 20px;
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.feature p {
    color: #ccc;
}

.feature-image {
    text-align: center;
}

.mockup {
    max-width: 300px;
    filter: grayscale(100%);
    border: 1px solid #333;
    border-radius: 10px;
}

/* Register Section */
.register {
    text-align: center;
    padding: 80px 20px;
    background: #1a1a1a;
}

.register h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

input[type="email"] {
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
    border-radius: 5px;
    width: 300px;
    max-width: 100%;
}

button.cta-btn {
    border: none;
    cursor: pointer;
}

.success {
    color: #ccc;
    font-size: 18px;
    margin-bottom: 30px;
}

.store-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    border-top: 1px solid #333;
    font-size: 14px;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

footer a:hover {
    text-decoration: underline;
}

/* Add this to the existing style.css */
.error {
    color: #ff5555;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Add this to the existing style.css */
.consent {
    margin: 15px 0;
    text-align: left;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.consent input[type="checkbox"] {
    margin-right: 10px;
}

.consent label {
    font-size: 14px;
    color: #ccc;
}

.consent a {
    color: #fff;
    text-decoration: underline;
}

.consent a:hover {
    color: #ddd;
}

.privacy {
    padding: 100px 50px 50px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.privacy h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.privacy h2 {
    font-size: 24px;
    margin: 20px 0 10px;
}

.privacy p {
    color: #ccc;
}

.video-container {
    background: #000;
}


@media (max-width: 600px) {

.countdown {
    gap: 5px;
    margin: 5px 0;
}

.time-block span {
    font-size: 16px;
}

    header {    
        display: inline-block;
	text-align: center;
	max-width: 100%;
    }

    .cta-btn {	
        width: 90%; /* Augmente la largeur du bouton pour les petits écrans */
        font-size: 16px; /* Réduit la taille de la police pour s'adapter à l'écran */
    }

    .video-container {
        position: relative;
        width: 100%;
        padding-top: 125%; /* 5 ÷ 4 = 1.25, donc 125% pour le ratio 4:5 */
        overflow: hidden;
        margin-bottom: 40px;
    }

    .video-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}
