body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #7FFFD4;
    margin: 0;
    padding: 0;
    transition: background-color 0.3s ease;
}

.navbar {
    background-color: black !important;
}

.nav-link {
    color: aquamarine !important;
}

    .nav-link:hover {
        color: rgba(0, 255, 255, 0.8) !important;
    }

.btn-primary {
    background-color: #7FFFD4;
    color: #FFFFFF;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .btn-primary:hover {
        background-color: rgba(0, 255, 255, 0.8);
        transform: scale(1.05);
    }

.framed-text {
    margin-top: 60px; 
    font-size: 24px; 
    font-weight: bold; 
    font-family: 'Inter', sans-serif; 
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.5); 
    border-radius: 10px; 
    background-color: #7FFFD4; 
    color: black; 
    display: inline-block; 
    text-align: center; 
}

        .footer {
            position: relative;
            bottom: 0;
            width: 100%;
            text-align: center;
            padding: 10px 0; 
        }
        .footer-bottom-text {
            margin: 0;
            font-size: 11px; 
        }
#errorMessage {
    color: #7FFFD4 !important;
}


.star-spinner {
    position: relative; 
    width: 6rem; 
    height: 6rem; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    animation: spin 3s linear infinite; 
}
    .star-spinner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        clip-path: polygon( 50% 0%, 
        61% 35%, 
        98% 35%, 
        68% 57%, 
        79% 91%, 
        50% 70%, 
        21% 91%, 
        32% 57%, 
        2% 35%, 
        39% 35% 
        ); 
        background-color: #7FFFD4; 
        animation: spin 3s linear infinite; 
        z-index: 0; 
    }

.loading-text {
    position: absolute; 
    color: black; 
    font-weight: bold; 
    font-size: 1.5rem; 
    z-index: 1; 
    text-align: center; 
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 991px) {
    .video-container {
        margin-bottom: 30px;
    }
}