@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    height: 100%;
    overflow: hidden;
}

body {
    background: url('https://www.colorhexa.com/17161c.png') no-repeat center center fixed;
    background-size: cover;
}

.navbar {
    width: 100%;
    background: rgba(7, 7, 7, 255);
    padding: 30px 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    height: 50px;
}

.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.navbar nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.page-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 90%;
    max-width: 900px;
    background: rgba(7, 7, 7, 255);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    color: white;
    text-align: center;
    z-index: 5;
}

h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.progress-bar {
    width: 100%;
    background: #17161c;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.progress {
    height: 100%;
    background: #67666e;
    transition: width 0.5s ease-in-out;
}

.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.step {
    flex: 1 1 30%;
    max-width: 140px;
    opacity: 0.4;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.step.done {
    opacity: 1;
}

.step img {
    max-width: 80px;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.step:hover img {
    transform: scale(1.1);
}

.step span {
    font-weight: bold;
}

.actions {
    margin-top: 30px;
}

.button {
    background: #3e80c2;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
}

.button:hover {
    background: #696d6e;
}

.success-message {
    font-size: 20px;
    color: lightgreen;
    margin-top: 20px;
}

.navbar-logo {
    position: absolute;
    left: 20px;
    height: 55px;
}

@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .page-wrapper {
        transform: translate(-50%, -30%);
        padding: 30px;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');

/* ...existing styles trimmed for brevity (assumed to be already present)... */

.button {
    background: #111b1c;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.button:hover {
    background: #696d6e;
}

.button:disabled {
    background: #1c1c1c;
    color: #888;
    cursor: not-allowed;
    opacity: 0.6;
}

.success-message {
    font-size: 20px;
    color: lightgreen;
    margin-top: 20px;
}


/* === CENTERED NAVBAR FIX === */


.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(7, 7, 7, 255);
    backdrop-filter: blur(5px);
}

.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.navbar nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar nav ul li a:hover {
    color: #d7ddde;
}
