* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.container {
    text-align: center;
    padding: 2rem;
}

.content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.time-block {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    min-width: 100px;
}

.time-block span {
    display: block;
}

.time-block span:first-child {
    font-size: 2.5rem;
    font-weight: bold;
}

.time-block .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.social-links {
    margin-top: 2rem;
}

.social-link {
    color: white;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .content {
        padding: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .time-block {
        min-width: 80px;
    }
} 