/* LOGIC // LORE - Main Design System Stylesheet */

/* ==========================================================================
   01. BASE VARIABLE SETUP & THEME TOKENS
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-base: #0f172a;        /* Deep midnight navy base */
    --bg-darker: #070b13;      /* Ultra dark panel backdrop */
    --bg-card: rgba(15, 23, 42, 0.75);
    --bg-glass: rgba(7, 11, 19, 0.65);
    
    --logic-cyan: #38bdf8;     /* Electric Cyan for technical/AI content */
    --logic-cyan-rgb: 56, 189, 248;
    --lore-gold: #f59e0b;      /* Burnished Gold for creative/TTRPG content */
    --lore-gold-rgb: 245, 158, 11;
    
    --text-primary: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #475569;
    
    --color-green: #10b981;    /* System Status - Stable */
    --color-amber: #f59e0b;    /* System Status - Warning */
    --color-red: #ef4444;      /* System Status - Locked/Alert */
    
    --border-cyan: rgba(56, 189, 248, 0.25);
    --border-gold: rgba(245, 158, 11, 0.25);
    --border-dark: rgba(71, 85, 105, 0.3);

    /* Fonts */
    --font-title: 'Orbitron', -apple-system, sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-code: 'JetBrains Mono', monospace;

    /* Styling Properties */
    --glow-cyan: 0 0 15px rgba(56, 189, 248, 0.4);
    --glow-gold: 0 0 15px rgba(245, 158, 11, 0.4);
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-mid: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   02. RESET & LAYOUT GLOBAL SETUP
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-darker);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
}

body {
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
    border-left: 1px solid var(--border-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--text-dark);
    border-radius: 4px;
    border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--logic-cyan);
    box-shadow: var(--glow-cyan);
}

/* Screen reader only utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ==========================================================================
   03. INDUSTRIAL TECH BACKGROUNDS & EFFECTS
   ========================================================================== */
/* Tech grid overlay background */
.tech-grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(56, 189, 248, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    pointer-events: none;
    z-index: 1;
}

/* Sci-fi scanner line sweep */
.scanner-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(56, 189, 248, 0.15) 10%, 
        rgba(56, 189, 248, 0.5) 50%, 
        rgba(56, 189, 248, 0.15) 90%, 
        transparent
    );
    pointer-events: none;
    z-index: 2;
    animation: scannerSweep 12s linear infinite;
    opacity: 0.7;
}

@keyframes scannerSweep {
    0% { transform: translateY(-10vh); }
    100% { transform: translateY(110vh); }
}

/* Pulse keyframes for glowing elements */
@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5)); }
    50% { opacity: 1; filter: drop-shadow(0 0 8px rgba(255, 255, 255, 1)); }
}
.pulse-glow {
    animation: pulseGlow 2.5s infinite ease-in-out;
}

/* ==========================================================================
   04. HUD HEADER & NAVIGATION
   ========================================================================== */
.tech-header {
    background-color: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-cyan);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Logo Area */
.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo-svg, .logo-img {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--border-cyan);
    box-shadow: var(--glow-cyan);
}
.logo-text {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 2px;
}
.text-logic { color: var(--logic-cyan); text-shadow: var(--glow-cyan); }
.text-lore { color: var(--lore-gold); text-shadow: var(--glow-gold); }
.text-separator { color: var(--text-primary); opacity: 0.4; margin: 0 0.15rem; }

/* Navigation links */
.tech-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-item {
    font-family: var(--font-title);
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
}
.nav-num {
    font-family: var(--font-code);
    font-size: 0.75rem;
    color: var(--text-dark);
}
.nav-item:hover {
    color: var(--text-primary);
}
.nav-item.active {
    color: var(--logic-cyan);
    border-bottom-color: var(--logic-cyan);
    text-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}
.nav-item.active .nav-num {
    color: var(--logic-cyan);
}

