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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(100, 100, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 100, 100, 0.05) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.splash-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.splash-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    max-width: 700px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.logo-container {
    margin-bottom: 30px;
}

.logo-text {
    font-size: 3.5em;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 4px;
    display: block;
}

.logo-subtitle {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-top: 5px;
}

h1 {
    font-size: 2.8em;
    color: #fff;
    margin: 20px 0 10px;
    font-weight: 300;
    letter-spacing: 2px;
}

.loader {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 40px 0;
    overflow: hidden;
}

.loader-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    width: 0%;
    background-size: 200% 100%;
    animation: loading 2s ease-in-out infinite, shimmer 3s linear infinite;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.subtitle {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.9);
    margin: 20px 0 10px;
    font-weight: 300;
}

.info {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1em;
}

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

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 2.5em;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 10px;
    min-width: 70px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-label {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info {
    margin: 30px 0 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 8px 0;
    font-size: 0.95em;
}

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

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.3s;
    font-size: 0.9em;
    background: rgba(255, 255, 255, 0.03);
}

.social-links a:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 480px) {
    .splash-content {
        padding: 30px 20px;
    }
    
    .logo-text {
        font-size: 2.5em;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .countdown {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .countdown-number {
        font-size: 1.8em;
        min-width: 55px;
        padding: 8px 15px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links a {
        width: 100%;
    }
}