:root {
    --primary-color: #2d5af6;
    --accent-color: #8ba4fe;
    --text-color: #2c3e50;
    --bg-color: #f8f9fc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fc, #eef1f8);
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(45, 90, 246, 0.08);
    border: 1px solid rgba(45, 90, 246, 0.05);
}

.logo {
    margin-bottom: 3rem;
}

.logo-image {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    color: var(--text-color);
}

p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
}

.timer {
    margin: 2rem 0;
}

#launch-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(45, 90, 246, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress {
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    animation: progress 3s ease-in-out infinite;
}

.social-links {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icon {
    color: var(--text-color);
    font-size: 1.4rem;
    transition: transform 0.3s ease, color 0.3s ease;
    opacity: 0.8;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    opacity: 1;
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 75%; }
    100% { width: 0%; }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .content {
        padding: 2rem;
    }
    
    .logo {
        font-size: 2.2rem;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    p {
        font-size: 1rem;
    }
}
