/* ============================================================
   Carpe Diem Sovereign PMA — Shared Styles
   Dark Obsidian Glassmorphism Theme
   ============================================================ */

:root {
    --bg-obsidian: #0b0713;
    --card-glass: rgba(22, 15, 33, 0.65);
    --border-glass: rgba(212, 175, 55, 0.25);
    --border-hover: rgba(77, 238, 234, 0.5);
    --gold-light: #f7e7a1;
    --gold-accent: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.35);
    --purple-gradient: linear-gradient(135deg, #E8437D, #8B42FF);
    --cyan-glow: #4deeea;
    --iridescent-gradient: linear-gradient(90deg, #4DEEEA, #9B51E0, #E8437D, #FF9E00);
    --text-main: #f0e6f6;
    --text-muted: #a499b3;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

body {
    background-color: var(--bg-obsidian);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    background-image:
        radial-gradient(circle at 15% 15%, rgba(123, 44, 191, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(232, 67, 125, 0.12) 0%, transparent 50%);
}

/* ── Container ─────────────────────────────────────────── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Navigation ────────────────────────────────────────── */
.sovereign-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.sovereign-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold-accent);
    text-transform: uppercase;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-accent);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold-accent);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn-gold {
    background: linear-gradient(180deg, #F9E79F 0%, #D4AF37 100%);
    color: #120B1C;
    padding: 10px 22px;
    border-radius: 20px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px var(--gold-glow);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 22px rgba(212, 175, 55, 0.7);
}

.btn-preview {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-preview:hover {
    background: var(--purple-gradient);
    border-color: transparent;
    color: #fff;
}

.btn-preview-gold {
    background: transparent;
    border: 1px solid var(--gold-accent);
    color: var(--gold-light);
    padding: 5px 14px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-preview-gold:hover {
    background: var(--gold-accent);
    color: #120B1C;
}

.btn-stream {
    background: linear-gradient(180deg, #F9E79F 0%, #D4AF37 100%);
    border: none;
    color: #120B1C;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 0 10px var(--gold-glow);
    width: 100%;
}

.btn-stream:hover {
    transform: scale(1.03);
}

/* ── Glassmorphism Cards ───────────────────────────────── */
.glass-card {
    background: var(--card-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* ── Hero Sections ─────────────────────────────────────── */
.hero {
    text-align: center;
    padding: 60px 0 40px 0;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    background: linear-gradient(180deg, #FFFFFF 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 35px auto;
}

/* ── Player Card (Landing Page) ────────────────────────── */
.player-card {
    background: var(--card-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 25px;
    margin: 0 auto 40px auto;
    max-width: 800px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.player-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-accent);
    margin-bottom: 10px;
}

/* ── Waveform Animation (Landing) ──────────────────────── */
.waveform {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 15px 0;
}

.wave-bar {
    width: 4px;
    height: 100%;
    background: var(--cyan-glow);
    border-radius: 2px;
    animation: pulse 1.5s infinite ease-in-out;
}

.wave-bar:nth-child(2n) { animation-delay: 0.2s; height: 60%; }
.wave-bar:nth-child(3n) { animation-delay: 0.4s; height: 90%; }
.wave-bar:nth-child(4n) { animation-delay: 0.1s; height: 40%; }

@keyframes pulse {
    0%, 100% { transform: scaleY(0.3); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* ── Section Titles ────────────────────────────────────── */
.section-title {
    text-align: center;
    margin: 50px 0 25px 0;
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: var(--text-main);
}

.grid-title {
    font-size: 1.3rem;
    color: var(--gold-accent);
    margin: 40px 0 20px 0;
    border-left: 3px solid var(--gold-accent);
    padding-left: 12px;
}

.section-title-gold {
    font-size: 1.25rem;
    color: var(--gold-light);
    margin: 30px 0 20px 0;
    border-left: 3px solid var(--gold-accent);
    padding-left: 12px;
}

/* ── Track Grid (Landing) ──────────────────────────────── */
.track-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.track-card {
    background: var(--card-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.track-card:hover {
    border-color: var(--gold-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 66, 255, 0.25);
}

.track-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    color: var(--gold-accent);
    font-weight: bold;
}

.track-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.track-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* ── Pricing Grid ──────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.price-card {
    background: var(--card-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.price-card.featured {
    border: 2px solid var(--gold-accent);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    position: relative;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-accent);
    color: #120B1C;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 10px;
    text-transform: uppercase;
}

.price-card ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.price-card ul li::before {
    content: "✓";
    color: var(--gold-accent);
    position: absolute;
    left: 0;
}

/* ── Science Page ──────────────────────────────────────── */
.science-hero {
    text-align: center;
    padding: 50px 0 30px 0;
}

.science-hero h1 {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 10px;
}

.science-hero p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
}

.interactive-lab {
    background: var(--card-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.lab-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-accent);
    margin-bottom: 15px;
}

.interactive-lab canvas {
    width: 100%;
    height: 120px;
    background: rgba(10, 6, 18, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brainwave Grid */
.brainwave-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}

.wave-card {
    background: var(--card-glass);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wave-card:hover,
.wave-card.active {
    border-color: var(--cyan-glow);
    box-shadow: 0 0 20px rgba(77, 238, 234, 0.25);
    transform: translateY(-3px);
}

.wave-hz {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cyan-glow);
    margin-bottom: 5px;
}

.wave-state {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
}

.wave-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Clinical Principles */
.principles-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.principle-card {
    background: var(--card-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 25px;
}

.principle-card h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.principle-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Headphones Notice ─────────────────────────────────── */
.headphone-notice {
    background: rgba(77, 238, 234, 0.08);
    border: 1px solid var(--cyan-glow);
    border-radius: 12px;
    padding: 12px 20px;
    margin: 25px 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--cyan-glow);
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(77, 238, 234, 0.15);
}

/* ── Frequencies Page ──────────────────────────────────── */
.freq-hero {
    text-align: center;
    padding: 25px 0 20px 0;
}

.freq-hero h1 {
    font-family: 'Georgia', serif;
    font-size: 2.3rem;
    font-weight: 300;
    color: #ffffff;
}

.freq-hero p {
    color: var(--text-muted);
    max-width: 720px;
    margin: 10px auto 0 auto;
    font-size: 0.98rem;
}

/* Catalog Grid */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
    margin: 30px 0 50px 0;
}

.catalog-card {
    background: var(--card-glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.catalog-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(77, 238, 234, 0.2);
}

.hz-badge {
    align-self: flex-start;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--gold-accent);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 10px;
    margin-bottom: 12px;
    display: inline-block;
}

.card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.card-tech {
    font-size: 0.78rem;
    color: var(--cyan-glow);
    margin-bottom: 10px;
}

.card-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 18px;
}

.card-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 12px;
}

/* ── Docked Player Bar (Frequencies Page) ──────────────── */
.docked-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85px;
    background: rgba(14, 9, 23, 0.94);
    backdrop-filter: blur(25px);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 9999;
}

.play-btn-main {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(180deg, #F9E79F 0%, #D4AF37 100%);
    border: none;
    color: #120B1C;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 0 15px var(--gold-glow);
    transition: transform 0.2s;
}

.play-btn-main:hover {
    transform: scale(1.08);
}

/* ── Immersion Player (Vault Page) ─────────────────────── */
.immersion-card {
    width: 100%;
    background: var(--card-glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 25px 35px 30px 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
    margin-bottom: 35px;
    position: relative;
}

.wave-display {
    position: relative;
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.sine-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.sine-path-back {
    fill: none;
    stroke: url(#iridescent-gradient);
    stroke-width: 1.5;
    opacity: 0.45;
    animation: floatWave 6s ease-in-out infinite alternate-reverse;
}

.sine-path-front {
    fill: none;
    stroke: url(#iridescent-gradient);
    stroke-width: 2.5;
    filter: drop-shadow(0px 0px 10px rgba(77, 238, 234, 0.6));
    animation: floatWave 4s ease-in-out infinite alternate;
}

@keyframes floatWave {
    0% { transform: translateY(0px) scaleY(1); }
    50% { transform: translateY(-4px) scaleY(1.1); }
    100% { transform: translateY(4px) scaleY(0.9); }
}

.info-volume-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 18px;
    padding: 0 5px;
}

.track-meta .track-name {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.track-meta .artist-name {
    font-size: 0.85rem;
    color: var(--cyan-glow);
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-icon {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.volume-slider {
    -webkit-appearance: none;
    width: 90px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold-accent);
    cursor: pointer;
    box-shadow: 0 0 8px var(--gold-glow);
}

.controls-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--gold-light);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, transform 0.2s;
    padding: 0;
}

.icon-btn:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.play-btn-gold {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fff1b0 0%, #d4af37 60%, #aa820a 100%);
    border: none;
    color: #120b1c;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 20px var(--gold-glow), 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.play-btn-gold:hover {
    transform: scale(1.06);
    box-shadow: 0 0 28px rgba(212, 175, 55, 0.7);
}

.progress-bar-wrapper {
    flex: 1;
    height: 28px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.progress-wave-svg {
    width: 100%;
    height: 100%;
}

/* ── Vault Grid ────────────────────────────────────────── */
.vault-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.vault-card {
    background: var(--card-glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.vault-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(77, 238, 234, 0.2);
}

.vault-hero {
    text-align: center;
    padding: 15px 0 25px 0;
}

.vault-hero h1 {
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: #ffffff;
}

/* ── Footer ────────────────────────────────────────────── */
.sovereign-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 0;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sovereign-footer p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ── Alerts (Flash Messages) ───────────────────────────── */
.sovereign-alert {
    max-width: 1100px;
    margin: 16px auto 0;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
}

.sovereign-alert-success {
    background: rgba(77, 238, 234, 0.1);
    border: 1px solid var(--cyan-glow);
    color: var(--cyan-glow);
}

.sovereign-alert-error {
    background: rgba(232, 67, 125, 0.1);
    border: 1px solid #E8437D;
    color: #E8437D;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
    .sovereign-nav {
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 12px;
        padding: 15px 0;
        border-top: 1px solid rgba(212, 175, 55, 0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero h1,
    .science-hero h1,
    .freq-hero h1,
    .vault-hero h1 {
        font-size: 1.8rem;
    }

    .track-grid,
    .pricing-grid,
    .catalog-grid,
    .vault-grid,
    .brainwave-grid,
    .principles-row {
        grid-template-columns: 1fr;
    }

    .immersion-card {
        padding: 20px 15px;
    }

    .info-volume-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .docked-player {
        padding: 0 15px;
        height: 70px;
    }
}

/* ============================================================
   Auth Pages Styles
   ============================================================ */
.auth-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.auth-card {
    background: var(--card-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}
.auth-title {
    font-size: 1.8rem;
    font-weight: 300;
    color: #ffffff;
    text-align: center;
    margin-bottom: 8px;
}
.auth-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 24px;
}

/* ============================================================
   Form Inputs & Layout Overrides
   ============================================================ */
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-light);
    margin-bottom: 7px;
}
.form-control {
    width: 100%;
    background: rgba(10, 6, 18, 0.8) !important;
    border: 1px solid var(--border-glass) !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 0.9rem !important;
    color: var(--text-main) !important;
    outline: none !important;
    transition: all 0.2s !important;
}
.form-control:focus {
    border-color: var(--cyan-glow) !important;
    box-shadow: 0 0 10px rgba(77, 238, 234, 0.2) !important;
}
.auth-footer-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 20px;
}
.auth-footer-text a {
    color: var(--gold-accent);
    font-weight: 600;
}

/* ============================================================
   Tables & Lists
   ============================================================ */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    color: var(--text-main);
}
table th {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-light);
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid var(--border-glass);
}
table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}
table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}
.card {
    background: var(--card-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
.badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-accent);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}

