/* ================================
   NEXAEARN - MAIN STYLESHEET
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #07111f;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}


/* ================================
   NAVIGATION
================================ */

.navbar {
    width: 100%;
    height: 78px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(7, 17, 31, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
}

.logo,
.footer-logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span,
.footer-logo span {
    color: #19e68c;
}

.navbar nav {
    display: flex;
    gap: 32px;
}

.navbar nav a {
    color: #b8c4d4;
    font-size: 15px;
    transition: 0.3s;
}

.navbar nav a:hover {
    color: #19e68c;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.login-btn {
    color: #ffffff;
    font-weight: 600;
}

.signup-btn {
    background: #19e68c;
    color: #03130d;
    padding: 11px 20px;
    border-radius: 9px;
    font-weight: 700;
    transition: 0.3s;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 230, 140, 0.25);
}


/* ================================
   HERO
================================ */

.hero {
    min-height: 700px;
    padding: 90px 7%;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(25, 230, 140, 0.10);
    border-radius: 50%;
    filter: blur(100px);
    top: 50px;
    left: -180px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid rgba(25, 230, 140, 0.3);
    background: rgba(25, 230, 140, 0.07);
    color: #19e68c;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(55px, 7vw, 90px);
    line-height: 0.98;
    letter-spacing: -4px;
    margin-bottom: 28px;
}

.hero h1 span {
    color: #19e68c;
}

.hero-content > p {
    max-width: 620px;
    color: #9ba9bb;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    display: inline-block;
    padding: 14px 25px;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.3s;
}

.primary-btn {
    background: #19e68c;
    color: #03130d;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(25, 230, 140, 0.25);
}

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.secondary-btn:hover {
    border-color: #19e68c;
    color: #19e68c;
}


/* ================================
   TRUST ITEMS
================================ */

.trust {
    display: flex;
    gap: 28px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.trust div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8998aa;
    font-size: 13px;
}

.trust strong {
    font-size: 17px;
}


/* ================================
   HERO EARNING CARD
================================ */

.hero-card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-glow {
    position: absolute;
    width: 330px;
    height: 330px;
    background: rgba(25, 230, 140, 0.13);
    filter: blur(80px);
    border-radius: 50%;
}

.earn-card {
    position: relative;
    width: 100%;
    max-width: 470px;
    padding: 30px;
    border-radius: 25px;
    background: linear-gradient(
        145deg,
        rgba(22, 39, 61, 0.98),
        rgba(9, 22, 37, 0.98)
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    transform: rotate(2deg);
}

.card-top,
.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-top {
    color: #aab7c7;
    font-size: 14px;
}

.online {
    color: #19e68c;
    font-size: 12px;
}

.balance {
    margin: 45px 0 35px;
}

.balance small {
    color: #8998aa;
}

.balance h2 {
    font-size: 48px;
    margin-top: 5px;
}

.progress-info {
    color: #8795a7;
    font-size: 13px;
    margin-bottom: 9px;
}

.progress {
    width: 100%;
    height: 9px;
    background: #162536;
    border-radius: 20px;
    overflow: hidden;
}

.progress-bar {
    width: 72%;
    height: 100%;
    background: #19e68c;
    border-radius: 20px;
}

.mini-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px;
}

.mini-cards div {
    padding: 15px;
    background: rgba(255, 255, 255, 0.045);
    border-radius: 13px;
}

.mini-cards span {
    font-size: 18px;
}

.mini-cards p {
    color: #7f8ea1;
    font-size: 11px;
    margin-top: 7px;
}

.mini-cards strong {
    font-size: 18px;
}


/* ================================
   GENERAL SECTIONS
================================ */

.how-section,
.features-section,
.about-section {
    padding: 110px 7%;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading > span,
.about-content > span {
    color: #19e68c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-heading h2 {
    font-size: 42px;
    line-height: 1.15;
    margin: 15px 0;
}

.section-heading h2 span,
.about-content h2 span {
    color: #19e68c;
}

.section-heading p {
    color: #8998aa;
}


/* ================================
   HOW IT WORKS
================================ */

.how-section {
    background: #091523;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.step {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
}

.step-number {
    color: #19e68c;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 25px;
}

.step h3 {
    margin-bottom: 12px;
}

.step p {
    color: #8593a5;
    font-size: 14px;
}


/* ================================
   FEATURES
================================ */

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1200px;
    margin: auto;
}

.feature-card {
    padding: 30px 24px;
    border-radius: 18px;
    background: #0b1929;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(25, 230, 140, 0.35);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(25, 230, 140, 0.09);
    font-size: 22px;
    margin-bottom: 22px;
}

.feature-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.feature-card p {
    color: #8190a3;
    font-size: 13px;
}


/* ================================
   ABOUT
================================ */

.about-section {
    background: #091523;
}

.about-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.about-content h2 {
    font-size: 45px;
    line-height: 1.15;
    margin: 15px 0 25px;
}

.about-content p {
    color: #8c9aab;
    margin-bottom: 18px;
}


/* ================================
   CTA
================================ */

.cta {
    margin: 80px 7%;
    padding: 80px 30px;
    text-align: center;
    border-radius: 25px;
    background: linear-gradient(
        135deg,
        #0d2633,
        #0b1c2c
    );
    border: 1px solid rgba(25, 230, 140, 0.15);
}

.cta h2 {
    font-size: 42px;
    max-width: 700px;
    margin: auto;
    line-height: 1.2;
}

.cta h2 span {
    color: #19e68c;
}

.cta p {
    color: #8998aa;
    margin: 15px 0 30px;
}


/* ================================
   FOOTER
================================ */

footer {
    padding: 50px 7% 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
}

.footer-logo {
    margin-bottom: 8px;
}

