/* ============================================================
   NETMINT — Main Stylesheet (MineLab-Inspired Dark Theme)
   ============================================================ */

/* === CSS Variables === */
:root {
    --base: #28af62;
    --base-dark: #1e8c4e;
    --base-light: #34d278;
    --base-rgb: 40, 175, 98;
    --dark: #0b1120;
    --dark-2: #101829;
    --dark-3: #141e30;
    --dark-4: #1a2742;
    --dark-5: #1e2d4a;
    --card-bg: #111b2e;
    --border: #1e2d4a;
    --text: #c5cdd8;
    --text-light: #e4e8ef;
    --text-muted: #6b7a90;
    --white: #ffffff;
    --danger: #ef4444;
    --warning: #f59e0b;
    --success: #22c55e;
    --info: #3b82f6;
    --gold: #f59e0b;
    --shadow: 0 10px 40px rgba(0,0,0,.4);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all .3s ease;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; }
body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--dark);
    color: var(--text);
    margin: 0;
    overflow-x: hidden;
    font-size: 15px;
    line-height: 1.7;
}
a { color: var(--base); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--base-light); }
h1,h2,h3,h4,h5,h6 { color: var(--white); font-weight: 700; line-height: 1.3; }
img { max-width: 100%; }
section { position: relative; }
.section-bg { background: var(--dark-2); }
.section-bg-two { background: var(--dark-3); }
.text--base { color: var(--base) !important; }
.bg--base { background: var(--base) !important; }
.bg--dark { background: var(--dark-3) !important; border: 1px solid var(--border); color: var(--text-light); }

