body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    font-family: 'Courier New', Courier, monospace;
    color: #00FF30;
}

.container {
    text-align: center;
}

.logo-container {
    position: relative;
    width: 350px;
    height: 350px;
    margin-bottom: 100px; /* Adjusted margin-bottom */
}

img.logo {
    width: 100%;
    height: auto; /* Ensure the logo image maintains aspect ratio */
}

.neon-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 1px solid #00FF30;
    border-radius: 50%;
    box-shadow: 0 0 20px #00FF30, 0 0 30px #00FF30, 0 0 40px #00FF30;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px #00FF30, 0 0 30px #00FF30, 0 0 40px #00FF30;
    }
    50% {
        box-shadow: 0 0 30px #00FF30, 0 0 40px #00FF30, 0 0 50px #00FF30;
    }
}

.progress-container {
    width: 80%;
    margin: 0 auto; /* Center the progress bar horizontally */
    margin-top: 20px; /* Adjusted margin-top */
    text-align: center; /* Center align the progress bar and text */
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: black;
    border: 2px solid #00FF30;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 0;
    background-color: #00FF30;
    animation: loadProgress 6s linear forwards;
}

@keyframes loadProgress {
    to {
        width: 100%;
    }
}

.progress-text {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
}