footer p {
    color: #7d8b9d;
    font-size: 13px;
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #617083;
    font-size: 12px;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 900px) {

    .navbar {
        padding: 0 5%;
    }

    .navbar nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 70px 5%;
        text-align: center;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .trust {
        justify-content: center;
    }

    .hero-card {
        margin-top: 30px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {

    .navbar {
        height: 70px;
    }

    .logo {
        font-size: 24px;
    }

    .login-btn {
        display: none;
    }

    .signup-btn {
        padding: 9px 14px;
        font-size: 13px;
    }

    .hero {
        padding-top: 55px;
    }

    .hero h1 {
        font-size: 55px;
        letter-spacing: -3px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .trust {
        gap: 15px;
    }

    .earn-card {
        padding: 22px;
        transform: none;
    }

    .balance {
        margin: 35px 0 25px;
    }

    .balance h2 {
        font-size: 38px;
    }

    .mini-cards {
        gap: 7px;
    }

    .mini-cards div {
        padding: 11px 7px;
    }

    .section-heading h2,
    .about-content h2,
    .cta h2 {
        font-size: 32px;
    }

    .how-section,
    .features-section,
    .about-section {
        padding: 80px 5%;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .cta {
        margin: 50px 5%;
        padding: 60px 20px;
    }
}
/* ================================
   AUTHENTICATION PAGES
================================ */

.auth-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(25, 230, 140, 0.08), transparent 35%),
        #07111f;
}

.auth-container {
    width: 100%;
    min-height: 100vh;
    padding: 45px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.auth-brand {
    text-align: center;
    margin-bottom: 25px;
}

.auth-brand .logo {
    display: inline-block;
    font-size: 32px;
}

.auth-brand p {
    color: #8998aa;
    font-size: 13px;
    margin-top: 3px;
}

.auth-card {
    width: 100%;
    max-width: 520px;
    padding: 35px;
    background: rgba(11, 25, 41, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.auth-header {
    margin-bottom: 30px;
}

.auth-header h1 {
    font-size: 30px;
    margin-bottom: 8px;
}

.auth-header p {
    color: #8998aa;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #dce4ed;
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 10px;
    outline: none;
    background: #071523;
    color: #ffffff;
    font-size: 14px;
    transition: 0.25s;
}

.form-group input::placeholder {
    color: #657589;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #19e68c;
    box-shadow: 0 0 0 3px rgba(25, 230, 140, 0.08);
}

.form-group select {
    cursor: pointer;
}

.form-group small {
    display: block;
    margin-top: 7px;
    color: #718196;
    font-size: 11px;
    line-height: 1.5;
}

.terms-box {
    margin-top: 15px;
    padding: 13px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #8e9cad;
    font-size: 12px;
    line-height: 1.6;
    cursor: pointer;
}

.checkbox-row input {
    margin-top: 4px;
    accent-color: #19e68c;
    cursor: pointer;
}

.terms-link {
    color: #19e68c;
    font-weight: 600;
}

.auth-submit {
    width: 100%;
    height: 50px;
    margin-top: 25px;
    border: none;
    border-radius: 10px;
    background: #19e68c;
    color: #03130d;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(25, 230, 140, 0.22);
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.auth-footer p {
    color: #7f8d9f;
    font-size: 13px;
}

.auth-footer a {
    color: #19e68c;
    font-weight: 700;
}

.auth-bottom {
    margin-top: 25px;
    color: #566679;
    font-size: 11px;
    text-align: center;
}


/* ================================
   AUTH MOBILE
================================ */

@media (max-width: 600px) {

    .auth-container {
        padding: 30px 15px;
    }

    .auth-card {
        padding: 25px 20px;
        border-radius: 18px;
    }

    .auth-header h1 {
        font-size: 25px;
    }

}
/* ================================
   LOGIN OPTIONS
================================ */

.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px 0 5px;
    font-size: 12px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #7f8d9f;
    cursor: pointer;
}

.remember-me input {
    accent-color: #19e68c;
    cursor: pointer;
}

.forgot-password {
    color: #19e68c;
    font-weight: 600;
}

.forgot-password:hover {
    text-decoration: underline;
}
/* =========================================
   NEXAEARN DASHBOARD
========================================= */

.dashboard-page {
    margin: 0;
    min-height: 100vh;
    background: #f5f7fb;
}


/* TOP BAR */

.dashboard-topbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    height: 70px;

    display: flex;
    align-items: center;

    padding: 0 22px;

    background: #ffffff;

    border-bottom: 1px solid #e5e7eb;
}


/* THREE LINE BUTTON */

.menu-button {
    width: 44px;
    height: 44px;

    border: none;
    border-radius: 10px;

    background: #f1f5f9;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;

    cursor: pointer;

    margin-right: 15px;
}

.menu-button span {
    display: block;

    width: 22px;
    height: 2px;

    background: #111827;

    border-radius: 2px;
}


/* SIDE MENU */

.side-menu {
    position: fixed;

    top: 0;
    left: -310px;

    width: 290px;
    height: 100vh;

    background: #ffffff;

    z-index: 2000;

    box-shadow: 4px 0 20px rgba(0,0,0,0.12);

    transition: left 0.25s ease;

    overflow-y: auto;
}

.side-menu.open {
    left: 0;
}


/* MENU HEADER */

.menu-header {
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 20px;

    border-bottom: 1px solid #e5e7eb;
}

.menu-header strong {
    font-size: 20px;
}

.close-menu {
    width: 32px;
    height: 32px;

    border: none;
    background: transparent;

    font-size: 28px;

    cursor: pointer;

    line-height: 1;
}


/* MENU LINKS */

.menu-links {
    padding: 12px;
}

.menu-links a {
    display: block;

    padding: 13px 14px;

    margin-bottom: 3px;

    text-decoration: none;

    color: #374151;

    border-radius: 8px;

    transition: 0.2s;
}

.menu-links a:hover {
    background: #f1f5f9;
}

.logout-button {
    width: 100%;

    margin-top: 15px;

    padding: 13px;

    border: none;
    border-radius: 8px;

    cursor: pointer;

    background: #111827;
    color: white;

    font-size: 15px;
}


/* OVERLAY */

.menu-overlay {
    display: none;

    position: fixed;

    inset: 0;

    z-index: 1500;

    background: rgba(0,0,0,0.4);
}

.menu-overlay.show {
    display: block;
}


/* DASHBOARD */

.dashboard-container {
    max-width: 1200px;

    margin: 0 auto;

    padding: 30px 20px 60px;
}

.dashboard-welcome {
    margin-bottom: 25px;
}

.welcome-small {
    margin-bottom: 5px;

    color: #6b7280;

    font-size: 14px;
}

.dashboard-welcome h1 {
    margin: 0 0 8px;

    font-size: 30px;
}

.dashboard-welcome p {
    color: #6b7280;
}


/* BALANCES */

.balance-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;

    margin-bottom: 35px;
}

.balance-card {
    background: #ffffff;

    border-radius: 14px;

    padding: 20px;

    border: 1px solid #e5e7eb;

    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}

.balance-card span {
    display: block;

    color: #6b7280;

    font-size: 14px;

    margin-bottom: 10px;
}

.balance-card strong {
    font-size: 24px;
}


/* SECTIONS */

.dashboard-section {
    margin-top: 30px;
}

.section-heading {
    margin-bottom: 18px;
}

.section-heading h2 {
    margin-bottom: 5px;
}

.section-heading p {
    margin: 0;

    color: #6b7280;
}


/* PACKAGES */

.package-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.package-card {
    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 16px;

    padding: 22px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.package-title span {
    font-size: 13px;

    color: #6b7280;
}

.package-title h3 {
    margin: 5px 0 20px;

    font-size: 25px;
}

.package-bonus {
    padding: 15px;

    border-radius: 10px;

    background: #f8fafc;

    margin-bottom: 15px;
}

.package-bonus span {
    display: block;

    font-size: 13px;

    color: #6b7280;

    margin-bottom: 5px;
}

.package-bonus strong {
    font-size: 22px;
}

.package-referral {
    font-size: 14px;

    color: #6b7280;

    margin-bottom: 18px;
}

.package-button {
    width: 100%;

    padding: 12px;

    border: none;

    border-radius: 9px;

    background: #111827;

    color: white;

    font-weight: 600;

    cursor: pointer;
}

.package-button:hover {
    opacity: 0.9;
}


/* REFERRAL */

.referral-card {
    margin-top: 30px;

    padding: 22px;

    background: #ffffff;

    border-radius: 15px;

    border: 1px solid #e5e7eb;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.referral-card span {
    display: block;

    color: #6b7280;

    font-size: 13px;

    margin-bottom: 6px;
}

.referral-card strong {
    font-size: 20px;
}

.referral-card button {
    padding: 12px 18px;

    border: none;

    border-radius: 8px;

    cursor: pointer;

    background: #111827;

    color: white;
}


/* MOBILE */

@media (max-width: 800px) {

    .balance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 520px) {

    .dashboard-topbar {
        padding: 0 12px;
    }

    .dashboard-container {
        padding: 22px 14px 50px;
    }

    .balance-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-welcome h1 {
        font-size: 25px;
    }

    .referral-card {
        flex-direction: column;
        align-items: flex-start;
    }

}
/* ================= LOGIN BUTTON ================= */

.auth-button {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #00e676, #00c853);
    color: #06111f;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
    margin-top: 10px;
}

.auth-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 230, 118, 0.25);
}

.auth-button:active {
    transform: scale(0.98);
}

#loginMessage {
    min-height: 22px;
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}
/* =====================================================
   NEXAEARN DASHBOARD THEME
   ===================================================== */

body.dashboard-page {
    background: #07111f;
    color: #ffffff;
}

/* Dashboard main area */
.dashboard-main {
    background: #07111f;
    min-height: 100vh;
}

/* Top bar */
.dashboard-topbar {
    background: #0b1728;
    border-bottom: 1px solid rgba(0, 230, 118, 0.18);
}

/* NexaEarn logo */
.dashboard-logo {
    color: #00e676;
    font-weight: 800;
}

/* Hamburger */
.menu-button {
    background: #102238;
    color: #ffffff;
    border: 1px solid rgba(0, 230, 118, 0.25);
}

.menu-button:hover {
    background: #00e676;
    color: #06111f;
}

/* Welcome section */
.dashboard-content {
    background: #07111f;
}

.dashboard-content h1 {
    color: #ffffff;
}

.dashboard-content p {
    color: #aebdce;
}

/* Balance cards */
.balance-card,
.stat-card {
    background: linear-gradient(145deg, #0d1d30, #091525);
    border: 1px solid rgba(0, 230, 118, 0.18);
    border-radius: 16px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.balance-card h3,
.stat-card h3 {
    color: #9fb0c5;
}

.balance-card .amount,
.stat-card .amount {
    color: #00e676;
    font-weight: 800;
}

/* Package cards */
.package-card {
    background: linear-gradient(145deg, #0d1d30, #091525);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: 18px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.package-card:hover {
    border-color: #00e676;
    transform: translateY(-4px);
}

.package-card h3 {
    color: #ffffff;
}

.package-price {
    color: #00e676;
    font-weight: 800;
}

.package-bonus {
    color: #b8c7d8;
}

/* Green buttons */
.package-card button,
.dashboard-button {
    background: linear-gradient(135deg, #00e676, #00c853);
    color: #06111f;
    border: none;
    font-weight: 800;
    border-radius: 10px;
}

.package-card button:hover,
.dashboard-button:hover {
    box-shadow: 0 8px 22px rgba(0, 230, 118, 0.25);
}

/* Side menu */
.side-menu {
    background: #081525;
    border-right: 1px solid rgba(0, 230, 118, 0.2);
    color: #ffffff;
}

.side-menu a {
    color: #dce7f2;
}

.side-menu a:hover {
    background: rgba(0, 230, 118, 0.1);
    color: #00e676;
}

.close-menu {
    color: #ffffff;
}

.close-menu:hover {
    color: #00e676;
}

/* Overlay */
.menu-overlay {
    background: rgba(0, 0, 0, 0.7);
}

/* Referral section */
.referral-card {
    background: linear-gradient(145deg, #0d1d30, #091525);
    border: 1px solid rgba(0, 230, 118, 0.2);
    color: #ffffff;
}

.referral-card h2 {
    color: #00e676;
}

.referral-card p {
    color: #aebdce;
}

/* Green highlights */
.green-text {
    color: #00e676 !important;
}

/* Mobile */
@media (max-width: 768px) {
    .dashboard-content {
        padding: 20px;
    }

    .balance-card,
    .stat-card,
    .package-card {
        border-radius: 14px;
    }
}

/* =========================================
   CASHBACK CLAIM CARD
========================================= */

.cashback-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.cashback-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cashback-info span {
    font-size: 14px;
    font-weight: 500;
}

.cashback-info strong {
    font-size: 22px;
}


/* CLAIM BUTTON */

.claim-cashback-button {
    border: none;
    outline: none;
    cursor: pointer;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 10px 14px;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;

    background: #ffffff;
    color: #111111;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.claim-cashback-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.claim-cashback-button:active {
    transform: translateY(0);
}

.claim-arrow {
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.claim-cashback-button:hover .claim-arrow {
    transform: translateX(3px);
}


/* MOBILE */

@media (max-width: 600px) {

    .cashback-card {
        align-items: flex-start;
    }

    .claim-cashback-button {
        padding: 9px 12px;
        font-size: 12px;
    }

    .cashback-info strong {
        font-size: 20px;
    }

}
/* =========================================
   NEXAEARN WOW PACKAGES
========================================= */

.packages-page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 35px 20px 70px;
}


/* HERO */

.packages-hero {
    text-align: center;
    margin-bottom: 30px;
}

.packages-label {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.8;
}

.packages-hero h1 {
    margin: 0;
    font-size: 34px;
    font-weight: 900;
}

.packages-hero p:last-child {
    margin: 10px auto 0;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0.85;
}


/* DEPOSIT NOTICE */

.package-notice {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 30px;
    padding: 18px 20px;

    border-radius: 18px;

    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);

    backdrop-filter: blur(12px);
}

.notice-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.18);

    font-size: 24px;
}

.package-notice strong {
    font-size: 16px;
}

.package-notice p {
    margin: 4px 0 0;
    font-size: 13px;
    opacity: 0.8;
}

.notice-button {
    margin-left: auto;

    padding: 10px 16px;

    border-radius: 10px;

    text-decoration: none;

    background: rgba(255,255,255,0.92);
    color: #111;

    font-size: 13px;
    font-weight: 800;
}


/* PACKAGE GRID */

.wow-package-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(260px, 1fr));

    gap: 24px;
}


/* PACKAGE CARD */

.wow-package-card {
    position: relative;

    overflow: hidden;

    padding: 30px 24px 24px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.20),
            rgba(255,255,255,0.08)
        );

    border: 1px solid rgba(255,255,255,0.25);

    box-shadow:
        0 18px 45px rgba(0,0,0,0.18);

    backdrop-filter: blur(15px);

    text-align: center;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.wow-package-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 25px 55px rgba(0,0,0,0.25);
}


