/* ONE World Coin — Luxury Black & Gold Theme */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
    --bg-main: #0a0a08;
    --bg-card: #141310;
    --bg-card-hover: #1c1a14;
    --bg-elevated: #1a1813;
    --gold: #d6ac52;
    --gold-light: #e8c56b;
    --gold-dim: #997833;
    --border: #2d261b;
    --border-gold: rgba(214, 172, 82, 0.35);
    --text-main: #f7f1e5;
    --text-muted: #a9a092;
    --danger: #e98275;
    --success: #83d69a;
    --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Typography */
h1, h2, h3, h4, .brand-font {
    letter-spacing: -0.01em;
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
}

a:hover {
    color: var(--gold);
}

/* Layout */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Header */
.site-header {
    height: 76px;
    background: rgba(10, 10, 8, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand-wordmark {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.brand-wordmark .brand-the {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
    text-transform: none;
    font-size: 1.1rem;
}

.brand-wordmark .brand-name {
    color: var(--text-main);
    letter-spacing: 0.12em;
}

.site-header .container {
    max-width: 1420px;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 1.15rem;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

/* User Menu Capsule & Dropdown */
.user-menu-dropdown {
    position: relative;
    display: inline-block;
}

.user-pill-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    padding: 0.35rem 0.75rem 0.35rem 0.4rem;
    border-radius: 999px;
    color: var(--text-main);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.user-pill-btn:hover {
    background: rgba(214, 172, 82, 0.12);
    border-color: var(--gold);
}

.user-avatar-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gold);
    color: #0e0d0a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
}

.user-pill-name {
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-pill-arrow {
    font-size: 0.65rem;
    color: var(--gold);
    transition: transform 0.2s;
}

.user-menu-popover {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    width: 230px;
    background: #15130e;
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85), 0 0 24px rgba(214, 172, 82, 0.15);
    padding: 0.5rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    pointer-events: none;
}

/* Invisible Hover Bridge: Prevents menu from closing when cursor moves across gap */
.user-menu-popover::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
    background: transparent;
}

.user-menu-dropdown:hover .user-menu-popover,
.user-menu-popover.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.user-menu-dropdown:hover .user-pill-arrow,
.user-menu-dropdown.active .user-pill-arrow {
    transform: rotate(180deg);
}

.user-menu-header {
    padding: 0.65rem 0.75rem 0.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.35rem;
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.15s;
}

.user-menu-item:hover {
    background: rgba(214, 172, 82, 0.1);
    color: var(--gold);
    transform: translateX(3px);
}

.user-menu-divider {
    height: 1px;
    background: var(--border);
    margin: 0.35rem 0;
}

.user-menu-logout {
    color: #ff7b7b !important;
}

.user-menu-logout:hover {
    background: rgba(255, 80, 80, 0.12) !important;
    color: #ff5252 !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.65rem 1.25rem;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-align: center;
}

.btn-gold {
    background: var(--gold);
    color: #1a140a;
}

.btn-gold:hover {
    background: var(--gold-light);
    color: #000;
    box-shadow: 0 0 16px rgba(214, 172, 82, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
}

.btn-block {
    width: 100%;
}

/* Cards */
.app-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.2s, transform 0.2s;
}

.app-card:hover {
    border-color: rgba(214, 172, 82, 0.4);
}

.card-gold-glow {
    border-color: var(--border-gold);
    box-shadow: 0 4px 24px rgba(214, 172, 82, 0.08);
}

/* Micro Labels */
.micro-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.micro-label.gold {
    color: var(--gold);
}

/* Badges */
.rank-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(214, 172, 82, 0.12);
    border: 1px solid rgba(214, 172, 82, 0.4);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    letter-spacing: 0.08em;
}

