* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #fff;
    overflow: hidden;
}

.coming-soon-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&q=80&w=1500');
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.7) 0%, rgba(10,10,10,0.95) 100%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.logo span {
    color: #ff4d6d; /* GlamFynder Pink */
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tagline {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 3rem;
}

/* Countdown Styles */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3rem;
}

.time-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 12px;
    min-width: 90px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.time-box span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ff4d6d;
}

.time-box p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

/* Signup Form */
.signup-form {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
}

.signup-form input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: #fff;
    outline: none;
}

.signup-form button {
    padding: 15px 30px;
    border-radius: 30px;
    border: none;
    background: #ff4d6d;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.signup-form button:hover {
    background: #e63958;
    transform: translateY(-2px);
}

.social-links a {
    color: #888;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.social-links a:hover {
    color: #ff4d6d;
}

@media (max-width: 600px) {
    h1 { font-size: 2.2rem; }
    .signup-form { flex-direction: column; }
    .countdown { gap: 10px; }
}