/* GLOW */

.wow-package-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    top: -80px;
    right: -60px;

    border-radius: 50%;

    background: rgba(255,255,255,0.12);

    filter: blur(5px);
}


/* ICON */

.wow-package-icon {
    width: 70px;
    height: 70px;

    margin: 5px auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 2px solid rgba(0,255,220,0.55);

    background: rgba(255,255,255,0.10);

    font-size: 31px;

    box-shadow:
        0 0 25px rgba(0,255,220,0.15);
}


/* TYPE */

.wow-package-type {
    margin: 0;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1.5px;

    opacity: 0.75;
}


/* PRICE */

.wow-package-card h2 {
    margin: 12px 0 18px;

    font-size: 31px;
    font-weight: 900;
}


/* CASHBACK */

.wow-cashback {
    padding: 15px;

    border-radius: 17px;

    background: rgba(255,255,255,0.11);

    border: 1px solid rgba(0,255,220,0.40);
}

.wow-cashback span {
    display: block;

    margin-bottom: 5px;

    font-size: 13px;
    font-weight: 700;
}

.wow-cashback strong {
    font-size: 23px;
    font-weight: 900;
}


/* DETAILS */

.package-details {
    margin: 18px 0;
}

.package-details div {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 8px 0;

    border-bottom:
        1px solid rgba(255,255,255,0.10);
}