.badge-status {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-available { background: rgba(131, 214, 154, 0.15); color: #83d69a; border: 1px solid rgba(131, 214, 154, 0.4); }
.badge-reserved { background: rgba(235, 173, 85, 0.15); color: #ebad55; border: 1px solid rgba(235, 173, 85, 0.4); }
.badge-activated { background: rgba(214, 172, 82, 0.15); color: var(--gold); border: 1px solid var(--border-gold); }
.badge-special { background: rgba(184, 134, 248, 0.15); color: #b886f8; border: 1px solid rgba(184, 134, 248, 0.4); }
.badge-blocked { background: rgba(233, 130, 117, 0.15); color: var(--danger); border: 1px solid rgba(233, 130, 117, 0.4); }

/* Progress Bar */
.progress-track {
    width: 100%;
    height: 6px;
    background: #25221b;
    border-radius: 999px;
    overflow: hidden;
    margin: 0.75rem 0;
}

.progress-value {
    height: 100%;
    background: linear-gradient(90deg, #b88f34, #f3d489);
    border-radius: 999px;
    transition: width 0.4s ease;
}

/* Quick Grid */
.quick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin: 1.5rem 0;
}

@media (min-width: 768px) {
    .quick-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.quick-action {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.25rem 1rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-main);
    text-align: center;
}

.quick-action:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* Trust Row */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.25rem 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 2rem 0;
}

.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Footer: editorial, image-free layout */
.site-footer {margin-top:auto; background:#080907; border-top:1px solid var(--border); padding:4rem 0 2rem;}
.footer-editorial {background:radial-gradient(ellipse at 0% 0%,#202317 0%,#0c0e09 44%,#080907 80%);}
.footer-opening {display:flex;align-items:center;justify-content:space-between;gap:3rem;padding-bottom:3rem;border-bottom:1px solid #444531;}
.footer-opening h2 {font-family:var(--font-serif);font-weight:600;font-size:clamp(2.6rem,5.5vw,5rem);line-height:1.07;max-width:790px;margin-top:1rem;overflow-wrap:anywhere;}
.footer-circle-link {display:flex;align-items:center;justify-content:space-between;gap:1.5rem;border-bottom:1px solid var(--gold);padding:1rem 0;color:var(--gold);max-width:280px;}
.footer-circle-link span:last-child {display:grid;place-items:center;flex-shrink:0;width:58px;height:58px;border-radius:50%;background:var(--gold);color:#101207;font-size:2rem;}
.footer-circle-link:hover span:last-child {background:var(--text-main);}
.footer-editorial-grid {display:grid;grid-template-columns:minmax(0,1.8fr) repeat(3,minmax(0,1fr));gap:2.5rem;padding:3rem 0;}
.footer-wordmark {display:inline-block;font-family:var(--font-serif);font-style:italic;color:var(--gold);font-size:1.4rem;}
.footer-wordmark strong {font-family:var(--font-sans);font-style:normal;font-size:3.1rem;color:var(--text-main);letter-spacing:-.07em;}
.footer-manifesto p {color:var(--text-muted);font-size:.85rem;line-height:1.9;max-width:340px;margin:1rem 0;white-space:pre-line;overflow-wrap:anywhere;}
.footer-contact {color:var(--gold);font-size:.8rem;overflow-wrap:anywhere;}
.footer-link-column h3 {color:var(--gold);font-size:.68rem;letter-spacing:.1em;text-transform:uppercase;margin:1rem 0 1.3rem;}
.footer-link-column a {display:block;color:var(--text-muted);font-size:.8rem;line-height:1.6;padding:.35rem 0;overflow-wrap:anywhere;}
.footer-link-column a:hover {color:var(--text-main);}
.footer-disclaimer {border:1px solid #303326;border-radius:5px;padding:1rem 1.25rem;color:var(--text-muted);font-size:.74rem;line-height:1.7;overflow-wrap:anywhere;}
.footer-bottom-row {display:flex;align-items:center;justify-content:space-between;gap:1rem;padding-top:1.5rem;font-size:.7rem;color:var(--text-muted);}
.footer-language-links {display:flex;gap:1rem;}
.footer-language-links [aria-current] {color:var(--gold);}
.admin-example {margin-top:2rem;border:1px dashed var(--border-gold);border-radius:12px;background:#18160f;overflow:hidden;}
.admin-example summary {cursor:pointer;padding:1.15rem;font-weight:700;}
.admin-example summary span {display:block;font-size:.65rem;letter-spacing:.08em;color:var(--gold);margin-bottom:.4rem;}
.admin-example-body {padding:0 1.15rem 1.15rem;}
.admin-example-body p {color:var(--text-muted);font-size:.82rem;line-height:1.7;margin:.8rem 0;}
.footer-editorial a:focus-visible {outline:2px solid var(--gold);outline-offset:4px;}
@media(max-width:900px) {
 .footer-opening {align-items:flex-start;flex-direction:column;gap:1rem;}
 .footer-editorial-grid {grid-template-columns:repeat(3,minmax(0,1fr));gap:1.5rem;}
 .footer-manifesto {grid-column:1/-1;}
 .footer-manifesto p {max-width:600px;}
}
@media(max-width:560px) {
 .site-footer {padding-top:2.5rem;}
 .footer-editorial-grid {grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem;}
 .footer-bottom-row {align-items:flex-start;flex-direction:column;}
 .footer-circle-link {max-width:100%;}
}

/* Forms */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    background: #0d0d0b;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(214, 172, 82, 0.2);
}

/* Tables */
.table-responsive {
    overflow-x: auto;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.app-table th, .app-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.app-table th {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    background: rgba(20, 19, 16, 0.5);
}

.app-table tr:hover td {
    background: rgba(214, 172, 82, 0.03);
}

/* Flash Alerts */
.alert {
    padding: 0.85rem 1.25rem;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.alert-success { background: rgba(131, 214, 154, 0.15); border: 1px solid rgba(131, 214, 154, 0.4); color: #83d69a; }
.alert-danger { background: rgba(233, 130, 117, 0.15); border: 1px solid rgba(233, 130, 117, 0.4); color: var(--danger); }
.alert-info { background: rgba(214, 172, 82, 0.15); border: 1px solid var(--border-gold); color: var(--gold); }

/* Admin layout */
.admin-shell {
    display: flex;
    min-height: calc(100vh - 76px);
}

.admin-sidebar {
    width: 260px;
    background: #0e0d0a;
    border-right: 1px solid var(--border);
    padding: 1.5rem 1rem;
    flex-shrink: 0;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    transition: all 0.2s;
}

.admin-nav-item:hover, .admin-nav-item.active {
    background: rgba(214, 172, 82, 0.1);
    color: var(--gold);
}

.admin-content {
    flex-grow: 1;
    padding: 2rem;
    background: var(--bg-main);
}
/* Ultra-Luxury Gold Enhancements & Animations */
.gold-shimmer {
    background: linear-gradient(135deg, #d6ac52 0%, #fff2cf 25%, #d6ac52 50%, #ad822b 75%, #f1d489 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: goldShine 6s linear infinite;
}

@keyframes goldShine {
    to { background-position: 200% center; }
}

.coin-glow-wrap {
    position: relative;
    display: inline-block;
}

.coin-glow-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(214, 172, 82, 0.18) 0%, rgba(214, 172, 82, 0.04) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Mobile Web App (PWA) Navigation & Floating Experience */
@media (max-width: 991px) {
    body {
        padding-bottom: 76px; /* Space for bottom app nav */
    }

    .site-header {
        height: 64px;
    }

    .brand-wordmark {
        font-size: 1.1rem;
    }

    .header-actions {
        gap: 0.5rem;
    }
}

.mobile-app-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(12, 11, 8, 0.96);
    backdrop-filter: blur(18px);
    border-top: 1px solid var(--border-gold);
    z-index: 999;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

@media (max-width: 991px) {
    .mobile-app-nav {
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex: 1;
    height: 100%;
    transition: color 0.2s;
    text-decoration: none;
}

.mobile-nav-item .nav-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.mobile-nav-item.active, .mobile-nav-item:hover {
    color: var(--gold);
}

.mobile-nav-item.active .nav-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(214, 172, 82, 0.6));
}

/* Mobile Guest Auth Bar (App-like prompt) */
.mobile-guest-sheet {
    display: none;
}

@media (max-width: 991px) {
    .mobile-guest-sheet {
        display: block;
        background: linear-gradient(180deg, rgba(26, 23, 17, 0.95) 0%, rgba(14, 13, 9, 0.98) 100%);
        border: 1px solid var(--border-gold);
        border-radius: 16px;
        padding: 1.25rem;
        margin: 1rem 0 1.5rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(214, 172, 82, 0.1);
        text-align: center;
    }

    .mobile-guest-sheet h3 {
        font-size: 1.1rem;
        font-weight: 800;
        margin-bottom: 0.25rem;
    }

    .mobile-guest-sheet p {
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-bottom: 1rem;
    }

    .mobile-guest-btns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
}
/* Corporate & Institutional Homepage Enhancements */
.hero-corporate {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    padding: 2.5rem 0 3.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 3rem;
}

@media (min-width: 992px) {
    .hero-corporate {
        grid-template-columns: 1.15fr 0.85fr;
        padding: 4rem 0 4.5rem;
    }
}

.hero-title {
    font-size: 2.35rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.25rem;
    }
}

.hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 580px;
}

.hero-metrics-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
    .hero-metrics-bar {
        grid-template-columns: repeat(4, 1fr);
    }
}

.metric-box {
    display: flex;
    flex-direction: column;
}

.metric-val {
    font-size: 1.65rem;
    font-weight: 800;
    font-family: monospace;
    color: var(--text-main);
    line-height: 1.2;
}

.metric-val.gold {
    color: var(--gold);
}

.metric-lbl {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 700;
    margin-top: 0.25rem;
}

/* Institutional Product Cards */
.products-matrix {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .products-matrix {
        grid-template-columns: 1fr 1fr;
    }
}

.product-tier-card {
    background: linear-gradient(180deg, #181611 0%, #11100d 100%);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d6ac52, #f5dfa3, #ad822b);
}

/* Corporate Pillar Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 2.5rem 0;
}

@media (min-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .pillars-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pillar-card {
    background: #11100d;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    transition: transform 0.2s, border-color 0.2s;
}

.pillar-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(214, 172, 82, 0.12);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

/* Step Timeline */
.steps-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 2rem 0;
}

@media (min-width: 992px) {
    .steps-timeline {
        grid-template-columns: repeat(5, 1fr);
    }
}

.step-box {
    background: #12110e;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem 1.25rem;
    position: relative;
}

.step-num {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: monospace;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

/* Corporate FAQ Details */
.corp-faq details {
    background: #12110d;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: border-color 0.2s;
}

.corp-faq details[open] {
    border-color: var(--border-gold);
}

.corp-faq summary {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.corp-faq summary::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--gold);
    font-weight: bold;
}

.corp-faq details[open] summary::after {
    content: '−';
}

.corp-faq p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 0.85rem;
}
/* Global Auth Tabs & Buttons (Desktop & Mobile) */
.auth-tabs,
.mobile-auth-tabs {
    display: flex;
    background: rgba(14, 13, 10, 0.85);
    border-radius: 10px;
    padding: 0.35rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-gold);
    gap: 0.4rem;
}

.auth-tab-btn,
.mobile-auth-tab-btn {
    flex: 1;
    padding: 0.65rem 0.85rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    outline: none;
}

.auth-tab-btn:hover,
.mobile-auth-tab-btn:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.04);
}

.auth-tab-btn.active,
.mobile-auth-tab-btn.active {
    background: linear-gradient(135deg, #d6ac52 0%, #ad822b 100%);
    color: #0b0a08 !important;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(214, 172, 82, 0.35);
}

.auth-tab-btn.active i,
.mobile-auth-tab-btn.active i {
    color: #0b0a08 !important;
}

.mobile-quick-fill-bar {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--text-muted);
    align-items: center;
    justify-content: space-between;
}

.btn-quick-fill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-quick-fill:hover {
    background: rgba(214, 172, 82, 0.15);
    border-color: var(--gold);
}

/* Direct Mobile App Login & Registration Card */
.mobile-direct-login-card {
    display: none;
}

@media (max-width: 991px) {
    .mobile-direct-login-card {
        display: block;
        background: linear-gradient(180deg, #1d1a13 0%, #12110c 100%);
        border: 1px solid var(--border-gold);
        border-radius: 16px;
        padding: 1.5rem 1.25rem;
        margin: 1rem 0 2rem;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 24px rgba(214, 172, 82, 0.12);
        position: relative;
        overflow: hidden;
    }

    .mobile-direct-login-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #d6ac52, #fae6b2, #ad822b);
    }
}
/* Google Translate Complete Suppression of Top Bar & Banners */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
iframe.skiptranslate,
.skiptranslate iframe,
div.skiptranslate:not(.lang-capsule),
.VIpgJd-ZVi9od-OR95微-bN97Pc,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf-ti6hGc,
.VIpgJd-ZVi9od-SmMuJa-sXjE1c,
#goog-gt-tt,
.goog-te-balloon-frame,
#google_translate_element {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    max-height: 0 !important;
    max-width: 0 !important;
    border: none !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
    pointer-events: none !important;
    z-index: -9999 !important;
}

html, body {
    top: 0px !important;
    position: static !important;
    margin-top: 0px !important;
    padding-top: 0px !important;
}

font {
    background-color: transparent !important;
    box-shadow: none !important;
    color: inherit !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Language Capsule */
.lang-capsule {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

.lang-opt {
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
}

.lang-opt:hover, .lang-opt.active {
    color: var(--gold);
}

.lang-sep {
    color: var(--border);
    font-size: 0.65rem;
}
/* Hero Action Triple Buttons (1 Row Guaranteed Layout) */
.hero-actions-triple-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    align-items: center;
    margin-top: 1.5rem;
    margin-bottom: 2.25rem;
    width: 100%;
}

.hero-btn-triple {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.8rem 0.65rem;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
    border-radius: 8px;
    letter-spacing: 0.02em;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-activate {
    border-color: var(--border-gold);
    color: var(--gold);
}

.hero-btn-activate:hover {
    background: rgba(214, 172, 82, 0.15);
    border-color: var(--gold);
    color: #ffffff;
}

@media (max-width: 576px) {
    .hero-btn-triple {
        padding: 0.65rem 0.35rem;
        font-size: 0.72rem;
        gap: 0.25rem;
    }
}
/* Notification Bell Badge */
.notif-badge-bubble {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #e53e3e;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #0d0c09;
    box-shadow: 0 0 8px rgba(229, 62, 62, 0.6);
}

/* 3D Rotating Gold Bullion Showcase */
.coin-3d-scene {
    width: 220px;
    height: 220px;
    margin: 0 auto 0.75rem;
    perspective: 1200px;
    position: relative;
    cursor: grab;
}

.coin-3d-scene:active {
    cursor: grabbing;
}

.coin-3d-object {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.coin-3d-object.spinning {
    animation: coinSpin3D 10s linear infinite;
}

.coin-3d-scene:hover .coin-3d-object.spinning {
    animation-play-state: paused;
}

@keyframes coinSpin3D {
    0% {
        transform: rotateY(0deg) rotateX(8deg);
    }
    50% {
        transform: rotateY(180deg) rotateX(-8deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(8deg);
    }
}

.coin-face {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 35px rgba(214, 172, 82, 0.35);
}

.coin-face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

.coin-face.front {
    transform: translateZ(8px);
}

.coin-face.back {
    transform: rotateY(180deg) translateZ(8px);
}

/* 3D Reeding & Rim Layer */
.coin-edge-rim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(232, 197, 107, 0.5);
    background: transparent;
    pointer-events: none;
    box-shadow: inset 0 0 12px rgba(214, 172, 82, 0.6);
}

/* Dynamic Light Specular Sweep */
.coin-shimmer {
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 240, 180, 0.45) 50%,
        rgba(255, 255, 255, 0) 60%
    );
    transform: rotate(25deg);
    animation: coinShimmerSweep 5s infinite ease-in-out;
    pointer-events: none;
}

@keyframes coinShimmerSweep {
    0% { transform: translateY(-100%) rotate(25deg); }
    100% { transform: translateY(100%) rotate(25deg); }
}

/* Soft Floor Halo Light */
.coin-floor-halo {
    width: 190px;
    height: 22px;
    margin: -10px auto 1rem;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(214, 172, 82, 0.5) 0%, rgba(214, 172, 82, 0) 75%);
    filter: blur(6px);
    animation: floorHaloPulse 5s ease-in-out infinite alternate;
}

@keyframes floorHaloPulse {
    0% { transform: scale(0.88); opacity: 0.5; }
    100% { transform: scale(1.12); opacity: 0.9; }
}

/* Mobile Hamburger Button & Drawer Navigation */
.mobile-hamburger-btn {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    width: 38px;
    height: 38px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.mobile-hamburger-btn:hover {
    background: rgba(214, 172, 82, 0.15);
    border-color: var(--gold);
    color: #fff;
}

/* Mobile Right Off-Canvas Backdrop */
.mobile-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.mobile-drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobile Right Off-Canvas Panel */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 310px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: #110f0b;
    z-index: 999999;
    border-left: 1px solid rgba(214, 172, 82, 0.35);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.85), -2px 0 15px rgba(214, 172, 82, 0.15);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.32s;
    display: flex;
    flex-direction: column;
}

.mobile-nav-drawer.open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.25rem;
    border-bottom: 1px solid rgba(214, 172, 82, 0.2);
    background: #16140f;
    flex-shrink: 0;
}

.drawer-close-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--text-main);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.drawer-close-btn:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(214, 172, 82, 0.15);
}

.mobile-drawer-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 1.15rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-section-title {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold);
    margin: 1.1rem 0 0.35rem 0.25rem;
    display: block;
}

.mobile-nav-section-title:first-child {
    margin-top: 0;
}

.mobile-drawer-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.85rem;
    border-radius: 8px;
    color: #e5e5e0;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.15s ease;
    border: 1px solid transparent;
}

.mobile-drawer-link i {
    width: 22px;
    color: var(--gold);
    font-size: 1rem;
    text-align: center;
    flex-shrink: 0;
}

.mobile-drawer-link:hover, .mobile-drawer-link.active {
    background: rgba(214, 172, 82, 0.12);
    border-color: rgba(214, 172, 82, 0.35);
    color: var(--gold);
}

.mobile-drawer-link.highlight-bullion {
    background: linear-gradient(135deg, rgba(214, 172, 82, 0.18) 0%, rgba(173, 130, 43, 0.1) 100%);
    border: 1px solid rgba(214, 172, 82, 0.5);
    color: var(--gold);
    font-weight: 800;
}

.mobile-drawer-divider {
    height: 1px;
    background: var(--border);
    margin: 0.75rem 0;
}

.mobile-drawer-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(214, 172, 82, 0.2);
    background: #0d0c09;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
