* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background-color: #050505; 
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #0a192f 0%, #020205 100%);
    z-index: -1;
}

.overlay::after {
    content: "";
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background-image: 
        linear-gradient(rgba(0, 153, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 153, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: rotate(15deg);
    animation: bgMove 20s linear infinite;
}

@keyframes bgMove {
    from { background-position: 0 0; }
    to { background-position: 100px 100px; }
}


.social-sidebar {
    position: fixed;
    bottom: 30px;
    left: 30px;
    text-align: left;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: slideIn 1s ease-out forwards 1.2s;
    opacity: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.4rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 153, 255, 0.2);
    transition: 0.3s all;
}

.discord:hover { background: #5865F2; box-shadow: 0 0 15px #5865F2; border-color: transparent; }
.github:hover { background: #333; box-shadow: 0 0 15px #ffffff50; border-color: transparent; }

.dev-credits {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.dev-credits span { color: #00c3ff; font-weight: 600; }


@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); filter: blur(10px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.container > * {
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.logo-container { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 30px; animation-delay: 0.2s; }
.logo {  margin-bottom: -40px; width: 160px; filter: drop-shadow(0 0 15px #0099ff); animation: float 3s ease-in-out infinite alternate; }
.brand-name { font-size: 3.5rem; font-weight: 800; }
.brand-name span { color: #00c3ff; text-shadow: 0 0 20px #0099ff; }

.coming-soon { animation-delay: 0.4s; letter-spacing: 8px; margin-top: 10px; opacity: 0.8; font-size: 1.2rem; }
.description { animation-delay: 0.5s; margin-top: 10px; color: rgba(255,255,255,0.6); }


.countdown-container {
    display: flex;
    gap: 15px;
    margin: 40px 0;
    justify-content: center;
    animation-delay: 0.7s;
}

.time-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 15px;
    border-radius: 12px;
    min-width: 90px;
    border: 1px solid rgba(0, 153, 255, 0.15);
    backdrop-filter: blur(5px);
}

.time-box span { font-size: 2rem; font-weight: 800; display: block; color: #00c3ff; }
.time-box p { font-size: 0.8rem; text-transform: uppercase; opacity: 0.7; }

.time-box:hover {
    transform: translateY(-5px);
    border-color: #0099ff;
    cursor: default;
}


.cta-section { animation-delay: 0.9s; }
.btn {
    display: inline-block;
    padding: 15px 35px;
    border: 2px solid #0099ff;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
    background: rgba(0, 153, 255, 0.05);
}

.btn:hover { background: #0099ff; box-shadow: 0 0 30px #0099ff; transform: scale(1.05); }


footer {
    position: fixed;
    bottom: 20px;
    width: 100%;
    font-size: 0.8rem;
    opacity: 0.5;
    animation-delay: 1.4s;
}

.smp { color: #00c3ff; font-weight: bold; }

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}


@media (max-width: 768px) {
    .social-sidebar { position: relative; left: 0; bottom: 0; align-items: center; margin-top: 30px; }
    .brand-name { font-size: 2.2rem; }
    .countdown-container { transform: scale(0.8); }
    body { overflow-y: auto; padding: 50px 0; }
}