/* === Preloader === */
.preloader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--dark);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .5s;
}
.preloader.loaded { opacity: 0; pointer-events: none; }
.loader-p {
    width: 50px; height: 50px;
    border: 4px solid var(--dark-4);
    border-top-color: var(--base);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === Buttons === */
.btn--base {
    background: var(--base); color: #fff;
    border: 1px solid var(--base);
    padding: 12px 32px; border-radius: var(--radius);
    font-weight: 600; font-size: .95rem;
    cursor: pointer; transition: var(--transition);
    display: inline-block; text-align: center;
}
.btn--base:hover { background: var(--base-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(var(--base-rgb),.3); }
.btn--base.outline { background: transparent; color: var(--base); }
.btn--base.outline:hover { background: var(--base); color: #fff; }
.btn--sm { padding: 8px 22px; font-size: .85rem; }
.btn--lg { padding: 16px 40px; font-size: 1.05rem; }
.btn--dark { background: var(--dark-3); color: var(--text); border: 1px solid var(--border); }
.btn--dark:hover { border-color: var(--base); color: var(--base); }
.btn--gold { background: linear-gradient(135deg, var(--gold), #d97706); color: #000; font-weight: 700; border: none; }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(245,158,11,.3); }
.btn--block { width: 100%; }

/* === Header === */
.header-bottom {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(11,17,32,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.header-bottom.scrolled { background: rgba(11,17,32,.98); box-shadow: 0 4px 30px rgba(0,0,0,.4); }
.navbar { padding: 12px 0; }
.navbar-brand img { height: 40px; }
.site-logo { height: 42px; width: auto; object-fit: contain; filter: brightness(1.05); }
.logo-text { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: -.5px; }
.logo-text .accent { color: var(--base); }
.logo-icon {
    font-size: 1.1rem; color: var(--base);
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(var(--base-rgb),.15), rgba(var(--base-rgb),.05));
    border: 1px solid rgba(var(--base-rgb),.25);
    border-radius: 10px;
}
.navbar-brand { display: flex; align-items: center; gap: 4px; text-decoration: none; }
.nav-menu .nav-link {
    color: var(--text); font-weight: 500; padding: 8px 18px !important;
    position: relative; transition: var(--transition); font-size: .95rem;
}
.nav-menu .nav-link:hover, .nav-menu .nav-link.active { color: var(--base); }
.nav-menu .nav-link.active::after {
    content: ''; position: absolute; bottom: 0; left: 18px; right: 18px;
    height: 2px; background: var(--base); border-radius: 2px;
}
.header-button {
    background: none; border: 1px solid var(--border); color: var(--white);
    padding: 6px 12px; border-radius: var(--radius); font-size: 1.3rem;
}
.user-btn-group { gap: 8px; }
.register-btn { margin: 0 !important; }

/* === Professional Icon Elements === */
.plan-icon {
    width: 64px; height: 64px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(var(--base-rgb),.15), rgba(var(--base-rgb),.05));
    border: 1.5px solid rgba(var(--base-rgb),.25);
    color: var(--base);
}
.plan-icon.gold {
    background: linear-gradient(135deg, rgba(245,158,11,.15), rgba(245,158,11,.05));
    border-color: rgba(245,158,11,.3);
    color: var(--gold);
}
.auth-icon {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(var(--base-rgb),.15), rgba(var(--base-rgb),.05));
    border: 1.5px solid rgba(var(--base-rgb),.25);
    color: var(--base);
}
.auth-logo { text-align: center; margin: 0 auto 18px; }
.auth-logo-img { height: 48px; width: auto; object-fit: contain; }
.hero-gfx {
    width: 220px; height: 220px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(var(--base-rgb),.08), rgba(var(--base-rgb),.02));
    border: 2px solid rgba(var(--base-rgb),.12);
    animation: float 4s ease-in-out infinite;
}
.hero-gfx i { font-size: 5rem; color: var(--base); opacity: .35; }

/* ── Hero Phone Mining Animation ── */
.hero-phone-anim { max-width: 340px; margin: 0 auto; }
.hero-phone-svg { width: 100%; height: auto; filter: drop-shadow(0 20px 60px rgba(40,175,98,.12)); }
.phone-body { animation: float 4s ease-in-out infinite; }
.phone-glow { animation: phoneGlow 3s ease-in-out infinite; }
.mining-bar { animation: miningProgress 2.5s ease-in-out infinite; }
.mining-status { animation: pulse 2s ease-in-out infinite; }
.hash-line-1 { animation: hashScroll 3s linear infinite; }
.hash-line-2 { animation: hashScroll 3s linear infinite .5s; }
.hash-line-3 { animation: hashScroll 3s linear infinite 1s; }
.collect-btn { animation: btnPulse 2s ease-in-out infinite; }
.token.t1 { animation: floatToken1 5s ease-in-out infinite; }
.token.t2 { animation: floatToken2 4s ease-in-out infinite .5s; }
.token.t3 { animation: floatToken3 6s ease-in-out infinite 1s; }
.token.t4 { animation: floatToken4 4.5s ease-in-out infinite 1.5s; }
.wave.w1 { animation: waveAnim 2s ease-in-out infinite; }
.wave.w2 { animation: waveAnim 2s ease-in-out infinite .3s; }
.wave.w3 { animation: waveAnim 2s ease-in-out infinite .6s; }
.charge-bolt { animation: boltFlash 2s ease-in-out infinite; }
.balance-text { animation: balanceCount 4s ease-in-out infinite; }
@keyframes phoneGlow {
    0%,100% { stroke-opacity: .15; }
    50% { stroke-opacity: .35; }
}
@keyframes miningProgress {
    0% { width: 0; }
    80% { width: 116px; }
    100% { width: 0; }
}
@keyframes hashScroll {
    0% { opacity: .08; }
    30% { opacity: .35; fill: rgba(40,175,98,.5); }
    70% { opacity: .35; fill: rgba(40,175,98,.5); }
    100% { opacity: .08; }
}
@keyframes btnPulse {
    0%,100% { opacity: .85; }
    50% { opacity: 1; filter: drop-shadow(0 0 6px rgba(40,175,98,.5)); }
}
@keyframes floatToken1 {
    0%,100% { transform: translate(0,0); opacity: .7; }
    50% { transform: translate(8px,-15px); opacity: 1; }
}
@keyframes floatToken2 {
    0%,100% { transform: translate(0,0); opacity: .5; }
    50% { transform: translate(-10px,12px); opacity: .9; }
}
@keyframes floatToken3 {
    0%,100% { transform: translate(0,0); opacity: .6; }
    50% { transform: translate(-6px,-18px); opacity: 1; }
}
@keyframes floatToken4 {
    0%,100% { transform: translate(0,0); opacity: .4; }
    50% { transform: translate(12px,8px); opacity: .8; }
}
@keyframes waveAnim {
    0%,100% { opacity: .3; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.15); }
}
@keyframes boltFlash {
    0%,80%,100% { opacity: .3; }
    40%,60% { opacity: 1; filter: drop-shadow(0 0 4px #28af62); }
}
.about-gfx {
    width: 120px; height: 120px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(var(--base-rgb),.12), rgba(var(--base-rgb),.04));
    border: 2px solid rgba(var(--base-rgb),.2);
}
.about-gfx i { font-size: 3rem; color: var(--base); }
.testimonial-avatar {
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(var(--base-rgb),.1);
    border: 2px solid var(--base);
    color: var(--base); font-size: 1.1rem;
    flex-shrink: 0;
}

/* === Banner / Hero === */
.banner {
    padding: 180px 0 120px;
    position: relative;
    background-size: cover; background-position: center;
    min-height: 80vh;
    display: flex; align-items: center;
}
.bg-overlay-one::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(11,17,32,.95) 0%, rgba(11,17,32,.7) 50%, rgba(11,17,32,.85) 100%);
    z-index: 1;
}
.banner .container { position: relative; z-index: 2; }
.banner-content__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem; font-weight: 800;
    line-height: 1.15; margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, var(--base-light) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.banner-content__desc {
    font-size: 1.1rem; color: var(--text); margin-bottom: 32px;
    max-width: 560px; line-height: 1.8;
}
.banner-content .btn--base { font-size: 1rem; padding: 14px 40px; }

/* === Calculator === */
.banner-calculator {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: -60px;
    position: relative;
    z-index: 3;
    box-shadow: var(--shadow);
}
.banner-calculator__title {
    font-size: 1.4rem; margin-bottom: 24px; text-align: center;
}
.banner-calculator__content {
    text-align: center;
    background: linear-gradient(135deg, var(--dark-4), var(--dark-5));
    border-radius: var(--radius);
    padding: 20px; height: 100%;
    display: flex; flex-direction: column; justify-content: center;
}
.banner-calculator__text { color: var(--text-muted); font-size: .9rem; margin-bottom: 4px; }
.banner-calculator__number { font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; color: var(--base); }

/* === Form Controls === */
.custom--select, .form--control {
    background: var(--dark-3);
    border: 1px solid var(--border);
    color: var(--text-light);
    padding: 12px 16px;
    border-radius: var(--radius);
    width: 100%;
    font-size: .95rem;
    transition: var(--transition);
    outline: none;
}
.custom--select:focus, .form--control:focus {
    border-color: var(--base);
    box-shadow: 0 0 0 3px rgba(var(--base-rgb),.15);
}
.custom--select option { background: var(--dark-3); }
label { color: var(--text-light); font-weight: 500; font-size: .9rem; margin-bottom: 6px; display: block; }

/* === Section Heading === */
.section-heading { text-align: center; margin-bottom: 50px; }
.section-heading__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 12px;
}
.section-heading__desc { color: var(--text-muted); max-width: 640px; margin: 0 auto; font-size: 1rem; }
.section-heading.style-two { text-align: left; }
.section-heading.style-two .section-heading__desc { margin: 0; }

/* === About === */
.about-thumb { position: relative; }
.about-thumb img { border-radius: var(--radius-lg); }
.about-thumb__coin {
    position: absolute; bottom: -30px; right: -20px;
    width: 120px; animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-15px); } }
.about-item {
    display: flex; gap: 16px; margin-bottom: 24px;
    padding: 20px; background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius); transition: var(--transition);
}
.about-item:hover { border-color: var(--base); transform: translateX(5px); }
.about-item__icon {
    width: 54px; height: 54px; flex-shrink: 0;
    background: rgba(var(--base-rgb),.12);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--base);
}
.about-item__title { font-size: 1.05rem; margin-bottom: 4px; }
.about-item__desc { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* === How It Works === */
.work-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px; text-align: center;
    position: relative; transition: var(--transition);
}
.work-item:hover { border-color: var(--base); transform: translateY(-8px); box-shadow: 0 12px 40px rgba(var(--base-rgb),.1); }
.work-item__number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--base); color: #fff;
    font-weight: 700; font-size: 1rem; margin-bottom: 16px;
}
.work-item__icon {
    display: flex; align-items: center; justify-content: center;
    width: 70px; height: 70px; margin: 0 auto 16px;
    background: rgba(var(--base-rgb),.1);
    border-radius: 50%;
    font-size: 1.8rem; color: var(--base);
}
.work-item__title { font-size: 1.1rem; margin-bottom: 10px; }
.work-item__desc { color: var(--text-muted); font-size: .9rem; margin: 0; }
.work-item__border {
    position: absolute; top: 50%; right: -30px;
    width: 60px; height: 2px; background: var(--border);
    display: none;
}

