* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0c0c29 0%, #302b63 50%, #24243e 100%);
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.content {
    max-width: 900px;
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo h1 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.coming-soon h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, #ff6b6b, #556fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.coming-soon p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.countdown {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.countdown div {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.countdown span:first-child {
    font-size: 1.8rem;
    font-weight: 600;
}

.countdown .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 5px;
    opacity: 0.8;
}

.company-info {
    margin: 40px 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.company-info h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #ffffff;
}

.company-info ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.company-info li {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.company-info li:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.company-info i {
    font-size: 1.2rem;
    color: #556fff;
}

.newsletter {
    margin: 40px 0;
}

.newsletter h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.form-group {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.form-group input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    outline: none;
    font-family: inherit;
}

.form-group button {
    padding: 12px 25px;
    border: none;
    border-radius: 0 30px 30px 0;
    background: linear-gradient(to right, #ff6b6b, #556fff);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: inherit;
}

.form-group button:hover {
    background: linear-gradient(to right, #ff5454, #4458ff);
}

#form-message {
    margin-top: 15px;
    min-height: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

footer {
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .content {
        padding: 30px 20px;
    }
    
    .logo h1 {
        font-size: 2.2rem;
    }
    
    .coming-soon h2 {
        font-size: 1.8rem;
    }
    
    .countdown div {
        width: 70px;
        height: 70px;
    }
    
    .company-info ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .form-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-group input, 
    .form-group button {
        width: 100%;
        border-radius: 30px;
    }
} 