/* Nav specific triggers depending on active tabs */
.tech-nav:has(.nav-item[data-target="nexus"].active) ~ .tech-header {
    border-bottom-color: var(--border-gold);
}

/* System Status Dashboard widget */
.system-status {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-family: var(--font-code);
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    border-left: 1px solid var(--text-dark);
    padding-left: 1rem;
}
.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.led {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}
.led.green { background-color: var(--color-green); box-shadow: 0 0 6px var(--color-green); }
.led.red { background-color: var(--color-red); box-shadow: 0 0 6px var(--color-red); }
.led.amber { background-color: var(--color-amber); box-shadow: 0 0 6px var(--color-amber); }
.led.blink {
    animation: ledBlink 1.5s infinite step-end;
}
@keyframes ledBlink {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.status-label {
    color: var(--text-muted);
}
.status-val.green-text { color: var(--color-green); }
.status-val.red-text { color: var(--color-red); }
.status-val.amber-text { color: var(--color-amber); }

/* ==========================================================================
   05. MAIN CARD CONTAINER & CORNERS
   ========================================================================== */
.hud-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    z-index: 5;
    flex: 1;
}

/* Generic Industrial Sci-Fi Tech Card */
.tech-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 4px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color var(--transition-mid);
}

.tech-card:hover {
    border-color: rgba(56, 189, 248, 0.15);
}

/* Corner bracket frames */
.corner-decorator {
    position: absolute;
    width: 14px;
    height: 14px;
    pointer-events: none;
}
.corner-decorator.top-left {
    top: -1px;
    left: -1px;
    border-top: 3px solid var(--logic-cyan);
    border-left: 3px solid var(--logic-cyan);
}
.corner-decorator.top-right {
    top: -1px;
    right: -1px;
    border-top: 3px solid var(--logic-cyan);
    border-right: 3px solid var(--logic-cyan);
}
.corner-decorator.bottom-left {
    bottom: -1px;
    left: -1px;
    border-bottom: 3px solid var(--logic-cyan);
    border-left: 3px solid var(--logic-cyan);
}
.corner-decorator.bottom-right {
    bottom: -1px;
    right: -1px;
    border-bottom: 3px solid var(--logic-cyan);
    border-right: 3px solid var(--logic-cyan);
}