.package-details span {
    font-size: 12px;
    opacity: 0.75;
}

.package-details strong {
    font-size: 12px;
}

.status {
    opacity: 1 !important;
}


/* ACTIVATE */

.wow-activate-button {
    width: 100%;

    border: none;
    outline: none;

    padding: 14px 18px;

    border-radius: 15px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    font-size: 16px;
    font-weight: 900;

    background:
        linear-gradient(
            90deg,
            #b7ff00,
            #00f5d4
        );

    color: #111;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.16);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.wow-activate-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(0,0,0,0.22);
}

.wow-activate-button:active {
    transform: scale(0.98);
}


/* BADGES */

.package-badge {
    position: absolute;

    top: 15px;
    right: 15px;

    padding: 6px 9px;

    border-radius: 20px;

    background: rgba(255,255,255,0.16);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.5px;
}


/* FEATURED */

.featured-package {
    border: 2px solid rgba(0,255,220,0.40);
}


/* MEGA PACKAGE */

.mega-package {
    border: 2px solid rgba(255,255,255,0.35);
}


/* MOBILE */

@media (max-width: 600px) {

    .packages-page {
        padding: 25px 14px 50px;
    }

    .packages-hero h1 {
        font-size: 27px;
    }

    .package-notice {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .notice-button {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .wow-package-grid {
        grid-template-columns: 1fr;
    }

    .wow-package-card {
        padding: 28px 20px 22px;
    }

}
/* =========================================
   NEXAEARN PROFILE
========================================= */

.profile-page {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 35px 20px 70px;
}


/* PROFILE HEADER */

.profile-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.profile-avatar {
    width: 76px;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.16);
    border: 2px solid rgba(255,255,255,0.35);

    font-size: 30px;
    font-weight: 900;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.18);
}

.profile-header p {
    margin: 0 0 4px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;

    opacity: 0.7;
}

.profile-header h1 {
    margin: 0;

    font-size: 29px;
    font-weight: 900;
}

.profile-header span {
    font-size: 14px;
    opacity: 0.75;
}


/* PROFILE CARD */

.profile-card {
    padding: 26px;

    border-radius: 24px;

    background:
        rgba(255,255,255,0.10);

    border:
        1px solid rgba(255,255,255,0.20);

    backdrop-filter: blur(14px);

    box-shadow:
        0 18px 45px rgba(0,0,0,0.16);
}


/* HEADING */

.profile-card-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;
}

.profile-card-heading h2 {
    margin: 0 0 5px;

    font-size: 21px;
}

.profile-card-heading p {
    margin: 0;

    font-size: 13px;
    opacity: 0.7;
}


/* EDIT */

.profile-edit-button {
    border: none;

    padding: 10px 16px;

    border-radius: 10px;

    cursor: pointer;

    background: rgba(255,255,255,0.16);
    color: inherit;

    font-weight: 800;

    transition: 0.2s ease;
}

.profile-edit-button:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.23);
}


/* FIELDS */

