@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@300;400&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #ffe6f0, #ffb3ba);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #d63384;
    margin-bottom: 5px;
}

.brand-type {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.time-box {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 60px;
}

.time-box span {
    font-size: 2rem;
    font-weight: bold;
    color: #d63384;
}

.time-box p {
    font-size: 0.8rem;
    margin: 0;
    color: #666;
}

#signup-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

#email {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 250px;
    font-size: 1rem;
}

button {
    padding: 10px 20px;
    background: #d63384;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

button:hover {
    background: #b02a6a;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    margin: 0 10px;
    color: #d63384;
    text-decoration: none;
    font-weight: bold;
}

footer {
    font-size: 0.8rem;
    color: #666;
}

@media (max-width: 600px) {
    .container {
        padding: 15px;
    }
    .brand-name {
        font-size: 2.5rem;
    }
    #countdown {
        flex-wrap: wrap;
        gap: 10px;
    }
    #signup-form {
        flex-direction: column;
        align-items: center;
    }
    #email {
        width: 100%;
    }
}