/* Section Header Card */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}
.section-title {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.section-title .bracket {
    color: var(--logic-cyan);
    opacity: 0.7;
}
.section-title .subtitle {
    font-family: var(--font-code);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-left: 0.5rem;
    padding-left: 0.75rem;
    border-left: 1px solid var(--text-dark);
}
.header-leds {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.glow-bar {
    width: 60px;
    height: 4px;
    background-color: var(--logic-cyan);
    box-shadow: var(--glow-cyan);
    border-radius: 2px;
}
.glow-bar.gold {
    background-color: var(--lore-gold);
    box-shadow: var(--glow-gold);
}

/* ==========================================================================
   06. HERO SECTION
   ========================================================================== */
.hero-section {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 80% 50%, rgba(56, 189, 248, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
}

.hero-section .corner-decorator {
    border-color: var(--text-dark);
}

.hero-section:hover {
    border-color: var(--border-cyan);
}

.hero-section:hover .corner-decorator {
    border-color: var(--logic-cyan);
}

.crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    pointer-events: none;
    opacity: 0.15;
    background-image: 
        radial-gradient(circle, var(--logic-cyan) 2px, transparent 3px),
        linear-gradient(var(--logic-cyan), var(--logic-cyan)),
        linear-gradient(90deg, var(--logic-cyan), var(--logic-cyan));
    background-position: center;
    background-size: 100% 100%, 1px 40px, 40px 1px;
    background-repeat: no-repeat;
    border: 1px dashed var(--logic-cyan);
    border-radius: 50%;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-logo-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--border-cyan);
    box-shadow: var(--glow-cyan);
    margin-bottom: 1.5rem;
    animation: heroLogoGlow 4s infinite ease-in-out alternate;
}
@keyframes heroLogoGlow {
    from {
        box-shadow: 0 0 10px rgba(56, 189, 248, 0.25), 0 0 20px rgba(245, 158, 11, 0.1);
        border-color: rgba(56, 189, 248, 0.25);
    }
    to {
        box-shadow: 0 0 25px rgba(56, 189, 248, 0.5), 0 0 35px rgba(245, 158, 11, 0.25);
        border-color: rgba(245, 158, 11, 0.4);
    }
}
.hero-title {
    font-family: var(--font-title);
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--logic-cyan) 80%, var(--lore-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats grids inside hero */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: 1px solid var(--border-dark);
    padding-top: 1.5rem;
}
.stat-box {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.stat-label {
    font-family: var(--font-code);
    font-size: 0.65rem;
    color: var(--text-dark);
    letter-spacing: 1px;
}
.stat-val {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   07. AI COMPASS (8GB VRAM SECTION)
   ========================================================================== */
.compass-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
    align-items: start;
}

.compass-control-panel {
    background-color: var(--bg-darker);
    border: 1px solid var(--border-dark);
    padding: 1.5rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tech-subheader {
    font-family: var(--font-title);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-primary);
    border-bottom: 2px solid var(--text-dark);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}
.panel-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* VRAM Form elements */
.calc-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form-group label {
    font-family: var(--font-code);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}
.tech-select {
    background-color: var(--bg-base);
    border: 1px solid var(--text-dark);
    color: var(--text-primary);
    padding: 0.6rem;
    font-family: var(--font-code);
    font-size: 0.75rem;
    outline: none;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-fast);
}
.tech-select:focus, .tech-select:hover {
    border-color: var(--logic-cyan);
    box-shadow: 0 0 5px rgba(56, 189, 248, 0.2);
}

/* Interactive Switch Toggle */
.switch-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-code);
    font-size: 0.75rem;
    color: var(--text-primary);
    cursor: pointer;
}
.switch-label input {
    display: none;
}
.switch-custom {
    width: 32px;
    height: 16px;
    background-color: var(--text-dark);
    border-radius: 8px;
    position: relative;
    display: inline-block;
    transition: var(--transition-fast);
}
.switch-custom::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--text-primary);
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: var(--transition-fast);
}
.switch-label input:checked + .switch-custom {
    background-color: var(--logic-cyan);
}
.switch-label input:checked + .switch-custom::before {
    transform: translateX(16px);
}

