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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f0f2f5;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.logo {
    max-width: 150px;
    width: 100%;
    margin-bottom: 30px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.social a {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.social a:hover {
    background: #0056b3;
}

.countdown {
    margin-top: 30px;
    font-style: italic;
    color: #666;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 1rem;
    }
}
