@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Sora:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg-main: #090a0f;
    --card-bg: #12141d;
    --card-border: #1e2230;
    --inner-box-bg: #0d0e14;
    --gold-primary: #f59e0b;
    --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gold-glow: rgba(245, 158, 11, 0.35);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(245, 158, 11, 0.4);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-subtle: #6b7280;
}

/* Hide Number Input Spin Arrows */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(217, 119, 6, 0.05) 0%, transparent 40%);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Master Header Navbar */
.top-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(9, 10, 15, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.brand-container {
    display: flex;
    flex-direction: column;
}

.brand-subtitle {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--gold-primary);
    font-weight: 700;
    text-transform: uppercase;
}

.brand-title {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    color: var(--text-main);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.user-nav-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.welcome-text {
    font-size: 13px;
    color: var(--text-muted);
}

.welcome-text span {
    color: var(--text-main);
    font-weight: 600;
}

.balance-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.balance-amount {
    color: #ef4444;
    font-weight: 700;
}

.status-inactive {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.top-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.top-btn:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    font-weight: 600;
    box-shadow: 0 4px 20px var(--gold-glow);
}

.logout-btn {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.logout-btn:hover {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

/* Page Container & Tabs */
.page-container {
    max-width: 1140px;
    margin: 40px auto;
    padding: 0 20px;
    flex: 1;
    width: 100%;
}

.nav-buttons-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.02);
    padding: 6px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.nav-btn {
    background: transparent !important;
    border: none !important;
    color: var(--text-muted) !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.nav-btn i {
    color: var(--text-muted) !important;
    transition: color 0.2s ease;
}

.nav-btn:hover {
    color: var(--text-main) !important;
}

.nav-btn.active {
    background: var(--gold-gradient) !important;
    color: #000 !important;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.nav-btn.active i {
    color: #000 !important;
}

.tab-content {
    display: none;
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tab-content.active {
    display: block;
}

.tab-title {
    font-family: 'Sora', sans-serif;
    color: var(--text-main);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tab-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

/* Auth Portal Modern Glass Styling */
.portal-wrapper {
    max-width: 420px;
    margin: auto;
    padding: 50px 20px;
    width: 100%;
}

.brand-header {
    text-align: center;
    margin-bottom: 35px;
}

.brand-header h1 {
    font-family: 'Sora', sans-serif;
    color: var(--text-main);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-top: 15px;
}

.brand-header p {
    color: var(--gold-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
}

.logo-icon-wrapper {
    position: relative;
    width: 44px;
    height: 44px;
    margin: 0 auto;
}

.logo-diamond {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 6px;
}

.logo-diamond.outter {
    width: 38px;
    height: 38px;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 0 15px var(--gold-glow);
}

.logo-diamond.inner {
    width: 20px;
    height: 20px;
    background: var(--gold-gradient);
}

.form-box {
    display: none;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.form-box.active {
    display: block;
}

.form-box h2 {
    font-family: 'Sora', sans-serif;
    color: var(--text-main);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.input-group {
    position: relative;
    margin-bottom: 18px;
    width: 100%;
}

.input-group i.uil {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 18px;
    pointer-events: none;
    z-index: 2;
    transition: color 0.2s ease;
}

.input-group input {
    width: 100%;
    padding: 13px 44px 13px 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-main);
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    outline: none;
    position: relative;
    z-index: 1;
    transition: all 0.2s ease;
}

.input-group input:focus {
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 12px var(--gold-glow);
}

.input-group input:focus ~ i.uil:not(.toggle-password-btn) {
    color: var(--gold-primary);
}

.toggle-password-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted) !important;
    font-size: 18px !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 3 !important;
    transition: color 0.2s ease;
}

.toggle-password-btn:hover {
    color: var(--gold-primary) !important;
}

.btn {
    width: 100%;
    padding: 13px;
    background: var(--gold-gradient);
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 10px;
}

.btn:hover {
    box-shadow: 0 6px 25px var(--gold-glow);
    transform: translateY(-1px);
}

.switch-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.switch-footer a {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    margin-left: 4px;
}

.switch-footer a:hover {
    text-decoration: underline;
}

.error-msg {
    color: #ef4444;
    font-size: 12px;
    margin-top: 6px;
    display: none;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: rgba(18, 20, 29, 0.95);
    border: 1px solid var(--gold-primary);
    border-radius: 14px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 320px;
    box-shadow: 0 10px 30px var(--gold-glow);
    backdrop-filter: blur(12px);
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast i {
    font-size: 24px;
    color: var(--gold-primary);
}

.toast-info h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.toast-info p {
    color: var(--text-muted);
    font-size: 12px;
}

.input-group input.input-error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 12px rgba(231, 76, 60, 0.4) !important;
    background: rgba(231, 76, 60, 0.05) !important;
}

.master-footer {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin-top: auto;
    background: rgba(9, 10, 15, 0.8);
    backdrop-filter: blur(10px);
}

.master-footer span {
    color: var(--gold-primary);
    font-weight: 600;
}

/* Pricing Page Specific Styles */
.brand-header-pricing {
    text-align: center;
    margin-bottom: 40px;
}

.brand-logo-pricing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    color: var(--gold-primary);
    font-size: 26px;
    margin-bottom: 15px;
    box-shadow: 0 0 25px var(--gold-glow);
}

.brand-header-pricing h1 {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.brand-header-pricing p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    align-items: center;
}

.price-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 35px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--gold-glow);
}

.price-card.featured {
    background: rgba(24, 27, 41, 0.85);
    border: 1px solid var(--border-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px var(--gold-glow);
    transform: scale(1.03);
}

.price-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 40px var(--gold-glow);
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.plan-name {
    font-family: 'Sora', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
    text-align: center;
}

.price-tier {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.amount {
    font-family: 'Sora', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
}

.currency {
    font-size: 1rem;
    color: var(--gold-primary);
    font-weight: 600;
    margin-left: 2px;
}

.period {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-top: 6px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features-list li {
    color: #cbd5e1;
    font-size: 0.88rem;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.features-list li i {
    font-size: 1.15rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.btn-action {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    color: var(--gold-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.price-card:hover .btn-action,
.price-card.featured .btn-action {
    background: var(--gold-gradient);
    color: #090a0f;
    border-color: transparent;
    box-shadow: 0 6px 20px var(--gold-glow);
}

.btn-action:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.bypass-action {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.link-skip {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.link-skip:hover {
    color: var(--gold-primary);
}

/* Activation Page Specific Styles */
.act-page-close-btn {
    position: fixed;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
}

.act-page-close-btn:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.4);
    transform: rotate(90deg);
}

.act-container {
    max-width: 960px;
    width: 100%;
    margin: 40px auto;
    padding: 0 20px;
}

.act-section-title {
    text-align: center;
    margin-bottom: 35px;
}

.act-section-title h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.act-section-title p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.act-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.act-price-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.act-price-card input[type="radio"] {
    display: none;
}

.act-price-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.act-price-card.selected {
    background: rgba(24, 27, 41, 0.9);
    border: 2px solid var(--gold-primary);
    box-shadow: 0 0 25px var(--gold-glow);
}

.act-price-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.act-price-card .act-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
}

.act-price-card .act-btc-value {
    font-size: 0.85rem;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.act-price-card .act-features {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 14px;
    width: 100%;
}

.act-payment-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.act-attention-banner {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 25px;
}

.act-banner-title {
    color: var(--gold-primary);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.act-banner-text {
    color: #cbd5e1;
    font-size: 0.83rem;
    line-height: 1.5;
}

.act-payment-info-box {
    background: var(--inner-box-bg);
    border: 1px dashed var(--border-color);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    margin-bottom: 25px;
}

.act-amount-due {
    margin-bottom: 15px;
}

.act-usd-tag {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.act-btc-tag {
    font-size: 1rem;
    color: var(--gold-primary);
    font-weight: 600;
    margin-left: 6px;
}

.act-mock-barcode-qr {
    width: 130px;
    height: 130px;
    margin: 0 auto 15px auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.act-address-text {
    font-family: monospace;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 10px 16px;
    border-radius: 8px;
    display: inline-block;
    color: var(--gold-primary);
    border: 1px solid var(--border-gold);
    word-break: break-all;
}

.act-form-group {
    margin-bottom: 20px;
}

.act-form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.act-form-group input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-main);
    font-size: 0.9rem;
    outline: none;
    font-family: monospace;
    transition: all 0.3s ease;
}

.act-form-group input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px var(--gold-glow);
    background: rgba(255, 255, 255, 0.05);
}

.act-btn-submit {
    width: 100%;
    padding: 14px 20px;
    background: var(--gold-gradient);
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.act-btn-submit:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 6px 20px var(--gold-glow);
    transform: translateY(-2px);
}

/* Modal Overlay & Card Styling */
.custom-modal-overlay {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(6, 7, 10, 0.88); 
    backdrop-filter: blur(8px);
    display: flex; 
    align-items: center; 
    justify-content: center; 
    z-index: 99999;
    font-family: 'Inter', sans-serif;
}

.custom-modal-content {
    background: var(--card-bg); 
    border: 1px solid var(--gold-primary); 
    width: 90%; 
    max-width: 460px; 
    padding: 32px 26px; 
    border-radius: 14px; 
    text-align: center;
    box-shadow: 0 0 25px var(--gold-glow), 0 20px 40px rgba(0, 0, 0, 0.9);
}

.modal-status-icon { 
    font-size: 3rem; 
    color: var(--gold-primary); 
    margin-bottom: 12px; 
}

.custom-modal-content h3 { 
    margin: 0 0 12px 0; 
    color: var(--text-main); 
    font-size: 1.4rem; 
    font-weight: 700;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.8px;
}

.modal-main-text { 
    color: var(--text-muted); 
    font-size: 0.9rem; 
    line-height: 1.55; 
    margin-bottom: 20px; 
}

.modal-details-box { 
    background: var(--inner-box-bg); 
    border-radius: 10px; 
    padding: 16px; 
    text-align: left; 
    margin-bottom: 20px; 
    border: 1px solid var(--card-border);
    border-left: 3px solid var(--gold-primary); 
}

.modal-details-box p { 
    margin: 6px 0; 
    font-size: 0.85rem; 
    color: #d1d5db; 
    line-height: 1.4; 
}

.accent-gold {
    color: var(--gold-primary);
    font-weight: 600;
}

.modal-footer-text { 
    font-size: 0.78rem; 
    color: var(--text-subtle); 
    line-height: 1.4; 
    margin-bottom: 24px; 
}

.btn-modal-close {
    background: var(--gold-gradient);
    color: #000000; 
    border: none; 
    padding: 14px 20px; 
    font-weight: 700;
    border-radius: 8px; 
    cursor: pointer; 
    text-transform: capitalize; 
    font-size: 0.95rem; 
    letter-spacing: 0.3px;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.btn-modal-close:hover { 
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 6px 20px var(--gold-glow);
    transform: translateY(-1px);
}

/* ==========================================
   HOMEPAGE SPECIFIC & MODAL STYLES (CONFLICT-FREE)
   ========================================== */

/* Header Bar & Actions */
.hm-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.hm-user-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hm-balance-box {
    background: #121212;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #222;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hm-balance-label {
    font-size: 12px;
    color: #8e9297;
}

.hm-balance-amount {
    color: #e74c3c;
    font-weight: bold;
    margin-left: 5px;
}

.hm-status-badge {
    background: #2a1215;
    color: #e74c3c;
    border: 1px solid #5c1d24;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.hm-btn-gate {
    background: #2b2b2b;
    color: #8e9297;
    border: 1px solid #444;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
}

.hm-btn-filter {
    background: #dfb76c;
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    align-self: flex-end;
}

.hm-type-gold {
    font-weight: 600;
    color: #dfb76c;
}

.hm-no-records {
    text-align: center;
    color: #babcbe;
    padding: 30px;
}

.hm-footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modal Overlay base */
.hm-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

/* Verification Request Modal */
.hm-modal-content {
    background: #111827;
    border: 1px solid #1f2937;
    border-top: 4px solid #dfb76c;
    width: 100%;
    max-width: 480px;
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.hm-modal-status-icon {
    font-size: 3.2rem;
    color: #dfb76c;
    margin-bottom: 15px;
}

.hm-modal-content h3 {
    margin: 0 0 10px 0;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
}

.hm-modal-main-text {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.hm-modal-details-box {
    background: #1f2937;
    border-radius: 6px;
    padding: 15px;
    text-align: left;
    margin-bottom: 20px;
    border-left: 3px solid #dfb76c;
}

.hm-modal-details-box p {
    margin: 5px 0;
    font-size: 0.85rem;
    color: #d1d5db;
    line-height: 1.4;
}

.hm-accent-gold {
    color: #dfb76c;
}

.hm-modal-footer-text {
    font-size: 0.8rem;
    color: #9ca3af;
    line-height: 1.5;
    margin-bottom: 25px;
}

.hm-btn-modal-close {
    background: #dfb76c;
    color: #0b0f19;
    border: none;
    padding: 12px 25px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.85rem;
    width: 100%;
    transition: background 0.2s ease;
}

.hm-btn-modal-close:hover {
    background: #cfa55c;
}

/* Access Restricted Gate Modal */
.hm-modal-box {
    position: relative;
    background: #1e222d;
    border: 1px solid #2a2e39;
    border-top: 4px solid #f3ba2f;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.hm-modal-close-x {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    color: #909399;
    font-size: 26px;
    cursor: pointer;
    transition: color 0.2s;
}

.hm-modal-close-x:hover {
    color: #fff;
}

.hm-modal-icon {
    font-size: 40px;
    margin-bottom: 15px;
    margin-top: 10px;
}

.hm-modal-box h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #f3ba2f;
}

.hm-modal-box p {
    color: #909399;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.hm-modal-action-btn {
    background: #f3ba2f;
    color: #12141c;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}

.hm-modal-action-btn:hover {
    background: #e0aa26;
}