/* VRAM Results Gauge UI */
.calc-results {
    border-top: 1px solid var(--border-dark);
    padding-top: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.calc-gauge {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Futuristic ring gauge using CSS background gradients */
.gauge-ring {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Visual conic gradient representation */
    background: conic-gradient(
        var(--gauge-color, var(--logic-cyan)) var(--vram-pct, 0%), 
        rgba(71, 85, 105, 0.2) var(--vram-pct, 0%) 100%
    );
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.gauge-ring::after {
    content: '';
    position: absolute;
    width: 76px;
    height: 76px;
    background-color: var(--bg-darker);
    border-radius: 50%;
    z-index: 1;
}
.gauge-value {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 800;
    z-index: 2;
    color: var(--text-primary);
}
.gauge-label {
    font-family: var(--font-code);
    font-size: 0.55rem;
    color: var(--text-muted);
    z-index: 2;
}

.calc-diagnostics {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
    font-family: var(--font-code);
    font-size: 0.65rem;
}
.diag-line {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(71, 85, 105, 0.2);
    padding-bottom: 0.2rem;
}
.diag-line span:first-child {
    color: var(--text-muted);
}
.diag-line span:last-child {
    font-weight: 600;
}

/* Tabs Content Styles */
.compass-content-tabs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.tab-triggers {
    display: flex;
    border-bottom: 1px solid var(--border-dark);
    gap: 0.5rem;
}
.tab-trigger {
    background: none;
    border: none;
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
    letter-spacing: 0.5px;
}
.tab-trigger:hover {
    color: var(--text-primary);
    background-color: rgba(56, 189, 248, 0.02);
}
.tab-trigger.active {
    color: var(--logic-cyan);
    border-bottom-color: var(--logic-cyan);
    text-shadow: 0 0 5px rgba(56, 189, 248, 0.3);
}

.tab-panel {
    display: none;
    animation: tabFadeIn 0.3s ease-out;
}
.tab-panel.active {
    display: block;
}

@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.guide-card {
    background-color: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(71, 85, 105, 0.2);
    padding: 1.25rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.guide-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.glow-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    display: inline-block;
}
.glow-dot.cyan { background-color: var(--logic-cyan); box-shadow: var(--glow-cyan); }
.glow-dot.gold { background-color: var(--lore-gold); box-shadow: var(--glow-gold); }

.guide-card h3 {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.guide-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ==========================================================================
   08. THE NEXUS PORTAL (CLIENT GATEWAY)
   ========================================================================== */
.nexus-portal-frame {
    border: 1px solid var(--border-dark);
    border-radius: 4px;
    background-color: var(--bg-darker);
    overflow: hidden;
    position: relative;
    min-height: 380px;
    transition: border-color var(--transition-mid);
}

.nexus-portal-frame:has(#portal-dashboard-view.active) {
    border-color: var(--border-gold);
}

/* Portal transitions */
.portal-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-out;
}
.portal-panel.active {
    display: block;
    opacity: 1;
}

/* Auth View Styles */
.auth-box {
    max-width: 520px;
    margin: 3.5rem auto;
}
.terminal-header {
    background-color: #0d1527;
    border: 1px solid var(--border-dark);
    border-bottom: none;
    padding: 0.6rem 1rem;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-code);
    font-size: 0.65rem;
    letter-spacing: 0.5px;
}
.terminal-title {
    color: var(--text-primary);
}
.terminal-status {
    color: var(--text-dark);
}
.terminal-body {
    background-color: rgba(7, 11, 19, 0.95);
    border: 1px solid var(--border-dark);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.auth-warning {
    font-family: var(--font-code);
    font-size: 0.7rem;
    color: var(--color-amber);
    border: 1px solid rgba(245, 158, 11, 0.2);
    background-color: rgba(245, 158, 11, 0.03);
    padding: 0.75rem;
    border-radius: 2px;
}

/* Input design */
.terminal-input-group {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--text-dark);
    padding: 0.4rem 0;
    margin-bottom: 1rem;
}
.prompt-arrow {
    font-family: var(--font-code);
    color: var(--lore-gold);
    margin-right: 0.75rem;
    font-weight: 600;
}
.terminal-input {
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-code);
    font-size: 0.9rem;
    width: 100%;
    outline: none;
    letter-spacing: 1px;
}
.terminal-input::placeholder {
    color: var(--text-dark);
}
.security-mask {
    -webkit-text-security: disc;
}

.terminal-btn {
    width: 100%;
    background: none;
    border: 1px solid var(--lore-gold);
    color: var(--lore-gold);
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0.75rem;
    cursor: pointer;
    border-radius: 2px;
    transition: var(--transition-fast);
}
.terminal-btn:hover {
    background-color: var(--lore-gold);
    color: var(--bg-darker);
    box-shadow: var(--glow-gold);
}
.terminal-btn.cyan-glow {
    border-color: var(--logic-cyan);
    color: var(--logic-cyan);
}
.terminal-btn.cyan-glow:hover {
    background-color: var(--logic-cyan);
    color: var(--bg-darker);
    box-shadow: var(--glow-cyan);
}

.login-feedback {
    font-family: var(--font-code);
    font-size: 0.75rem;
    text-align: center;
    min-height: 18px;
}
.error-text { color: var(--color-red); }
.success-text { color: var(--color-green); }

.credential-hints {
    border-top: 1px dashed var(--text-dark);
    padding-top: 1rem;
    margin-top: 0.5rem;
}
.hint-header {
    font-family: var(--font-title);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}
.hint-list {
    list-style: none;
    font-family: var(--font-code);
    font-size: 0.65rem;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.hint-list code {
    color: var(--text-muted);
}

/* Dynamic Dashboard View */
.dashboard-grid {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: tabFadeIn 0.4s ease-out;
}
.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-gold);
    padding-bottom: 0.75rem;
}
.dash-title-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.role-badge {
    font-family: var(--font-title);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    border: 1px solid transparent;
}
.role-badge.admin { border-color: var(--color-red); color: var(--color-red); background-color: rgba(239, 68, 68, 0.05); }
.role-badge.client { border-color: var(--lore-gold); color: var(--lore-gold); background-color: rgba(245, 158, 11, 0.05); }
.role-badge.reviewer { border-color: var(--logic-cyan); color: var(--logic-cyan); background-color: rgba(56, 189, 248, 0.05); }

