body {
    background-color: black;
    color: #fff;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    overflow: hidden; /* Prevents up/down scroll bar */
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.Logo {
    width: 200px;
    height: auto;
    display: block;
    margin: 20px auto;
}

.title {
    font-size: 2.5rem;
    margin-top: 30px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

/* Responsive font size for mobile devices */
@media (max-width: 600px) {
    .title {
        font-size: 1.5rem;
        margin-top: 20px;
        margin-bottom: 8px;
    }
}

.subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    text-align: center;
    color: #ccc;
}

.loader {
    border: 6px solid #222;
    border-top: 6px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin-top: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}



.hazard-band.bottom {
    bottom: 0;
}

.fade-in {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    animation: fadeInUp 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