.profile-fields {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.profile-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.profile-field label {
    font-size: 12px;
    font-weight: 700;
    opacity: 0.75;
}

.profile-field input {
    width: 100%;
    box-sizing: border-box;

    padding: 13px 14px;

    border-radius: 11px;

    border:
        1px solid rgba(255,255,255,0.15);

    background:
        rgba(0,0,0,0.12);

    color: inherit;

    font-size: 14px;

    outline: none;
}

.profile-field input:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.profile-field input:not(:disabled) {
    border-color: rgba(255,255,255,0.35);
}


/* ACTIONS */

.profile-actions {
    display: flex;
    gap: 12px;

    margin-top: 24px;
}

.profile-save-button,
.profile-cancel-button {
    border: none;

    padding: 12px 20px;

    border-radius: 11px;

    cursor: pointer;

    font-weight: 800;
}

.profile-save-button {
    background: #ffffff;
    color: #111111;
}

.profile-cancel-button {
    background: rgba(255,255,255,0.12);
    color: inherit;
}


/* STATUS */

.profile-status-card {
    margin-top: 20px;

    padding: 20px 24px;

    display: flex;
    justify-content: space-between;

    gap: 20px;

    border-radius: 20px;

    background:
        rgba(255,255,255,0.08);

    border:
        1px solid rgba(255,255,255,0.16);
}

.profile-status-card div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.profile-status-card span {
    font-size: 12px;
    opacity: 0.65;
}

.profile-status-card strong {
    font-size: 14px;
}


/* MOBILE */

@media (max-width: 650px) {

    .profile-page {
        padding: 25px 14px 50px;
    }

    .profile-header h1 {
        font-size: 24px;
    }

    .profile-fields {
        grid-template-columns: 1fr;
    }

    .profile-card {
        padding: 20px;
    }

    .profile-card-heading {
        align-items: flex-start;
    }

    .profile-status-card {
        flex-direction: column;
    }

}
/* =========================================
   WITHDRAWALS PAGE
========================================= */

.withdrawals-page {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 35px 20px 70px;
}


/* HERO */

.withdrawals-hero {
    margin-bottom: 25px;
}

.withdrawals-label {
    margin: 0 0 6px;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;

    opacity: 0.65;
}

.withdrawals-hero h1 {
    margin: 0 0 7px;

    font-size: 30px;
    font-weight: 900;
}

.withdrawals-hero p {
    margin: 0;

    font-size: 14px;
    opacity: 0.7;
}


/* SUMMARY */

.withdrawal-summary-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;

    margin-bottom: 22px;
}

.withdrawal-summary-card {
    padding: 21px;

    border-radius: 20px;

    background:
        rgba(255,255,255,0.09);

    border:
        1px solid rgba(255,255,255,0.16);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.12);
}

.withdrawal-summary-card span {
    display: block;

    margin-bottom: 8px;

    font-size: 12px;
    opacity: 0.65;
}

.withdrawal-summary-card strong {
    font-size: 21px;
}


/* MAIN CARD */

.withdrawals-card {
    padding: 25px;

    border-radius: 24px;

    background:
        rgba(255,255,255,0.09);

    border:
        1px solid rgba(255,255,255,0.17);

    backdrop-filter: blur(14px);

    box-shadow:
        0 18px 45px rgba(0,0,0,0.15);
}


/* HEADING */

.withdrawals-heading {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;

    margin-bottom: 25px;
}

.withdrawals-heading h2 {
    margin: 0 0 5px;

    font-size: 21px;
}

.withdrawals-heading p {
    margin: 0;

    font-size: 13px;

    opacity: 0.65;
}


/* NEW WITHDRAWAL */

.new-withdrawal-button {
    display: inline-block;

    padding: 11px 17px;

    border-radius: 11px;

    text-decoration: none;

    background: #ffffff;
    color: #111111;

    font-size: 13px;
    font-weight: 800;

    transition: 0.2s ease;
}

.new-withdrawal-button:hover {
    transform: translateY(-2px);
}


/* TABLE */

.withdrawals-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.withdrawals-table {
    width: 100%;

    border-collapse: collapse;

    min-width: 700px;
}

.withdrawals-table th {
    padding: 13px 12px;

    text-align: left;

    font-size: 11px;
    text-transform: uppercase;

    letter-spacing: 0.7px;

    opacity: 0.55;

    border-bottom:
        1px solid rgba(255,255,255,0.12);
}

.withdrawals-table td {
    padding: 17px 12px;

    font-size: 13px;

    border-bottom:
        1px solid rgba(255,255,255,0.08);
}

.withdrawals-table tr:last-child td {
    border-bottom: none;
}


/* STATUS */

.withdrawal-status {
    display: inline-flex;

    padding: 6px 10px;

    border-radius: 20px;

    font-size: 11px;
    font-weight: 800;
}

.withdrawal-status.pending {
    background: rgba(255,193,7,0.15);
}

.withdrawal-status.completed {
    background: rgba(0,230,118,0.15);
}

.withdrawal-status.failed {
    background: rgba(255,107,107,0.15);
}


/* EMPTY */

.no-withdrawals {
    text-align: center;

    padding: 55px 20px;
}

.empty-icon {
    font-size: 42px;

    margin-bottom: 12px;
}

.no-withdrawals h3 {
    margin: 0 0 7px;

    font-size: 19px;
}

.no-withdrawals p {
    max-width: 430px;

    margin: 0 auto 20px;

    font-size: 13px;

    line-height: 1.6;

    opacity: 0.65;
}

.empty-withdraw-button {
    display: inline-block;

    padding: 11px 18px;

    border-radius: 11px;

    background: #ffffff;
    color: #111111;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;
}


/* MOBILE */

@media (max-width: 700px) {

    .withdrawals-page {
        padding: 25px 14px 50px;
    }

    .withdrawals-hero h1 {
        font-size: 25px;
    }

    .withdrawal-summary-grid {
        grid-template-columns: 1fr;
    }

    .withdrawals-heading {
        align-items: flex-start;

        flex-direction: column;
    }

    .new-withdrawal-button {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .withdrawals-card {
        padding: 18px;
    }

}
/* =========================================
   WITHDRAW PAGE
========================================= */

.withdraw-page {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    padding: 35px 20px 70px;
}


/* HERO */

.withdraw-hero {
    margin-bottom: 25px;
}

.withdraw-hero p {
    margin: 0 0 6px;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;

    opacity: 0.65;
}

.withdraw-hero h1 {
    margin: 0 0 7px;

    font-size: 31px;
    font-weight: 900;
}

.withdraw-hero span {
    font-size: 14px;

    opacity: 0.7;
}


/* BALANCE */

.withdraw-balance-card {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 23px;

    margin-bottom: 20px;

    border-radius: 22px;

    background:
        rgba(255,255,255,0.10);

    border:
        1px solid rgba(255,255,255,0.18);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.14);
}

.withdraw-balance-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background:
        rgba(255,255,255,0.14);

    font-size: 27px;
}

.withdraw-balance-card span {
    display: block;

    font-size: 12px;

    opacity: 0.65;

    margin-bottom: 5px;
}

.withdraw-balance-card strong {
    font-size: 27px;

    font-weight: 900;
}


/* FORM CARD */

.withdraw-form-card {
    padding: 28px;

    border-radius: 25px;

    background:
        rgba(255,255,255,0.09);

    border:
        1px solid rgba(255,255,255,0.18);

    backdrop-filter: blur(15px);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.16);
}


/* HEADING */

.withdraw-card-heading {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 20px;

    margin-bottom: 27px;
}