.dash-user-info {
    font-family: var(--font-code);
    font-size: 0.8rem;
    color: var(--text-primary);
}
.logout-btn {
    background: none;
    border: 1px solid var(--text-dark);
    color: var(--text-muted);
    font-family: var(--font-code);
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
    cursor: pointer;
    border-radius: 2px;
    transition: var(--transition-fast);
}
.logout-btn:hover {
    border-color: var(--color-red);
    color: var(--color-red);
}

/* Dynamic grid layouts for dashboards */
.dash-widgets-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}
@media (max-width: 900px) {
    .dash-widgets-layout {
        grid-template-columns: 1fr;
    }
}

.widget-box {
    background-color: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(71, 85, 105, 0.2);
    border-radius: 2px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.widget-title {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    border-left: 2px solid var(--lore-gold);
    padding-left: 0.6rem;
}
.widget-title.cyan-edge {
    border-left-color: var(--logic-cyan);
}

/* Deliverable progress tracker */
.progress-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 1rem 0;
    margin-top: 0.5rem;
}
.progress-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    z-index: 1;
    transform: translateY(-50%);
}
.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
    position: relative;
}
.step-node {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--bg-darker);
    border: 2px solid var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.timeline-step.completed .step-node {
    border-color: var(--lore-gold);
    background-color: var(--lore-gold);
    box-shadow: var(--glow-gold);
}
.timeline-step.active .step-node {
    border-color: var(--lore-gold);
    background-color: var(--bg-darker);
    box-shadow: var(--glow-gold);
    animation: nodePulse 1.5s infinite alternate;
}
@keyframes nodePulse {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}
.step-label {
    font-family: var(--font-code);
    font-size: 0.6rem;
    color: var(--text-muted);
}
.timeline-step.completed .step-label, .timeline-step.active .step-label {
    color: var(--text-primary);
    font-weight: 600;
}

/* Feedbacks Lists & admin console */
.feedback-console-log {
    background-color: #070b13;
    border: 1px solid var(--border-dark);
    font-family: var(--font-code);
    font-size: 0.75rem;
    padding: 0.75rem;
    height: 180px;
    overflow-y: auto;
    border-radius: 2px;
}
.console-log-row {
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}
.console-log-row.cyan-txt { color: var(--logic-cyan); }
.console-log-row.gold-txt { color: var(--lore-gold); }
.console-log-row.green-txt { color: var(--color-green); }

