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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #dc2626 0%, #ea580c 50%, #f97316 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.container {
    width: 100%;
    height: 100%;
    max-width: 600px;
    padding: 60px;
    z-index: 10;
    position: relative;
}

.construction-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideIn 0.8s ease-out;
}

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

.logo {
    font-size: 4rem;
    color: #dc2626;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #dc2626, #ea580c, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    margin: 30px 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #dc2626, #ea580c, #f97316);
    border-radius: 4px;
    animation: progress 3s ease-in-out infinite;
}

@keyframes progress {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.features {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    background: rgba(220, 38, 38, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 1.5rem;
    color: #dc2626;
}

.feature span {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #dc2626, #ea580c, #f97316);
    color: white;
    padding: 15px;
    border-radius: 15px;
    min-width: 80px;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
    animation: bounce 2s infinite;
}

.countdown-item:nth-child(2) {
    animation-delay: 0.2s;
}

.countdown-item:nth-child(3) {
    animation-delay: 0.4s;
}

.countdown-item:nth-child(4) {
    animation-delay: 0.6s;
}

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

.number {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.label {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 5px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626, #ea580c, #f97316);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.contact p {
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.newsletter {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

#email-input {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

#email-input:focus {
    border-color: #dc2626;
}

#subscribe-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, #dc2626, #ea580c, #f97316);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

#subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: float 8s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-200px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        max-height: 95vh;
    }
    
    .construction-card {
        padding: 30px 20px;
        margin: 10px;
        max-height: 90vh;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .logo {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .countdown {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 10px;
        margin: 5px;
    }
    
    .number {
        font-size: 1.3rem;
    }
    
    .label {
        font-size: 0.7rem;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .feature {
        min-width: 120px;
        padding: 12px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact p {
        font-size: 0.9rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
        max-height: 98vh;
    }
    
    .construction-card {
        padding: 25px 15px;
        max-height: 95vh;
    }
    
    .title {
        font-size: 1.6rem;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .countdown {
        gap: 8px;
    }
    
    .countdown-item {
        min-width: 50px;
        padding: 8px;
    }
    
    .number {
        font-size: 1.1rem;
    }
    
    .label {
        font-size: 0.6rem;
    }
    
    .feature {
        min-width: 100px;
        padding: 10px;
    }
    
    .feature i {
        font-size: 1.2rem;
    }
    
    .feature span {
        font-size: 0.8rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact p {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .container {
        max-height: 100vh;
    }
    
    .construction-card {
        padding: 20px 10px;
        max-height: 98vh;
    }
    
    .title {
        font-size: 1.4rem;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .countdown-item {
        min-width: 45px;
        padding: 6px;
    }
    
    .number {
        font-size: 1rem;
    }
    
    .label {
        font-size: 0.5rem;
    }
} 