/* === FAQ === */
.custom--accordion .accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.custom--accordion .accordion-button {
    background: var(--card-bg);
    color: var(--text-light);
    font-weight: 600; font-size: .95rem;
    padding: 18px 20px;
    border: none; box-shadow: none !important;
}
.custom--accordion .accordion-button::after {
    filter: brightness(0) invert(.7);
}
.custom--accordion .accordion-button:not(.collapsed) {
    background: rgba(var(--base-rgb),.08);
    color: var(--base);
}
.custom--accordion .accordion-body {
    background: var(--card-bg);
    padding: 16px 20px;
}
.accordion-body__desc { color: var(--text-muted); margin: 0; font-size: .95rem; }

/* === Subscription / Newsletter === */
.subscription { background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 100%); }
.subscription-content__title { font-size: 1.5rem; }
.subscription-form .input--group {
    display: flex; gap: 0;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.subscription-form .form--control {
    border: none; background: transparent; flex: 1;
}
.subscription-form .subscription-button {
    border-radius: 0 var(--radius) var(--radius) 0 !important;
    white-space: nowrap;
}

/* === Transaction Log === */
.tx-log-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
}
.tx-log-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--border);
}
.tx-log-card__icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; flex-shrink: 0;
}
.tx-log-card__icon--green { background: rgba(40,175,98,.15); color: var(--base); }
.tx-log-card__icon--blue { background: rgba(59,130,246,.15); color: var(--info); }
.tx-log-card__title {
    font-size: 1rem; font-weight: 600; color: var(--text-light); margin: 0;
}
.tx-log-card__body { padding: 0; }
.tx-log-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(30,45,74,.4);
    transition: var(--transition);
}
.tx-log-row:last-child { border-bottom: none; }
.tx-log-row:hover { background: rgba(var(--base-rgb),.04); }
.tx-log-user {
    display: flex; align-items: center; gap: 12px;
    font-weight: 500; color: var(--text-light); font-size: .9rem;
}
.tx-log-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--dark-4);
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem; color: var(--text-muted);
}
.tx-log-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600; font-size: .95rem;
}
.tx-log-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .3px;
}
.tx-log-badge--gold { background: rgba(245,158,11,.12); color: var(--gold); }
.tx-log-badge--purple { background: rgba(139,92,246,.12); color: #8b5cf6; }
.tx-log-badge--blue { background: rgba(59,130,246,.12); color: var(--info); }
.tx-log-badge--green { background: rgba(var(--base-rgb),.12); color: var(--base); }

/* === Social Auth Buttons === */
.social-divider {
    display: flex; align-items: center; gap: 16px;
    margin: 20px 0;
    color: var(--text-muted); font-size: .85rem;
}
.social-divider::before, .social-divider::after {
    content: ''; flex: 1; height: 1px;
    background: var(--border);
}
.social-btn-group {
    display: flex; gap: 10px; margin-bottom: 8px;
}
.social-btn {
    flex: 1;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 10px;
    border-radius: var(--radius);
    font-weight: 600; font-size: .82rem;
    border: 1px solid var(--border);
    background: var(--dark-3);
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.social-btn:hover { transform: translateY(-1px); border-color: var(--text-muted); color: var(--white); }
.social-btn i { font-size: 1.1rem; }
.social-btn--google:hover { border-color: #ea4335; background: rgba(234,67,53,.08); }
.social-btn--google i { color: #ea4335; }
.social-btn--facebook:hover { border-color: #1877f2; background: rgba(24,119,242,.08); }
.social-btn--facebook i { color: #1877f2; }
.social-btn--tiktok:hover { border-color: #fe2c55; background: rgba(254,44,85,.08); }
.social-btn--tiktok i { color: #fe2c55; }
.social-btn--loading {
    pointer-events: none; opacity: .6;
}

/* Old table overrides for dark theme */
.table { width: 100%; color: var(--text); border-collapse: collapse; }
.table thead th {
    color: var(--text-muted); font-weight: 600;
    font-size: .8rem; text-transform: uppercase;
    letter-spacing: .5px; padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    background: transparent;
}
.table tbody td {
    padding: 12px; border-bottom: 1px solid rgba(30,45,74,.5);
    font-size: .9rem; background: transparent;
}
.table tbody tr:last-child td { border-bottom: none; }
.user-info__name { font-weight: 500; color: var(--text-light); }

/* === Services === */
.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.service-card:hover { border-color: var(--base); transform: translateY(-5px); box-shadow: 0 8px 30px rgba(var(--base-rgb),.08); }
.service-card__icon {
    width: 70px; height: 70px; margin: 0 auto 20px;
    background: rgba(var(--base-rgb),.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--base);
}
.service-card__title { font-size: 1.1rem; margin-bottom: 10px; }
.service-card__desc { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* === Plans / Pricing === */
.plan-tab .custom--tab {
    display: flex; flex-wrap: wrap; gap: 8px;
    justify-content: center; margin-bottom: 40px !important;
    border: none; padding: 0;
}
.plan-tab .nav-link {
    background: var(--dark-3) !important;
    border: 1px solid var(--border) !important;
    color: var(--text) !important;
    border-radius: var(--radius) !important;
    padding: 10px 24px; font-weight: 600;
    transition: var(--transition);
}
.plan-tab .nav-link.active, .plan-tab .nav-link:hover {
    background: var(--base) !important;
    border-color: var(--base) !important;
    color: #fff !important;
}
.price-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.price-item:hover { border-color: var(--base); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(var(--base-rgb),.1); }
.price-item__header {
    text-align: center; padding: 32px 24px;
    background: linear-gradient(180deg, rgba(var(--base-rgb),.06) 0%, transparent 100%);
}
.price-item__thumb { width: 60px; height: 60px; margin: 0 auto 16px; }
.price-item__thumb img { width: 100%; height: 100%; object-fit: contain; }
.price-item__title { font-size: 1rem; margin-bottom: 12px; color: var(--text-light); font-weight: 600; }
.price-item__price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem; font-weight: 700; color: var(--base);
}
.price-item__price-month { font-size: .85rem; color: var(--text-muted); font-weight: 400; }
.price-item__button { margin-top: 20px; }
.price-item__content { padding: 0 24px 28px; }
.text-list { list-style: none; padding: 0; margin: 0; }
.text-list__item {
    padding: 10px 0; border-bottom: 1px solid var(--border);
    color: var(--text); font-size: .9rem;
    display: flex; align-items: center; gap: 8px;
}
.text-list__item::before {
    content: '✓'; color: var(--base); font-weight: 700; flex-shrink: 0;
}
.text-list__item:last-child { border-bottom: none; }

/* === Testimonials === */
.testimonails-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    height: 100%;
}
.testimonails-item:hover { border-color: var(--base); }
.testimonails-item__icon { color: var(--base); font-size: 1.4rem; margin-bottom: 12px; opacity: .5; }
.testimonails-item__desc { color: var(--text); font-size: .95rem; line-height: 1.8; margin-bottom: 20px; }
.testimonails-item__info { display: flex; align-items: center; gap: 14px; }
.testimonails-item__thumb {
    width: 50px; height: 50px; border-radius: 50%;
    overflow: hidden; border: 2px solid var(--base);
    flex-shrink: 0;
}
.testimonails-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.testimonails-item__name { font-size: .95rem; margin-bottom: 2px; }
.testimonails-item__designation { color: var(--text-muted); font-size: .8rem; }

/* === Choose Us / Features === */
.chooseus-card {
    display: flex; gap: 16px; margin-bottom: 20px;
    padding: 24px; background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius); transition: var(--transition);
}
.chooseus-card:hover { border-color: var(--base); }
.chooseus-card__icon {
    width: 54px; height: 54px; flex-shrink: 0;
    background: rgba(var(--base-rgb),.12);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--base);
}
.chooseus-card__title { font-size: 1rem; margin-bottom: 6px; }
.chooseus-card__desc { color: var(--text-muted); font-size: .88rem; margin: 0; }
.chooseus-thumb { text-align: center; }
.chooseus-thumb img { max-height: 400px; }

/* === Blog === */
.blog-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.blog-item:hover { border-color: var(--base); transform: translateY(-5px); }
.blog-item__thumb { position: relative; overflow: hidden; height: 200px; }
.blog-item__thumb img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-item:hover .blog-item__thumb img { transform: scale(1.05); }
.blog-item__date {
    position: absolute; top: 12px; left: 12px;
    background: var(--base); color: #fff;
    padding: 4px 12px; border-radius: 20px;
    font-size: .8rem; font-weight: 600;
}
.blog-item__content { padding: 24px; }
.blog-item__title { font-size: 1.1rem; margin-bottom: 10px; }
.blog-item__title-link { color: var(--white); }
.blog-item__title-link:hover { color: var(--base); }
.blog-item__desc { color: var(--text-muted); font-size: .9rem; margin-bottom: 12px; }
.btn--simple { color: var(--base); font-weight: 600; font-size: .9rem; }
.btn--simple:hover { color: var(--base-light); }

/* === Footer === */
.footer-area { background-size: cover; background-position: center; position: relative; }
.footer-area.bg-overlay-one::before { background: rgba(11,17,32,.94); }
.footer-area .container { position: relative; z-index: 2; }
.footer-item__logo img { height: 40px; margin-bottom: 16px; }
.footer-item__desc { color: var(--text-muted); font-size: .9rem; }
.footer-item__title {
    font-size: 1.1rem; margin-bottom: 20px;
    padding-bottom: 12px; border-bottom: 2px solid var(--base);
    display: inline-block;
}
.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu__item { margin-bottom: 10px; }
.footer-menu__link { color: var(--text-muted); transition: var(--transition); font-size: .9rem; }
.footer-menu__link:hover { color: var(--base); padding-left: 5px; }
.footer-contact-menu { list-style: none; padding: 0; margin: 0; }
.footer-contact-menu__item {
    display: flex; gap: 14px; margin-bottom: 14px;
    color: var(--text-muted); font-size: .9rem;
}
.footer-contact-menu__item-icon { color: var(--base); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-menu__item a { color: var(--text-muted); }
.footer-contact-menu__item a:hover { color: var(--base); }
.bottom-footer {
    border-top: 1px solid var(--border);
    position: relative; z-index: 2;
}
.bottom-footer-text { color: var(--text-muted); font-size: .85rem; }

/* === Cookies === */
.cookies-card {
    position: fixed; bottom: 20px; left: 20px; z-index: 9998;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px; max-width: 380px;
    box-shadow: var(--shadow);
}
.cookies-card.hide { display: none; }
.cookies-card__icon { width: 50px; height: 50px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.cookies-card p { color: var(--text-muted); font-size: .85rem; }

/* === Scroll Top === */
.scroll-top {
    position: fixed; bottom: 24px; right: 24px;
    width: 44px; height: 44px; z-index: 9997;
    background: var(--base); color: #fff;
    border-radius: 50%; cursor: pointer;
    display: none; align-items: center; justify-content: center;
    font-size: 1rem; transition: var(--transition);
    box-shadow: 0 4px 20px rgba(var(--base-rgb),.3);
}
.scroll-top.show { display: flex; }
.scroll-top:hover { transform: translateY(-3px); }

/* === Spacing Utilities === */
.pt-100 { padding-top: 100px; }
.pb-100 { padding-bottom: 100px; }
.py-100 { padding-top: 100px; padding-bottom: 100px; }
.py-50 { padding-top: 50px; padding-bottom: 50px; }

/* ================================================================
   AUTH PAGES (Login / Register)
   ================================================================ */
.auth-section {
    min-height: 100vh; display: flex; align-items: center;
    padding: 120px 0 60px;
    background: var(--dark);
}
.auth-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}
.auth-card__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem; margin-bottom: 8px; text-align: center;
}
.auth-card__sub { color: var(--text-muted); text-align: center; margin-bottom: 28px; font-size: .95rem; }
.auth-card .form-group { margin-bottom: 20px; }
.auth-card .form-group label { margin-bottom: 8px; }
.auth-card .form--control { padding: 14px 16px; }
.auth-card .btn--base { width: 100%; padding: 14px; font-size: 1rem; margin-top: 8px; }
.auth-card__footer { text-align: center; margin-top: 20px; color: var(--text-muted); font-size: .9rem; }
.auth-card__footer a { font-weight: 600; }
.auth-alert {
    padding: 12px 16px; border-radius: var(--radius);
    margin-bottom: 16px; font-size: .9rem; display: none;
}
.auth-alert.error { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); color: #ef4444; display: block; }
.auth-alert.success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: #22c55e; display: block; }

/* ================================================================
   DASHBOARD
   ================================================================ */
.dash-body {
    padding-top: 80px;
    min-height: 100vh;
    background: var(--dark);
}
.dash-content { padding: 30px 0; }

/* Stat Cards */
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 30px; }
.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px; transition: var(--transition);
}
.stat-card:hover { border-color: var(--base); }
.stat-card__icon {
    width: 48px; height: 48px; border-radius: var(--radius);
    background: rgba(var(--base-rgb),.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--base); margin-bottom: 14px;
}
.stat-card__label { color: var(--text-muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.stat-card__value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem; font-weight: 700; color: var(--white);
}
.stat-card__sub { color: var(--text-muted); font-size: .8rem; margin-top: 4px; }

/* Mining Section */
.mining-panel {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px; text-align: center;
    margin-bottom: 30px;
}
.mining-circle {
    width: 180px; height: 180px;
    border-radius: 50%; cursor: pointer;
    margin: 0 auto 24px;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    transition: var(--transition);
    position: relative;
}
.mining-circle.idle {
    background: var(--dark-3);
    border: 3px solid var(--border);
}
.mining-circle.idle:hover { border-color: var(--base); box-shadow: 0 0 30px rgba(var(--base-rgb),.15); }
.mining-circle.active {
    background: rgba(var(--base-rgb),.08);
    border: 3px solid var(--base);
    box-shadow: 0 0 40px rgba(var(--base-rgb),.2);
    animation: pulse-mine 2s ease-in-out infinite;
}
@keyframes pulse-mine {
    0%,100% { box-shadow: 0 0 20px rgba(var(--base-rgb),.2); }
    50% { box-shadow: 0 0 50px rgba(var(--base-rgb),.35); }
}
.mining-label { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.mining-speed-label { color: var(--text-muted); font-size: .9rem; }
.mining-earned {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem; font-weight: 700;
    color: var(--base); margin: 16px 0;
}
.mining-actions { display: flex; gap: 12px; justify-content: center; margin-top: 20px; }

/* Dashboard Tabs */
.dash-tabs {
    display: flex; gap: 4px; margin-bottom: 24px;
    background: var(--dark-2); border-radius: var(--radius);
    padding: 4px; overflow-x: auto;
}
.dash-tab {
    padding: 10px 20px; border-radius: var(--radius);
    cursor: pointer; font-size: .9rem; font-weight: 500;
    white-space: nowrap; color: var(--text-muted);
    transition: var(--transition);
}
.dash-tab:hover { color: var(--text-light); }
.dash-tab.active { background: var(--base); color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Referral */
.referral-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.referral-link-box {
    display: flex; gap: 0;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden; margin: 16px 0 24px;
}
.referral-link-box input {
    flex: 1; background: transparent; border: none;
    color: var(--text-light); padding: 12px 16px;
    font-size: .9rem; outline: none;
}
.referral-link-box button { border-radius: 0; }
.ref-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ref-stat {
    text-align: center; padding: 20px;
    background: var(--dark-3);
    border-radius: var(--radius);
}
.ref-stat__num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--base);
}
.ref-stat__label { color: var(--text-muted); font-size: .8rem; margin-top: 4px; }

/* Upgrade Cards */
.upgrade-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.upgrade-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px; text-align: center;
    transition: var(--transition);
}
.upgrade-card:hover { border-color: var(--base); }
.upgrade-card.current { border-color: var(--base); background: rgba(var(--base-rgb),.04); }
.up-name { font-weight: 600; font-size: 1rem; margin-bottom: 8px; color: var(--white); }
.up-price { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: var(--base); }
.up-price small { font-size: .7rem; color: var(--text-muted); }
.up-speed { color: var(--text-muted); font-size: .85rem; margin: 8px 0 20px; }

/* Transaction List */
.tx-list-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.tx-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.tx-item:last-child { border-bottom: none; }
.tx-item:hover { background: rgba(var(--base-rgb),.03); }
.tx-type {
    display: inline-block; padding: 3px 10px;
    background: rgba(var(--base-rgb),.1); color: var(--base);
    border-radius: 20px; font-size: .75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .5px;
}
.tx-desc { color: var(--text-muted); font-size: .85rem; margin-left: 10px; }
.tx-amount { font-family: 'Space Grotesk', sans-serif; font-weight: 600; }
.tx-amount.positive { color: var(--base); }
.tx-amount.negative { color: var(--danger); }
.tx-date { color: var(--text-muted); font-size: .8rem; }

/* Leaderboard */
.lb-row {
    display: flex; justify-content: space-between;
    padding: 12px 0; border-bottom: 1px solid var(--border);
    font-size: .9rem;
}
.lb-row:last-child { border-bottom: none; }
.lb-rank { color: var(--text-muted); min-width: 32px; }
.lb-user { color: var(--text-light); flex: 1; }
.lb-val { color: var(--base); font-weight: 600; font-family: 'Space Grotesk', sans-serif; }

/* ==================== WITHDRAW ==================== */
.withdraw-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px;
    height: 100%;
}
.withdraw-card h4 { margin-bottom: 8px; }
.withdraw-balance {
    background: rgba(var(--base-rgb),.06);
    border: 1px solid rgba(var(--base-rgb),.15);
    border-radius: var(--radius); padding: 16px; margin: 18px 0 20px;
}
.wb-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 5px 0; font-size: .9rem; color: var(--text-muted);
}
.wb-row strong { color: var(--text-light); }
.form-label-dark { color: var(--text-muted); font-size: .85rem; margin-bottom: 6px; display: block; }
.form-control-dark {
    width: 100%; background: var(--dark-bg); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 12px 16px;
    color: var(--text-light); font-size: .95rem; transition: all .2s;
}
.form-control-dark:focus {
    outline: none; border-color: var(--base);
    box-shadow: 0 0 0 3px rgba(var(--base-rgb),.15);
}
.form-control-dark::placeholder { color: var(--text-muted); opacity: .6; }
select.form-control-dark { cursor: pointer; appearance: auto; }
.wd-usd-hint {
    color: var(--base); font-size: .85rem; margin-top: 6px;
    font-family: 'Space Grotesk', sans-serif;
}
.btn--block { width: 100%; }
.wd-total {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 16px; margin-bottom: 18px;
    background: rgba(var(--base-rgb),.06); border-radius: var(--radius);
    font-size: .9rem; color: var(--text-muted);
}
.wd-total strong { color: var(--base); }

/* Withdrawal Items */
.wd-item {
    padding: 14px 0; border-bottom: 1px solid var(--border);
}
.wd-item:last-child { border-bottom: none; }
.wd-item__top {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 6px;
}
.wd-item__method {
    font-weight: 600; font-size: .9rem; color: var(--text-light);
}
.wd-item__mid {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 4px;
}
.wd-item__amount {
    font-family: 'Space Grotesk', sans-serif; font-weight: 700;
    color: var(--text-light); font-size: 1rem;
}
.wd-item__usd { color: var(--text-muted); font-size: .85rem; }
.wd-item__bot {
    display: flex; justify-content: space-between; align-items: center;
}
.wd-item__addr { color: var(--text-muted); font-size: .8rem; font-family: monospace; }
.wd-item__date { color: var(--text-muted); font-size: .8rem; }

/* Status Badges */
.status-badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 10px; border-radius: 12px;
    font-size: .75rem; font-weight: 600;
}
.status-badge.completed { background: rgba(34,197,94,.12); color: #22c55e; }
.status-badge.pending { background: rgba(234,179,8,.12); color: #eab308; }
.status-badge.approved { background: rgba(59,130,246,.12); color: #3b82f6; }
.status-badge.rejected { background: rgba(239,68,68,.12); color: #ef4444; }

/* ==================== AUTH TOGGLE ==================== */
.auth-toggle {
    display: flex; gap: 0; margin-bottom: 22px;
    background: var(--dark-bg); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
}
.auth-toggle__btn {
    flex: 1; padding: 10px; border: none; cursor: pointer;
    background: transparent; color: var(--text-muted);
    font-size: .9rem; font-weight: 500; transition: all .2s;
    font-family: 'Inter', sans-serif;
}
.auth-toggle__btn.active {
    background: var(--base); color: #fff;
}
.auth-toggle__btn:hover:not(.active) {
    background: rgba(var(--base-rgb),.1); color: var(--text-light);
}
.phone-input-row {
    display: flex; gap: 10px; align-items: stretch;
}
.phone-input-row .form--control { flex: 1; }
.phone-input-row .btn--base { white-space: nowrap; }
.otp-hint {
    font-size: .82rem; margin-top: 6px;
    color: var(--text-muted);
}

/* Charging Indicator */
.charging-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px; border-radius: 20px;
    font-size: .8rem; font-weight: 600;
}
.charging-badge.on { background: rgba(34,197,94,.12); color: var(--success); }
.charging-badge.off { background: rgba(239,68,68,.12); color: var(--danger); }

/* Tier Badge */
.tier-badge {
    display: inline-block; padding: 4px 14px;
    border-radius: 20px; font-size: .8rem; font-weight: 600;
}

/* Toast */
.toast-msg {
    position: fixed; bottom: 24px; right: 24px;
    background: var(--card-bg); border: 1px solid var(--base);
    color: var(--text-light); padding: 16px 24px;
    border-radius: var(--radius); font-size: .95rem;
    z-index: 9999; animation: slideUp .3s ease;
    box-shadow: var(--shadow);
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* === Responsive === */
@media (max-width: 991px) {
    .banner { padding: 140px 0 80px; min-height: auto; }
    .banner-content__title { font-size: 2.2rem; }
    .banner-calculator { margin-top: -40px; padding: 24px; }
    .section-heading__title { font-size: 1.6rem; }
    .pt-100 { padding-top: 70px; }
    .pb-100 { padding-bottom: 70px; }
    .py-100 { padding-top: 70px; padding-bottom: 70px; }
    .navbar-collapse {
        background: var(--dark-2); border: 1px solid var(--border);
        border-radius: var(--radius); padding: 20px; margin-top: 12px;
    }
    .nav-menu .nav-link { padding: 10px 14px !important; }
    .user-btn-group { margin-top: 12px; width: 100%; justify-content: center; }
}
@media (max-width: 767px) {
    .banner-content__title { font-size: 1.8rem; }
    .stat-row { grid-template-columns: 1fr; }
    .upgrade-grid { grid-template-columns: 1fr; }
    .ref-stats { grid-template-columns: 1fr; }
    .payment-modal { width: 95%; max-width: 420px; padding: 24px; }
    .crypto-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   CRYPTO PAYMENT MODAL
   ============================================================ */
.payment-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    z-index: 10000;
    animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.payment-modal {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 480px; max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    position: relative;
    animation: slideUp .3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.payment-close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none;
    color: var(--text-muted); font-size: 1.8rem;
    cursor: pointer; line-height: 1;
    transition: color .2s;
}
.payment-close:hover { color: var(--danger); }

.payment-header {
    text-align: center; margin-bottom: 24px;
}
.payment-header h4 {
    color: var(--text-light); margin: 12px 0 4px;
    font-family: 'Space Grotesk', sans-serif;
}
.payment-amount-usd {
    font-size: 2rem; font-weight: 800;
    color: var(--base); font-family: 'Space Grotesk', sans-serif;
}
.payment-sub {
    color: var(--text-muted); font-size: .9rem;
    text-align: center; margin-bottom: 16px;
}

/* Crypto Selection Grid */
.crypto-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 10px; margin-bottom: 8px;
}
.crypto-option {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 6px; padding: 14px 8px;
    background: var(--dark-3);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer; transition: var(--transition);
    text-align: center;
}
.crypto-option:hover {
    border-color: var(--base); background: rgba(var(--base-rgb), .08);
}
.crypto-option.selected {
    border-color: var(--base); background: rgba(var(--base-rgb), .15);
    box-shadow: 0 0 16px rgba(var(--base-rgb), .2);
}
.crypto-icon { font-size: 1.4rem; }
.crypto-label { font-size: .75rem; color: var(--text); font-weight: 600; }

/* Payment Info Rows */
.pay-info-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: .92rem;
}
.pay-info-label { color: var(--text-muted); }
.pay-info-value { color: var(--text-light); font-weight: 600; }

/* QR Code */
.pay-qr-container {
    text-align: center; margin: 20px 0;
}
.pay-qr-img {
    width: 200px; height: 200px;
    border-radius: 12px;
    border: 3px solid var(--border);
    background: #fff;
    padding: 6px;
}

/* Address box */
.pay-address-box {
    margin: 16px 0;
}
.pay-address-label {
    display: block; font-size: .85rem;
    color: var(--text-muted); margin-bottom: 8px;
}
.pay-address-row {
    display: flex; gap: 8px;
}
.pay-address-input {
    flex: 1; background: var(--dark-3);
    border: 1px solid var(--border);
    color: var(--text-light); padding: 10px 14px;
    border-radius: var(--radius);
    font-size: .82rem; font-family: monospace;
    overflow: hidden; text-overflow: ellipsis;
}

/* Warning */
.pay-warning {
    background: rgba(245,158,11,.08);
    border: 1px solid rgba(245,158,11,.25);
    border-radius: var(--radius);
    padding: 12px 16px; margin: 16px 0;
    font-size: .82rem; color: var(--warning);
    line-height: 1.5;
}

/* Status message */
.pay-status-msg {
    text-align: center; padding: 14px;
    background: rgba(var(--base-rgb), .06);
    border: 1px solid rgba(var(--base-rgb), .15);
    border-radius: var(--radius);
    font-size: .9rem; color: var(--text-light);
}

/* Payment status icons */
.payment-status-icon {
    width: 56px; height: 56px;
    border-radius: 50%; display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 1.5rem; margin: 0 auto;
}
.payment-status-icon.pending {
    background: rgba(245,158,11,.15); color: var(--warning);
}
.payment-status-icon.success {
    background: rgba(34,197,94,.15); color: var(--success);
}

.payment-countdown {
    font-size: .88rem; color: var(--text-muted);
    margin-top: 4px;
}
.payment-countdown span { color: var(--warning); font-weight: 700; font-family: monospace; }

/* Success details */
.pay-success-details {
    background: var(--dark-3); border-radius: var(--radius);
    padding: 16px; margin-top: 16px;
}

/* ================================================================
   PHONE MOCKUP  Hero Interactive Demo
   ================================================================ */
.phone-mockup {
    width: 280px; height: 520px;
    margin: 0 auto;
    background: #0a0f1e;
    border-radius: 40px;
    border: 3px solid #1e2d4a;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 60px rgba(40,175,98,.08), inset 0 0 40px rgba(0,0,0,.3);
    overflow: hidden;
    animation: phoneFloat 5s ease-in-out infinite;
}
@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}
.phone-mockup__notch {
    position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 26px;
    background: #0a0f1e; border-radius: 0 0 16px 16px;
    z-index: 5; border-bottom: 1px solid #1e2d4a;
}
.phone-mockup__screen {
    position: absolute; top: 36px; left: 12px; right: 12px; bottom: 12px;
    background: linear-gradient(180deg, #0b1120 0%, #0d1a2e 100%);
    border-radius: 24px; overflow: hidden;
    display: flex; flex-direction: column; align-items: center;
    padding: 16px 12px;
}
.phone-mockup__header {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px; padding: 0 4px;
}
.phone-mockup__status {
    font-size: .65rem; color: #28af62; font-weight: 600;
    display: flex; align-items: center; gap: 4px;
    padding: 3px 8px; border-radius: 10px;
    background: rgba(40,175,98,.1);
}
.phone-mockup__balance {
    text-align: center; margin-bottom: 20px;
}
.phone-mockup__label {
    display: block; font-size: .65rem; color: #6b7a90;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px;
}
.phone-mockup__amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem; font-weight: 700; color: #fff;
    transition: color .3s;
}
.phone-mockup__amount.flash { color: #28af62; }

/* === Mint Button === */
.mint-btn {
    position: relative; width: 140px; height: 140px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; cursor: pointer;
    margin: 8px 0 18px;
}
.mint-btn__ring {
    position: absolute; border-radius: 50%;
    border: 2px solid rgba(40,175,98,.2);
}
.mint-btn__ring--1 {
    width: 140px; height: 140px;
    animation: mintRing 3s ease-in-out infinite;
}
.mint-btn__ring--2 {
    width: 118px; height: 118px;
    animation: mintRing 3s ease-in-out infinite .5s;
    border-color: rgba(40,175,98,.3);
}
.mint-btn__ring--3 {
    width: 96px; height: 96px;
    animation: mintRing 3s ease-in-out infinite 1s;
    border-color: rgba(40,175,98,.15);
}
@keyframes mintRing {
    0%, 100% { transform: scale(1); opacity: .6; }
    50% { transform: scale(1.12); opacity: 1; }
}
.mint-btn__core {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, #28af62 0%, #1e8c4e 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    box-shadow: 0 0 30px rgba(40,175,98,.4), 0 0 60px rgba(40,175,98,.15);
    transition: all .3s ease; z-index: 2;
    color: #fff;
}
.mint-btn__core i { font-size: 1.4rem; margin-bottom: 2px; }
.mint-btn__core span { font-size: .55rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.mint-btn:hover .mint-btn__core {
    transform: scale(1.08);
    box-shadow: 0 0 50px rgba(40,175,98,.6), 0 0 100px rgba(40,175,98,.2);
}
.mint-btn.tapped .mint-btn__core {
    transform: scale(.92);
    box-shadow: 0 0 80px rgba(40,175,98,.8);
}

.phone-mockup__stats {
    display: flex; gap: 16px; width: 100%;
    justify-content: center;
}
.phone-mockup__stat {
    display: flex; align-items: center; gap: 5px;
    font-size: .68rem; color: #6b7a90;
    padding: 4px 10px; border-radius: 8px;
    background: rgba(30,45,74,.4);
}
.phone-mockup__stat i { color: #28af62; font-size: .7rem; }

.phone-mockup__toast {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
    background: rgba(40,175,98,.15); border: 1px solid rgba(40,175,98,.3);
    color: #28af62; font-size: .72rem; font-weight: 600;
    padding: 6px 14px; border-radius: 20px;
    opacity: 0; transition: all .4s ease;
    white-space: nowrap;
}
.phone-mockup__toast.show {
    opacity: 1; transform: translateX(-50%) translateY(0);
}

/* ================================================================
   HOW IT WORKS  Animated Timeline
   ================================================================ */
.hiw { background: var(--dark); position: relative; overflow: hidden; }
.hiw-timeline { position: relative; padding: 0 0 20px; }
.hiw-timeline__line {
    position: absolute; left: 50%; top: 0; bottom: 0;
    width: 2px; background: var(--border);
    transform: translateX(-50%);
    display: none;
}
.hiw-timeline__progress {
    position: absolute; left: 50%; top: 0;
    width: 2px; height: 0;
    background: linear-gradient(180deg, var(--base), rgba(var(--base-rgb),.2));
    transform: translateX(-50%);
    transition: height 1.5s ease;
    display: none;
}
@media(min-width: 992px) {
    .hiw-timeline__line, .hiw-timeline__progress { display: block; }
}

.hiw-step {
    opacity: 0; transform: translateY(40px);
    transition: all .7s cubic-bezier(.25,.46,.45,.94);
}
.hiw-step.revealed {
    opacity: 1; transform: translateY(0);
}
.hiw-step:nth-child(2) { transition-delay: .15s; }
.hiw-step:nth-child(3) { transition-delay: .3s; }
.hiw-step:nth-child(4) { transition-delay: .45s; }

.hiw-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: all .4s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.hiw-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--base), transparent);
    opacity: 0; transition: opacity .4s;
}
.hiw-card:hover {
    border-color: rgba(var(--base-rgb),.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,.3), 0 0 30px rgba(var(--base-rgb),.05);
}
.hiw-card:hover::before { opacity: 1; }

.hiw-card__number {
    position: absolute; top: 20px; right: 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem; font-weight: 800;
    color: rgba(var(--base-rgb),.06);
    line-height: 1;
}
.hiw-card__visual {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 20px; flex-wrap: wrap;
}
.hiw-card__icon-wrap {
    width: 60px; height: 60px; border-radius: 16px;
    background: rgba(var(--base-rgb),.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--base);
    position: relative; flex-shrink: 0;
}
.hiw-card__icon-wrap--blue { background: rgba(59,130,246,.1); color: #3b82f6; }
.hiw-card__icon-wrap--green { background: rgba(40,175,98,.1); color: #28af62; }
.hiw-card__icon-wrap--gold { background: rgba(245,158,11,.1); color: #f59e0b; }

.hiw-card__icon-glow {
    position: absolute; inset: -4px; border-radius: 20px;
    background: rgba(var(--base-rgb),.08);
    animation: iconPulse 3s ease-in-out infinite;
}
.hiw-card__icon-glow--blue { background: rgba(59,130,246,.08); }
.hiw-card__icon-glow--green { background: rgba(40,175,98,.08); }
.hiw-card__icon-glow--gold { background: rgba(245,158,11,.08); }
@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: .5; }
    50% { transform: scale(1.3); opacity: 0; }
}

.hiw-card__title {
    font-size: 1.2rem; font-weight: 700; color: var(--white);
    margin-bottom: 10px;
}
.hiw-card__desc {
    color: var(--text-muted); font-size: .9rem; line-height: 1.7;
    margin: 0;
    flex: 1;
}

/* Tags */
.hiw-card__tags { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.hiw-tag {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 12px; border-radius: 20px;
    background: var(--dark-3); border: 1px solid var(--border);
    font-size: .75rem; color: var(--text); font-weight: 500;
}

/* Speed meter */
.hiw-speed-meter {
    display: flex; flex-direction: column; gap: 6px; flex: 1; max-width: 150px;
}
.hiw-speed-meter__bar {
    height: 8px; border-radius: 4px;
    background: var(--dark-4);
    position: relative; overflow: hidden;
}
.hiw-speed-meter__bar::after {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: var(--w); border-radius: 4px;
    background: var(--border);
    transition: width 1.5s ease;
}
.hiw-speed-meter__bar--active::after {
    background: linear-gradient(90deg, var(--base), var(--base-light));
    animation: meterGlow 2s ease-in-out infinite;
}
@keyframes meterGlow {
    0%, 100% { opacity: .8; }
    50% { opacity: 1; box-shadow: 0 0 8px rgba(var(--base-rgb),.4); }
}
.hiw-speed-meter__bar span {
    position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
    font-size: .55rem; font-weight: 700; color: var(--text-muted);
    z-index: 1;
}
.hiw-speed-meter__bar--active span { color: #fff; }

/* Demo mining button */
.hiw-demo-btn {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--base), var(--base-dark));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1rem;
    position: relative;
    box-shadow: 0 0 20px rgba(var(--base-rgb),.3);
}
.hiw-demo-btn__pulse {
    position: absolute; inset: -6px; border-radius: 50%;
    border: 2px solid rgba(var(--base-rgb),.3);
    animation: demoPulse 2s ease-in-out infinite;
}
.hiw-demo-btn__pulse--2 {
    inset: -14px;
    animation-delay: .5s;
    border-color: rgba(var(--base-rgb),.15);
}
@keyframes demoPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: .4; }
}

/* Mini counter */
.hiw-card__mini-counter {
    margin-top: 16px; padding: 10px 16px;
    background: var(--dark-3); border: 1px solid var(--border);
    border-radius: var(--radius); display: inline-flex; gap: 8px;
    align-items: center;
}
.hiw-counter-label { font-size: .78rem; color: var(--text-muted); }
.hiw-counter-value {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700; color: var(--base); font-size: .9rem;
}

/* Payout chips */
.hiw-payout-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.hiw-chip {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 10px; border-radius: 6px;
    background: var(--dark-4); border: 1px solid var(--border);
    font-size: .7rem; font-weight: 600; color: var(--text-muted);
    transition: all .3s;
}
.hiw-chip--active {
    border-color: var(--base); color: var(--base);
    background: rgba(var(--base-rgb),.08);
}
.hiw-chip i { font-size: .75rem; }

/* ================================================================
   SCROLL REVEAL ANIMATIONS
   ================================================================ */
.reveal-left {
    opacity: 0; transform: translateX(-40px);
    transition: all .7s cubic-bezier(.25,.46,.45,.94);
}
.reveal-right {
    opacity: 0; transform: translateX(40px);
    transition: all .7s cubic-bezier(.25,.46,.45,.94);
}
.reveal-up {
    opacity: 0; transform: translateY(30px);
    transition: all .6s cubic-bezier(.25,.46,.45,.94);
}
.reveal-left.revealed, .reveal-right.revealed, .reveal-up.revealed {
    opacity: 1; transform: translate(0);
}

/* ================================================================
   RESPONSIVE  Phone mockup
   ================================================================ */
@media(max-width: 991px) {
    .phone-mockup { width: 240px; height: 440px; border-radius: 32px; }
    .mint-btn { width: 110px; height: 110px; }
    .mint-btn__ring--1 { width: 110px; height: 110px; }
    .mint-btn__ring--2 { width: 92px; height: 92px; }
    .mint-btn__ring--3 { width: 74px; height: 74px; }
    .mint-btn__core { width: 64px; height: 64px; }
    .mint-btn__core i { font-size: 1.1rem; }
    .phone-mockup__amount { font-size: 1.6rem; }
}