/* Sandbox Testing Widget (Reviewer) */
.sandbox-tester {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.sandbox-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 600px) {
    .sandbox-row {
        grid-template-columns: 1fr;
    }
}
.sandbox-col {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.sandbox-col label {
    font-family: var(--font-code);
    font-size: 0.65rem;
    color: var(--text-muted);
}
.sandbox-output-display {
    background-color: var(--bg-darker);
    border: 1px solid rgba(71, 85, 105, 0.2);
    border-radius: 2px;
    padding: 0.75rem;
    height: 140px;
    overflow-y: auto;
    font-family: var(--font-code);
    font-size: 0.75rem;
    color: var(--text-primary);
    white-space: pre-wrap;
}

/* Admin Interactive Terminal Box */
.admin-terminal-input-wrapper {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(71, 85, 105, 0.2);
    padding-top: 0.6rem;
    margin-top: 0.4rem;
}
.admin-term-input {
    background: none;
    border: none;
    color: var(--logic-cyan);
    font-family: var(--font-code);
    font-size: 0.75rem;
    width: 100%;
    outline: none;
}

/* ==========================================================================
   09. CONSULTATION SERVICES SECTION & FORM
   ========================================================================== */
.services-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (max-width: 960px) {
    .services-layout {
        grid-template-columns: 1fr;
    }
}

.services-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.service-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 300;
}
.service-offerings {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.offering-card {
    background-color: rgba(15, 23, 42, 0.4);
    border-left: 3px solid var(--lore-gold);
    border-top: 1px solid rgba(71, 85, 105, 0.15);
    border-bottom: 1px solid rgba(71, 85, 105, 0.15);
    border-right: 1px solid rgba(71, 85, 105, 0.15);
    padding: 1rem 1.25rem;
    border-radius: 0 4px 4px 0;
    transition: var(--transition-fast);
}
.offering-card:hover {
    background-color: rgba(245, 158, 11, 0.02);
    border-left-color: var(--logic-cyan);
}
.offering-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.35rem;
}
.offering-icon {
    font-size: 1.1rem;
}
.offering-card h4 {
    font-family: var(--font-title);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.offering-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
}

.consultation-terms {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-dark);
    padding-top: 1rem;
    font-family: var(--font-code);
    font-size: 0.75rem;
}

/* Console Styled Contact Form */
.services-contact .form-terminal {
    background-color: var(--bg-darker);
    border: 1px solid var(--border-dark);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 360px;
}
.terminal-line {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.term-prompt {
    font-family: var(--font-code);
    color: var(--logic-cyan);
    font-weight: 600;
    font-size: 0.8rem;
}
.term-label {
    font-family: var(--font-code);
    color: var(--text-muted);
    font-size: 0.8rem;
}
.term-inline-input {
    background: none;
    border: none;
    border-bottom: 1px dashed var(--text-dark);
    color: var(--text-primary);
    font-family: var(--font-code);
    font-size: 0.8rem;
    padding: 0.15rem 0.4rem;
    outline: none;
    flex: 1;
    min-width: 150px;
}
.term-inline-input:focus {
    border-bottom-color: var(--logic-cyan);
    color: var(--logic-cyan);
}
.term-select-input {
    background-color: var(--bg-base);
    border: 1px solid var(--text-dark);
    color: var(--text-primary);
    font-family: var(--font-code);
    font-size: 0.75rem;
    padding: 0.2rem 0.4rem;
    outline: none;
    border-radius: 2px;
}

.terminal-block {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.term-textarea {
    background-color: var(--bg-base);
    border: 1px solid var(--text-dark);
    color: var(--text-primary);
    font-family: var(--font-code);
    font-size: 0.75rem;
    padding: 0.6rem;
    height: 100px;
    outline: none;
    resize: none;
    border-radius: 2px;
    transition: var(--transition-fast);
}
.term-textarea:focus {
    border-color: var(--logic-cyan);
    box-shadow: 0 0 5px rgba(56, 189, 248, 0.2);
}

.form-console-out {
    border-top: 1px solid var(--text-dark);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-family: var(--font-code);
    font-size: 0.75rem;
    animation: tabFadeIn 0.3s ease-out;
}
.form-console-out.hidden {
    display: none;
}
.console-line {
    color: var(--text-muted);
}
.console-btn-link {
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}
.console-btn-link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   10. GAMING & TTRPG RSS WIDGET
   ========================================================================== */
.rss-widget-container {
    background-color: var(--bg-darker);
    border: 1px solid var(--border-dark);
    padding: 1.5rem;
    border-radius: 4px;
}
.rss-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.feed-source-selector {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.feed-source-selector label {
    font-family: var(--font-code);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}
.tech-select-small {
    background-color: var(--bg-base);
    border: 1px solid var(--text-dark);
    color: var(--text-primary);
    padding: 0.35rem 0.5rem;
    font-family: var(--font-code);
    font-size: 0.7rem;
    outline: none;
    border-radius: 2px;
    cursor: pointer;
}

.rss-status-tag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-code);
    font-size: 0.65rem;
    color: var(--text-muted);
}

.rss-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
    min-height: 200px;
    align-content: start;
}
@media (max-width: 480px) {
    .rss-grid {
        grid-template-columns: 1fr;
    }
}

