* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 800px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.logo span {
    color: #f39c12;
}

h1 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

p {
    color: #7f8c8d;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.countdown-item {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 20px 15px;
    border-radius: 10px;
    min-width: 90px;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-container {
    width: 100%;
    background-color: #ecf0f1;
    border-radius: 10px;
    height: 12px;
    margin: 30px 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #e74c3c 0%, #f39c12 100%);
    width: 65%;
    border-radius: 10px;
    animation: progress-animation 3s ease-in-out infinite alternate;
}

@keyframes progress-animation {
    0% {
        width: 65%;
    }
    100% {
        width: 75%;
    }
}

.contact-info {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 5px solid #f39c12;
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
}

.decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
    z-index: -1;
}

.decoration-1 {
    top: -100px;
    right: -100px;
}

.decoration-2 {
    bottom: -100px;
    left: -100px;
}

@media (max-width: 600px) {
    .container {
        padding: 25px;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 15px 10px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    p {
        font-size: 1rem;
    }
}