.hero-bg {
    background: url('../img/back-img.avif') center/cover no-repeat;
    min-height: 100vh;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.top-bar {
    position: relative;
    z-index: 10;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #e8ff1e;
    border-radius: 8px;
}

.top-links a {
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
}

.help-btn {
    background: #4a4747;
    padding: 6px 16px;
    border-radius: 20px;
}

.hero-center {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: 20px;
    color: #fff;
}

.hero-center h1 {
    font-size: 55px;
    font-weight: 700;
    line-height: 1;
}

.hero-center span {
    color: #e8ff1e;
}

.hero-center p {
    color: #ccc;
    margin-top: 15px;
}

.login-card {
    background: rgba(20, 20, 20, 0.6);
    padding: 35px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    margin-top: 30px;
}

.login-card input {
    margin-top: 10px;
}

.btn {
    border-radius: 20px;
    background: #e8ff1e;
}

.btn-2 {
    color: #fff;
    background: #000;
    border-radius: 20px;
}

.btn-2:hover {
    color: #fff;
}

.store-btns button {
    background: #333;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    margin: 5px;
}

.footer {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}


/* ----------------------------dashboardpage page -------------------------- */
#dashboardpage {
    background: #000;
}