/* RSS Article Cards */
.rss-card {
    background-color: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(71, 85, 105, 0.2);
    border-radius: 2px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: var(--transition-mid);
    position: relative;
    overflow: hidden;
}
.rss-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: var(--logic-cyan);
    opacity: 0.4;
    transition: var(--transition-fast);
}
.rss-card:hover {
    border-color: rgba(56, 189, 248, 0.4);
    background-color: rgba(56, 189, 248, 0.015);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.rss-card:hover::before {
    background-color: var(--logic-cyan);
    opacity: 1;
    height: 100%;
}
.rss-card.lore-card::before {
    background-color: var(--lore-gold);
}
.rss-card.lore-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    background-color: rgba(245, 158, 11, 0.015);
}

.rss-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-code);
    font-size: 0.65rem;
    color: var(--text-dark);
}
.rss-source {
    color: var(--logic-cyan);
}
.rss-card.lore-card .rss-source {
    color: var(--lore-gold);
}

.rss-card h3 {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 38px;
}
.rss-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 52px;
}
.rss-read-btn {
    align-self: flex-start;
    font-family: var(--font-code);
    font-size: 0.7rem;
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid var(--text-dark);
    padding: 0.35rem 0.65rem;
    transition: var(--transition-fast);
}
.rss-card:hover .rss-read-btn {
    border-color: var(--logic-cyan);
    color: var(--logic-cyan);
    box-shadow: 0 0 4px rgba(56, 189, 248, 0.2);
}
.rss-card.lore-card:hover .rss-read-btn {
    border-color: var(--lore-gold);
    color: var(--lore-gold);
    box-shadow: 0 0 4px rgba(245, 158, 11, 0.2);
}

/* Loading Spinnner */
.loading-spinner {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    gap: 1rem;
    font-family: var(--font-code);
    font-size: 0.75rem;
    color: var(--text-muted);
}
.spinner {
    width: 32px;
    height: 32px;
    border: 2px solid var(--text-dark);
    border-top-color: var(--logic-cyan);
    border-radius: 50%;
    animation: spinnerRotate 0.8s linear infinite;
}
@keyframes spinnerRotate {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   11. TECH FOOTER
   ========================================================================== */
.tech-footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-dark);
    padding: 3rem 2.5rem 1.5rem;
    margin-top: 4rem;
}
.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-col.branding .footer-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 380px;
    font-weight: 300;
}
.col-title {
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 1px;
    border-bottom: 1px solid var(--text-dark);
    padding-bottom: 0.4rem;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-family: var(--font-code);
    font-size: 0.75rem;
    color: var(--text-muted);
}
.footer-col ul a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}
.footer-col ul a:hover {
    color: var(--logic-cyan);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px dashed rgba(71, 85, 105, 0.2);
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-code);
    font-size: 0.65rem;
    color: var(--text-dark);
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ==========================================================================
   12. MEDIA RESPONSIVENESS OVERRIDES
   ========================================================================== */