.withdraw-card-heading > div:first-child > span {
    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;

    opacity: 0.55;
}

.withdraw-card-heading h2 {
    margin: 6px 0;

    font-size: 22px;
}

.withdraw-card-heading p {
    margin: 0;

    font-size: 13px;

    opacity: 0.65;
}

.withdraw-lock {
    font-size: 27px;

    opacity: 0.75;
}


/* FIELDS */

.withdraw-field {
    margin-bottom: 20px;
}

.withdraw-field label {
    display: block;

    margin-bottom: 8px;

    font-size: 12px;

    font-weight: 800;

    opacity: 0.75;
}

.withdraw-field input {
    width: 100%;

    box-sizing: border-box;

    padding: 14px;

    border-radius: 12px;

    border:
        1px solid rgba(255,255,255,0.16);

    background:
        rgba(0,0,0,0.13);

    color: inherit;

    outline: none;

    font-size: 14px;
}

.withdraw-field input:focus {
    border-color:
        rgba(255,255,255,0.45);
}


/* MONEY INPUT */

.money-input {
    display: flex;

    align-items: center;

    border-radius: 12px;

    background:
        rgba(0,0,0,0.13);

    border:
        1px solid rgba(255,255,255,0.16);

    overflow: hidden;
}

.money-input span {
    padding-left: 15px;

    font-size: 13px;

    font-weight: 900;

    opacity: 0.7;
}

.money-input input {
    border: none;

    background: transparent;

    padding-left: 9px;
}


/* QUICK AMOUNTS */

.quick-withdraw {
    margin: 4px 0 22px;
}

.quick-withdraw > span {
    display: block;

    margin-bottom: 9px;

    font-size: 11px;

    font-weight: 800;

    opacity: 0.6;
}

.quick-withdraw > div {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;
}

.quick-amount {
    padding: 9px 13px;

    border-radius: 10px;

    border:
        1px solid rgba(255,255,255,0.16);

    background:
        rgba(255,255,255,0.08);

    color: inherit;

    cursor: pointer;

    font-size: 12px;

    font-weight: 800;
}

.quick-amount:hover {
    background:
        rgba(255,255,255,0.17);
}


/* NOTICE */

.withdraw-notice {
    padding: 15px;

    margin-bottom: 20px;

    border-radius: 14px;

    background:
        rgba(255,255,255,0.07);

    border:
        1px solid rgba(255,255,255,0.11);
}

.withdraw-notice strong {
    display: block;

    margin-bottom: 5px;

    font-size: 13px;
}

.withdraw-notice p {
    margin: 0;

    font-size: 12px;

    line-height: 1.5;

    opacity: 0.65;
}


/* SUBMIT */

.withdraw-submit {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 15px;

    border: none;

    border-radius: 13px;

    background: #ffffff;

    color: #111111;

    cursor: pointer;

    font-size: 14px;

    font-weight: 900;

    transition: 0.2s ease;
}

.withdraw-submit:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.18);
}

.withdraw-submit:disabled {
    opacity: 0.45;

    cursor: not-allowed;

    transform: none;
}


/* MESSAGE */

.withdraw-message {
    margin: 14px 0 0;

    text-align: center;

    font-size: 13px;
}


/* HISTORY */

.withdraw-history-link {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    margin-top: 20px;

    padding: 20px;

    border-radius: 19px;

    background:
        rgba(255,255,255,0.07);

    border:
        1px solid rgba(255,255,255,0.13);
}

.withdraw-history-link strong {
    font-size: 14px;
}

.withdraw-history-link p {
    margin: 5px 0 0;

    font-size: 12px;

    opacity: 0.6;
}

.withdraw-history-link a {
    white-space: nowrap;

    text-decoration: none;

    font-size: 13px;

    font-weight: 900;

    color: inherit;
}


/* MOBILE */

@media (max-width: 600px) {

    .withdraw-page {
        padding: 25px 14px 50px;
    }

    .withdraw-hero h1 {
        font-size: 25px;
    }

    .withdraw-form-card {
        padding: 20px;
    }

    .withdraw-history-link {
        flex-direction: column;

        align-items: flex-start;
    }

    .withdraw-history-link a {
        width: 100%;

        text-align: center;

        padding: 11px;

        box-sizing: border-box;

        border-radius: 10px;

        background:
            rgba(255,255,255,0.10);
    }

}
/* =========================================
   LOANS + SHARES
========================================= */

.loans-page,
.shares-page {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 35px 20px 70px;
}


/* HERO */

.loans-hero,
.shares-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

.loans-eyebrow,
.shares-hero p {
    margin: 0 0 7px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    opacity: .6;
}

.loans-hero h1,
.shares-hero h1 {
    margin: 0 0 7px;
    font-size: 31px;
    font-weight: 900;
}

.loans-hero p:last-child,
.shares-hero span {
    font-size: 14px;
    opacity: .68;
}

.loans-hero-icon,
.shares-hero-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    font-size: 30px;
}


/* SHARE STATUS */

.loan-share-status {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 21px;
    margin-bottom: 25px;
    border-radius: 21px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.16);
}

.share-status-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255,255,255,.10);
    font-size: 25px;
}

.share-status-info {
    flex: 1;
}

.share-status-info span,
.shares-balance-card span {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    opacity: .6;
}

.share-status-info strong,
.shares-balance-card strong {
    font-size: 24px;
    font-weight: 900;
}

.loan-share-status a {
    text-decoration: none;
    color: inherit;
    font-size: 12px;
    font-weight: 900;
}


/* LOAN SECTION */

.loan-section-heading {
    margin-bottom: 18px;
}

.loan-section-heading h2 {
    margin: 0 0 5px;
    font-size: 21px;
}

.loan-section-heading p {
    margin: 0;
    font-size: 13px;
    opacity: .62;
}


/* LOAN GRID */

.loan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}


/* LOAN CARD */

.loan-card {
    position: relative;
    overflow: hidden;
    padding: 25px;
    border-radius: 23px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
    transition: .2s ease;
}

.loan-card:hover {
    transform: translateY(-4px);
}

.loan-card.featured,
.loan-card.premium {
    border-color: rgba(255,255,255,.25);
}

.loan-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.loan-card-top > span {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
    opacity: .5;
}

.loan-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: rgba(255,255,255,.10);
    font-size: 10px;
    font-weight: 900;
}

.loan-card h3 {
    margin: 18px 0 5px;
    font-size: 28px;
}

.loan-description {
    margin: 0 0 20px;
    font-size: 12px;
    opacity: .58;
}

