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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #e94249, #ff6b73);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.shape-5 {
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Content Styles */
.content {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    animation: slideInDown 1s ease-out;
}

.logo-icon {
    font-size: 3rem;
    margin-right: 0;
    animation: bounce 2s infinite;
    display: flex;
    justify-content: center;
}

.logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(233, 66, 73, 0.3);
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(233, 66, 73, 0.4);
}

/* Brand Section */
.brand-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
    animation: slideInUp 1s ease-out 0.3s both;
}

.rocket-icon {
    font-size: 2rem;
    margin-right: 12px;
    animation: bounce 2s infinite;
}

.brand-text {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    background: linear-gradient(45deg, #e94249, #ff6b73);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    background: linear-gradient(45deg, #e94249, #ff6b73);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Main Text */
.main-text {
    margin-bottom: 50px;
    animation: slideInUp 1s ease-out 0.3s both;
}

.title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    animation: slideInUp 1s ease-out 0.6s both;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(233, 66, 73, 0.1);
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
    min-width: 100px;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(233, 66, 73, 0.15);
    border-color: #e94249;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e94249;
    line-height: 1;
    margin-bottom: 8px;
}

.countdown-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Email Subscription */
.subscription {
    margin-bottom: 50px;
    animation: slideInUp 1s ease-out 0.9s both;
}

.subscription h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

.email-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 15px;
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(233, 66, 73, 0.1);
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
}

.email-form:focus-within {
    border-color: #e94249;
    box-shadow: 0 10px 30px rgba(233, 66, 73, 0.2);
}

.email-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 25px;
    font-size: 1rem;
    background: transparent;
    color: #2c3e50;
}

.email-form input::placeholder {
    color: #adb5bd;
}

.email-form button {
    background: linear-gradient(45deg, #e94249, #ff6b73);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.email-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(233, 66, 73, 0.3);
}

.privacy-text {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    animation: slideInUp 1s ease-out 1.2s both;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: #e94249;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 66, 73, 0.3);
}

/* Progress Bar */
.progress-container {
    width: 100%;
    max-width: 600px;
    animation: slideInUp 1s ease-out 1.5s both;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #e94249, #ff6b73);
    border-radius: 10px;
    width: 75%;
    transition: width 2s ease-out;
    animation: progressAnimation 2s ease-out 1.5s;
}

@keyframes progressAnimation {
    from {
        width: 0%;
    }
    to {
        width: 75%;
    }
}

.progress-text {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

#progressPercent {
    color: #e94249;
    font-weight: 600;
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .countdown {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .countdown-item {
        padding: 20px 15px;
        min-width: 80px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .email-form {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        border-radius: 20px;
    }
    
    .email-form button {
        border-radius: 15px;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .logo-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        padding: 15px 10px;
        min-width: 70px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
}