@media (max-width: 820px) {
    .tech-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }
    .tech-nav .nav-list {
        gap: 1rem;
    }
    .system-status {
        border-left: none;
        border-top: 1px solid var(--text-dark);
        padding-left: 0;
        padding-top: 0.5rem;
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
    }
    .compass-layout {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

/* ==========================================================================
   13. FEATURED PROJECT & TIMELINE CHRONICLE
   ========================================================================== */
.featured-project-section {
    border-color: var(--border-gold);
    background-image: radial-gradient(circle at 10% 50%, rgba(245, 158, 11, 0.03) 0%, transparent 60%);
}
.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: var(--font-title);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
    border: 1px solid var(--border-gold);
    color: var(--lore-gold);
    background: rgba(245, 158, 11, 0.05);
}
.featured-grid {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: center;
}
@media (max-width: 600px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    .featured-logo-wrapper {
        margin: 0 auto;
    }
}
.featured-logo-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--border-gold);
    box-shadow: var(--glow-gold);
}
.featured-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.featured-title {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--text-primary);
}
.featured-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
}
.featured-actions {
    margin-top: 0.25rem;
}

/* Timeline Chronicle */
.timeline-filter-bar {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.tech-filter-btn {
    background: none;
    border: 1px solid var(--text-dark);
    color: var(--text-muted);
    font-family: var(--font-title);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    cursor: pointer;
    border-radius: 2px;
    transition: var(--transition-fast);
    letter-spacing: 0.5px;
}
.tech-filter-btn:hover {
    border-color: var(--logic-cyan);
    color: var(--logic-cyan);
}
.tech-filter-btn.active {
    background-color: var(--logic-cyan);
    border-color: var(--logic-cyan);
    color: var(--bg-darker);
    box-shadow: var(--glow-cyan);
}
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    min-height: 200px;
}
.timeline-card {
    background-color: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(71, 85, 105, 0.2);
    border-radius: 2px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: var(--transition-mid);
    position: relative;
    overflow: hidden;
}
.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: var(--text-dark);
    transition: var(--transition-fast);
}
.timeline-card.nexus-tag::before { background-color: var(--logic-cyan); }
.timeline-card.pivot-tag::before { background-color: var(--lore-gold); }
.timeline-card.varia-tag::before { background-color: var(--color-green); }

.timeline-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.01);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.timeline-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-code);
    font-size: 0.65rem;
}
.timeline-tag {
    font-weight: 600;
}
.timeline-card.nexus-tag .timeline-tag { color: var(--logic-cyan); }
.timeline-card.pivot-tag .timeline-tag { color: var(--lore-gold); }
.timeline-card.varia-tag .timeline-tag { color: var(--color-green); }
.timeline-date {
    color: var(--text-dark);
}

.timeline-card h3 {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}
.timeline-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 300;
}
.timeline-specs {
    border-top: 1px dashed rgba(71, 85, 105, 0.2);
    padding-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-family: var(--font-code);
    font-size: 0.65rem;
    color: var(--text-muted);
}
.timeline-specs span strong {
    color: var(--text-primary);
}
.timeline-card.hidden {
    display: none;
}

/* ==========================================================================
   14. BUY ME A COFFEE MODAL STYLES
   ========================================================================== */
.coffee-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.coffee-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.coffee-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 11, 19, 0.85);
    backdrop-filter: blur(4px);
}
.coffee-modal-container {
    position: relative;
    background-color: var(--bg-darker);
    border: 1px solid var(--border-gold);
    box-shadow: var(--glow-gold), 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 400px;
    padding: 2.5rem;
    z-index: 2010;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}
.coffee-modal.active .coffee-modal-container {
    transform: translateY(0);
}
.coffee-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}
.coffee-modal-close:hover {
    color: var(--lore-gold);
}
.coffee-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}
.coffee-modal-title {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--lore-gold);
    letter-spacing: 2px;
}
.coffee-modal-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.coffee-qr-wrapper {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.coffee-qr-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}
.coffee-modal-footer {
    font-family: var(--font-code);
    font-size: 0.65rem;
    color: var(--text-dark);
    letter-spacing: 1px;
}