.loan-requirement {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px;
    margin-bottom: 17px;
    border-radius: 12px;
    background: rgba(0,0,0,.10);
}

.loan-requirement span {
    font-size: 11px;
    opacity: .6;
}

.loan-requirement strong {
    font-size: 13px;
}


/* GET LOAN */

.get-loan-button {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 12px;
    background: #fff;
    color: #111;
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
    transition: .2s ease;
}

.get-loan-button:hover {
    transform: translateY(-2px);
}

.get-loan-button:disabled {
    opacity: .45;
    cursor: not-allowed;
}


/* BADGE */

.loan-popular {
    position: absolute;
    top: 16px;
    right: -31px;
    padding: 5px 38px;
    transform: rotate(35deg);
    background: rgba(255,255,255,.14);
    font-size: 9px;
    font-weight: 900;
}


/* INFORMATION */

.loan-information,
.shares-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding: 19px;
    border-radius: 18px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
}

.loan-information strong,
.shares-info strong {
    font-size: 13px;
}

.loan-information p,
.shares-info p {
    margin: 5px 0 0;
    max-width: 700px;
    font-size: 12px;
    line-height: 1.5;
    opacity: .6;
}

.loan-information a,
.shares-heading a {
    color: inherit;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
}

.loan-message {
    text-align: center;
    margin: 15px 0 0;
    font-size: 13px;
}


/* =========================================
   SHARES
========================================= */

.shares-balance-card {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 24px;
    margin-bottom: 20px;
    border-radius: 22px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.16);
}

.shares-balance-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    background: rgba(255,255,255,.11);
    font-size: 27px;
}

.shares-loan-card {
    padding: 25px;
    border-radius: 23px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.16);
}

.shares-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.shares-heading > div > span {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    opacity: .5;
}

.shares-heading h2 {
    margin: 7px 0 0;
    font-size: 21px;
}


/* SHARE LOAN ROW */

.share-loan-list {
    display: flex;
    flex-direction: column;
}

.share-loan-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.share-loan-row:last-child {
    border-bottom: none;
}

.share-loan-row strong {
    display: block;
    font-size: 15px;
}

.share-loan-row span {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    opacity: .55;
}

.share-loan-row .eligibility {
    margin: 0;
    padding: 7px 10px;
    border-radius: 20px;
    background: rgba(255,255,255,.08);
    font-size: 10px;
    font-weight: 900;
    white-space: nowrap;
}

.shares-info {
    display: block;
}


/* MOBILE */

@media (max-width: 700px) {

    .loans-page,
    .shares-page {
        padding: 25px 14px 50px;
    }

    .loans-hero h1,
    .shares-hero h1 {
        font-size: 25px;
    }

    .loan-grid {
        grid-template-columns: 1fr;
    }

    .loan-share-status {
        align-items: flex-start;
    }

    .loan-share-status a {
        display: none;
    }

    .loan-information {
        display: block;
    }

    .loan-information a {
        display: inline-block;
        margin-top: 12px;
    }

    .shares-heading {
        align-items: flex-start;
    }

}
/* =========================================
   MEMBERSHIP PAGE
========================================= */

.membership-page {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding: 35px 20px 70px;
}


/* HERO */

.membership-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

.membership-hero p {
    margin: 0 0 7px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    opacity: .6;
}

.membership-hero h1 {
    margin: 0 0 7px;
    font-size: 31px;
    font-weight: 900;
}

.membership-hero span {
    font-size: 14px;
    opacity: .68;
}

.membership-hero-icon {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 21px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.17);
    font-size: 31px;
}


/* MAIN PACKAGE */

.membership-package-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 26px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 20px 50px rgba(0,0,0,.16);
    backdrop-filter: blur(15px);
}


/* BADGE */

.membership-badge {
    display: inline-block;
    padding: 7px 11px;
    margin-bottom: 20px;
    border-radius: 20px;
    background: rgba(255,255,255,.11);
    border: 1px solid rgba(255,255,255,.14);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}


/* PACKAGE TOP */

.membership-package-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.membership-package-top span {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
    opacity: .5;
}

.membership-package-top h2 {
    margin: 8px 0 3px;
    font-size: 38px;
    font-weight: 900;
}

.membership-package-top p {
    margin: 0;
    font-size: 12px;
    opacity: .55;
}

.membership-crown {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(255,255,255,.10);
    font-size: 34px;
}


/* BENEFIT */

.membership-benefit {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 25px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(0,0,0,.10);
    border: 1px solid rgba(255,255,255,.10);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 15px;
    background: rgba(255,255,255,.10);
    font-size: 23px;
}

.membership-benefit span {
    display: block;
    margin-bottom: 5px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.3px;
    opacity: .5;
}

.membership-benefit strong {
    display: block;
    font-size: 25px;
    font-weight: 900;
}

.membership-benefit p {
    margin: 4px 0 0;
    font-size: 11px;
    opacity: .5;
}


/* FEATURES */

.membership-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 22px 0;
}

.membership-features div {
    padding: 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    font-size: 12px;
}

.membership-features span {
    margin-right: 7px;
    font-weight: 900;
}


/* SUBSCRIBE */

.membership-subscribe-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border: none;
    border-radius: 14px;
    background: #fff;
    color: #111;
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
    transition: .2s ease;
}

.membership-subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

.membership-subscribe-button:disabled {
    opacity: .5;
    cursor: not-allowed;
}


/* MESSAGE */

.membership-message {
    text-align: center;
    margin: 13px 0 0;
    font-size: 13px;
}


/* STATUS */

.membership-status-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.membership-status-card > div {
    padding: 20px;
    border-radius: 19px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
}

.membership-status-card span {
    display: block;
    margin-bottom: 7px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    opacity: .5;
}

.membership-status-card strong {
    font-size: 19px;
}


/* MOBILE */

@media (max-width: 650px) {

    .membership-page {
        padding: 25px 14px 50px;
    }

    .membership-hero h1 {
        font-size: 25px;
    }

    .membership-package-card {
        padding: 21px;
    }

    .membership-package-top h2 {
        font-size: 31px;
    }

    .membership-features {
        grid-template-columns: 1fr;
    }

    .membership-status-card {
        grid-template-columns: 1fr;
    }

}



/* =====================================================
   NEXAEARN DASHBOARD - MODERN BALANCE CARDS
   Scoped to dashboard page so other pages are untouched.
===================================================== */
.dashboard-page {
    background:
        radial-gradient(circle at 12% 0%, rgba(25,230,140,.10), transparent 30%),
        radial-gradient(circle at 88% 10%, rgba(57,123,255,.10), transparent 28%),
        #07111f;
}

