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

body {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

.content {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.logo {
    margin-bottom: 30px;
}

.logo i {
    font-size: 48px;
    color: #00ff88;
    margin-bottom: 15px;
}

.logo h1 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #00ff88;
}

p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #cccccc;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

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

.time-block span:first-child {
    font-size: 36px;
    font-weight: 700;
    color: #00ff88;
    display: block;
}

.time-block span:last-child {
    font-size: 14px;
    color: #cccccc;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    color: #ffffff;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #00ff88;
}

@media (max-width: 768px) {
    .countdown {
        flex-wrap: wrap;
    }
    
    .time-block {
        min-width: 80px;
    }
    
    .time-block span:first-child {
        font-size: 28px;
    }
    
    .content {
        padding: 20px;
    }
} 