/* Fonte */
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

/* Fundo escuro */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #121212;
    font-family: 'Poppins', sans-serif;
}

.background {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: linear-gradient(135deg, #1b1b1b, #0f0f0f);
    filter: blur(0px);
    z-index: 1;
    transition: filter 0.3s ease-in-out;
}

/* Canvas das partículas */
#particles {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:2;
}

/* Container spinner e texto */
.loading-container {
    position: fixed;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
}

.spinner {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 12px solid #fff;
    border-top-color: #ffd700;
    animation: spin 1.2s linear infinite;
    margin: auto;
}

.loading-text {
    font-family: 'Luckiest Guy', cursive;
    font-size: 3rem;
    color: #ffd700;
    margin-top: 25px;
    letter-spacing: 0.2rem;
}

/* Spinner animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsivo */
@media (max-width: 425px) {
    .spinner {
        width: 80px;
        height: 80px;
        border: 8px solid #fff;
        border-top-color: #ffd700;
    }
    .loading-text {
        font-size: 2rem;
    }
}
