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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: rgba(18, 18, 18);
    background-image: url('/Fundo.png');
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff ;
    overflow: hidden;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
}

.loader {
    border: 4px solid #fff;
    border-top: 4px solid transparent;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.container {
    text-align: center;
    background-color: rgba(28, 28, 28, 0.85); /* Slight transparency */
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    max-width: 400px;
    width: 100%;
    transition: opacity 0.5s ease;
}

h1, h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.spot {
    margin-bottom: 40px;
}

.countdown-container {
    margin-bottom: 30px;
    padding: 20px;
    border: 2px solid #fff;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1); /* Slight transparent white background */
}

.countdown-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

#countdown {
    display: flex;
    justify-content: space-around;
}

#countdown div {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

#countdown p {
    font-size: 1rem;
    margin-top: 5px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    padding: 12px 20px;
    font-size: 1.2rem;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    display: block;
    text-align: center;
}

.btn:hover {
    background-color: #333;
    color: #fff;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 1.5rem; /* Reduced font size for headings on small screens */
    }

    h2 {
        font-size: 1.2rem; /* Adjusted spot text */
    }

    #countdown div {
        font-size: 1.2rem; /* Smaller countdown numbers */
    }

    .btn {
        padding: 8px 16px; /* Slightly smaller button */
        font-size: 0.9rem; /* Reduced button text size */
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.2rem; /* Further reduced font size for very small screens */
    }

    h2 {
        font-size: 1rem; /* Adjusted spot text for mobile */
    }

    #countdown div {
        font-size: 1rem; /* Further reduced countdown numbers */
    }

    .btn {
        padding: 6px 14px; /* Smaller button */
        font-size: 0.8rem; /* Reduced button text size */
    }

    .container {
        padding: 30px; /* Reduced padding for smaller screens */
    }
}