/* ================= RESET ================= */
html, body {
    height: 100%;
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    color: #fff;
    overflow: hidden;
}

/* ================= BACKGROUND ================= */
body {
    background: linear-gradient(
        120deg,
        #081a3a 0%,
        #161433 45%,
        #3a0d0d 100%
    );
}

/* ================= PARTICLES ================= */
#particles-js {
    position: fixed;
    inset: 0;
    z-index: -1;
}

/* ================= NAVBAR ================= */
.navbar {
    position: relative;
    z-index: 5;
    padding: 25px 25px;
}

/* Desktop */
.logo {
    letter-spacing: 6px;
    font-size: 22px;
}

.nav-links a {
    color: #ad8138 !important;
    font-size: 15px !important;
    margin-left: 15px;
    text-transform: uppercase;
    opacity: 0.7;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    opacity: 1;
}

/* ================= MOBILE BAR ================= */
.mobile-bar {
    display: none;
    height: 56px;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(270deg, #0f2255, #532e49 80%, #5d2225);
    border-radius: 10px;
    padding: 0 15px;
}

.mobile-logo {
    letter-spacing: 6px;
    font-size: 18px;
}

.menu-btn {
    position: absolute;
    left: 15px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 4px 0;
}

/* ================= MOBILE SLIDE MENU ================= */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 75vw;
    max-width: 320px;

    background: linear-gradient(
        135deg,
        #081a3a 0%,
        #161433 50%,
        #3a0d0d 100%
    );

    z-index: 999;
    padding: 90px 35px;

    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.mobile-menu.show {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.mobile-nav a {
    color: #d6b36a;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0.9;
}

.mobile-nav a:hover {
    opacity: 1;
}

/* ================= CENTER RING ================= */
.center-ring {
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    width: min(80vw, 685px);
    height: min(80vw, 712px);
    border-radius: 50%;
}


/* ================= CENTER CONTENT ================= */
.center-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(25px, 5vw, 60px);
}

.quote {
    font-size: clamp(14px, 2.5vw, 18px);
    font-style: italic;
    line-height: 1.6;
}
/* wrapper that holds the quotes */
.center-content > div > div {
    display: grid;          /* overlay items */
}

/* all quotes sit in the same grid cell */
.quote {
    grid-area: 1 / 1;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* visible quote */
.quote.active {
    opacity: 1;
}

.author {
    margin: 20px 0;
    letter-spacing: 3px;
    color: #d6b36a;
    font-size: clamp(12px, 2vw, 14px);
}

.small-text {
    font-size: clamp(10px, 1.8vw, 16px);
    opacity: 0.7;
    margin-top: 30px;
}

/* ================= FOOTER ================= */
.footer {
    position: absolute;
    bottom: 25px;
    width: 100%;
    z-index: 3;
    text-align: center;
    font-size: clamp(12px, 2vw, 12px);
    opacity: 0.6;
    display: flex;
    justify-content: space-between;
    padding: 25px;
}
.footer>p{
    margin: 0px;
}
.text-privacy-nme{
    color: #ffffffb5;
    text-transform: uppercase;
}
.text-privacy-nme:hover{
    color: #fff;
}
.social i {
    margin: 0 10px;
    cursor: pointer;
}


.login-box {
    padding: 25px;
    background: linear-gradient(180deg, #0f172a, #020617) !important;
    border-radius: 14px;
    box-shadow: 0 0 40px rgba(0,0,0,.5);
}

.form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.3);
    border-radius: 0;
    color: #fff;
    padding-left: 0;
}
.form-control:hover {
    border-bottom: 2px solid #fff;
}

.form-control:focus {
    box-shadow: none;
    border-color: #9ca3af;
    background: transparent;
    color: #fff;
}

.form-control::placeholder {
    color: #94a3b8;
    letter-spacing: 2px;
}

/* Validation Error Styles */
.form-control.error-field {
    border-bottom-color: #ff6b6b !important;
    border-bottom-width: 2px !important;
}

label.error {
    display: block !important;
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 5px;
    font-weight: normal;
}

/* Registration Form Steps */
.signup-step {
    transition: all 0.3s ease;
}

.signup-step.active {
    display: block;
}

/* Custom Select Error State */
.custom-select-wrapper.error-field .custom-select {
    border-bottom-color: #ff6b6b !important;
    border-bottom-width: 2px !important;
}

/* Password Toggle Eye */
.password-wrapper .toggle-eye {
    position: absolute;
    right: 0;
    top: 8px;
    cursor: pointer;
    opacity: .7;
    z-index: 10;
}

.password-wrapper .toggle-eye:hover {
    opacity: 1;
}

.password-wrapper {
    position: relative;
    display: none;
    margin-top: 25px;
}

.toggle-eye {
    position: absolute;
    right: 0;
    top: 8px;
    cursor: pointer;
    opacity: .7;
}

.btn-login {
    width: 100%;
    background: #9b8967;
    color: #fff;
    border-radius: 6px;
    padding: 13px;
    border: none;
    font-weight: 500;
    margin: 20px 0px;
}
.btn-login:hover{
    background: #9b8967;
    color: #fff;
}
.google-btn {
    border: 1px solid #b59b6a;
    color: #e6c27a;
    padding: 9px;
    border-radius: 6px;
    background: transparent;
    width: 100%;
}
.google-btn:hover{
    background: #b59b6a3d;
    border: 1px solid #b59b6a;
}

.forgot {
    margin-top: 18px;
    color: #d6b26a;
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
}
.modal {
    background: #000000ad;
}
select.form-control {
    background-color: transparent;
    color: #94a3b8;
}

select.form-control option {
    color: #000;
}
.custom-select-wrapper {
    position: relative;
    margin-top: 24px;
}

.custom-select {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;

    background: transparent;
    color: #94a3b8;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,.35);
}

.custom-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 260px;
    overflow-y: auto;

    background: #1f2937;
    border-radius: 10px;
    margin-top: 8px;
    display: none;
    z-index: 9999;
}

/* scrollbar */
.custom-dropdown::-webkit-scrollbar {
    width: 6px;
}
.custom-dropdown::-webkit-scrollbar-thumb {
    background: #6b7280;
    border-radius: 10px;
}

.dropdown-item {
    padding: 10px 14px;
    color: #fff;
    cursor: pointer;
}

.dropdown-item:hover {
    background: rgba(255,255,255,.08);
}


/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    .mobile-bar {
        display: flex;
    }
    .navbar {
        padding: 15px;
    }
    .footer {
    display: block;
    justify-content: space-around;
}
}

@media (min-width: 993px) {
    .mobile-menu {
        display: none;
    }
}

#spiderNet {
    position: fixed;
    inset: 0;
    background: #1b1e2f; /* visible dark blue */
    z-index: -1;
}
.mdal-privacy{
    background: linear-gradient(to left, #341318, #0b183d) !important;
}
.close-privacy {
    filter: invert(1);
    opacity: 0.8;
}
.close-privacy:hover {
    opacity: 1;
}
/* 90% viewport height */
.modal-90 .modal-dialog {
    height: 90vh;
}

/* Modal layout */
.modal-90 .mdal-privacy {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
}

/* Sticky header */
.modal-90 .modal-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: inherit;
}

/* Scroll only body */
.modal-90 .mdl-body-privacy {
    flex: 1;
    overflow-y: auto;
    padding-right: 1rem;
}

/* White close button */
.close-privacy {
    filter: invert(1);
}