.dashboard-page .dashboard-container {
    padding-top: 34px;
}

.dashboard-page .dashboard-welcome {
    padding: 26px 28px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(19,39,61,.90), rgba(9,24,40,.78));
    box-shadow: 0 20px 55px rgba(0,0,0,.24);
}

.dashboard-page .welcome-small {
    color: #19e68c;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 11px;
}

.dashboard-page .dashboard-welcome h1 {
    font-size: clamp(28px, 4vw, 38px);
}

.dashboard-page .dashboard-welcome h1 span {
    color: #19e68c;
}

.dashboard-page .dashboard-welcome p:last-child {
    color: #91a3b8;
}

.dashboard-page .balance-grid {
    gap: 18px;
}

.dashboard-page .balance-card {
    position: relative;
    overflow: hidden;
    min-height: 142px;
    padding: 23px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 21px;
    background: linear-gradient(145deg, rgba(20,39,59,.96), rgba(9,24,40,.96));
    box-shadow: 0 16px 38px rgba(0,0,0,.24);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.dashboard-page .balance-card::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    right: -42px;
    top: -42px;
    border-radius: 50%;
    background: rgba(25,230,140,.10);
    filter: blur(2px);
}

.dashboard-page .balance-card:hover {
    transform: translateY(-5px);
    border-color: rgba(25,230,140,.28);
    box-shadow: 0 22px 45px rgba(0,0,0,.30);
}

.dashboard-page .balance-card span {
    position: relative;
    color: #8ea1b7;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.dashboard-page .balance-card strong {
    position: relative;
    display: block;
    margin-top: 12px;
    color: #fff;
    font-size: clamp(25px, 3vw, 32px);
    letter-spacing: -.5px;
}

.dashboard-page .balance-card strong span {
    display: inline;
    color: #19e68c;
    font-size: inherit;
    text-transform: none;
    letter-spacing: 0;
}

.dashboard-page .balance-card:nth-child(1)::after,
.dashboard-page .balance-card:nth-child(4)::after {
    content: "↗";
    position: absolute;
    right: 20px;
    bottom: 18px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #19e68c;
    background: rgba(25,230,140,.10);
    font-weight: 900;
}

.dashboard-page .cashback-card {
    background: linear-gradient(145deg, rgba(25,68,57,.96), rgba(9,28,38,.96));
}

.dashboard-page .cashback-card .claim-cashback-button {
    margin-top: 13px;
    border: 1px solid rgba(25,230,140,.28);
    border-radius: 11px;
    background: rgba(25,230,140,.10);
    color: #19e68c;
}

@media (max-width: 800px) {
    .dashboard-page .dashboard-welcome {
        padding: 22px;
    }
}


/* =========================================
   NEXAEARN FINAL DASHBOARD CARD POLISH
========================================= */
.balance-grid { gap: 20px; }
.balance-card {
    position: relative;
    overflow: hidden;
    min-height: 132px;
    padding: 24px 22px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(18,43,66,.98), rgba(7,20,36,.98));
    border: 1px solid rgba(58, 220, 170, .18);
    box-shadow: 0 18px 45px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.05);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.balance-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -45px;
    top: -55px;
    border-radius: 50%;
    background: rgba(25,230,140,.10);
    filter: blur(8px);
}
.balance-card:hover {
    transform: translateY(-5px);
    border-color: rgba(25,230,140,.42);
    box-shadow: 0 22px 50px rgba(0,0,0,.30), 0 0 28px rgba(25,230,140,.08);
}
.balance-card span { color: #aebfd2; position: relative; z-index: 1; }
.balance-card strong { color: #fff; font-size: 27px; position: relative; z-index: 1; }
.balance-card strong span { display:inline; color:#58f0aa; }
.balance-card-primary { border-color: rgba(25,230,140,.45); background: linear-gradient(145deg, rgba(16,66,61,.98), rgba(8,25,38,.98)); }
.cashback-card { display:flex; flex-direction:column; justify-content:space-between; gap:14px; }
.claim-cashback-button { position:relative; z-index:2; }
.profile-message { min-height:20px; margin-top:15px; font-size:13px; font-weight:700; }
.shares-available-note, .loan-available-note {
    margin: -10px 0 18px;
    padding: 12px 15px;
    border-radius: 14px;
    background: rgba(25,230,140,.07);
    border: 1px solid rgba(25,230,140,.14);
    color: #aebfd2;
    font-size: 12px;
}
.shares-available-note strong, .loan-available-note strong { color:#58f0aa; }
@media (max-width: 800px) { .balance-grid { grid-template-columns: 1fr; } }


/* =========================================
   NEXAEARN DASHBOARD COLOR UPGRADE
   Scoped to dashboard pages only.
========================================= */
.dashboard-page {
    background:
        radial-gradient(circle at 12% 8%, rgba(25,230,140,.09), transparent 28%),
        radial-gradient(circle at 88% 20%, rgba(61,132,255,.10), transparent 30%),
        linear-gradient(180deg, #07111f 0%, #081827 48%, #06101c 100%);
}
.dashboard-page .dashboard-topbar {
    background: rgba(6,18,31,.92);
    border-bottom-color: rgba(25,230,140,.14);
    box-shadow: 0 8px 30px rgba(0,0,0,.18);
}
.dashboard-page .dashboard-welcome {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(25,230,140,.13);
    background: linear-gradient(135deg, rgba(15,50,64,.78), rgba(8,25,42,.62));
    box-shadow: 0 20px 55px rgba(0,0,0,.18);
}
.dashboard-page .dashboard-welcome::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -60px;
    top: -80px;
    border-radius: 50%;
    background: rgba(25,230,140,.10);
    filter: blur(10px);
}
.dashboard-page .wow-package-card {
    border-color: rgba(25,230,140,.16);
    background: linear-gradient(150deg, rgba(18,43,66,.98), rgba(7,22,38,.98));
    box-shadow: 0 18px 45px rgba(0,0,0,.24);
}
.dashboard-page .wow-package-card:hover {
    border-color: rgba(25,230,140,.45);
    box-shadow: 0 24px 55px rgba(0,0,0,.30), 0 0 30px rgba(25,230,140,.08);
}
.dashboard-page .wow-activate-button {
    background: linear-gradient(135deg, #19e68c, #54f2ad);
    color: #03130d;
    box-shadow: 0 10px 25px rgba(25,230,140,.16);
}
.dashboard-page .wow-activate-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(25,230,140,.24);
}
.dashboard-page .section-heading h2 {
    letter-spacing: -.4px;
}
