/* ==========================================================================
   MAHJONG138 Stylesheet - Futuristic Neon Dark UI theme
   Style: Morn Tech / Classic Cyberpunk Neon
   ========================================================================== */

:root {
    --bg-dark: #0a0c10;
    --bg-darker: #050608;
    --bg-card: #11141b;
    --bg-glass: rgba(11, 14, 21, 0.75);
    
    --neon-cyan: #00f0ff;
    --neon-cyan-glow: rgba(0, 240, 255, 0.35);
    --neon-cyan-dim: #009eb8;
    
    --neon-magenta: #ff0055;
    --neon-magenta-glow: rgba(255, 0, 85, 0.3);
    --neon-magenta-dim: #cc0044;
    
    --gold: #fccf14;
    --text-primary: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dim: #6b7280;
    
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.max-w-4xl { max-width: 900px; }
.w-full { width: 100%; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.text-center { text-align: center; }

/* Font Utilities */
.font-orbitron { font-family: 'Orbitron', 'Space Grotesk', sans-serif; }
.font-mono { font-family: 'JetBrains Mono', 'Fira Code', monospace; }
.font-bold { font-weight: 700; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-gray-400 { color: var(--text-muted); }
.text-gray-500 { color: var(--text-dim); }

/* Glowing typography & text colors */
.neon-cyan-text { color: var(--neon-cyan); }
.neon-magenta-text { color: var(--neon-magenta); }
.accent-link {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: var(--transition-fast);
}
.accent-link:hover {
    color: var(--neon-magenta);
    text-shadow: 0 0 5px var(--neon-magenta-glow);
}

.text-glow {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.15), 0 0 20px var(--neon-cyan-glow);
}
.text-glow-cyan {
    text-shadow: 0 0 15px var(--neon-cyan-glow);
}
.text-glow-magenta {
    text-shadow: 0 0 15px var(--neon-magenta-glow);
}

/* Background Cyber Elements */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(rgba(18, 22, 33, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 22, 33, 0.4) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
    pointer-events: none;
    z-index: -3;
}

.neon-glow-blob {
    position: fixed;
    width: 45vw;
    height: 45vw;
    border-radius: 50%;
    filter: blur(120px) opacity(0.18);
    pointer-events: none;
    z-index: -2;
    animation: blob-float 20s infinite ease-in-out alternate;
}
.blog-cyan {
    background-color: var(--neon-cyan);
    top: -10vw;
    left: -10vw;
}
.blog-magenta {
    background-color: var(--neon-magenta);
    bottom: -15vw;
    right: -10vw;
    animation-delay: -10s;
}

@keyframes blob-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5vw, 4vw) scale(1.1); }
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(18, 16, 16, 0) 50%, 
        rgba(0, 0, 0, 0.12) 50%
    ), linear-gradient(
        90deg,
        rgba(255, 0, 0, 0.03),
        rgba(0, 255, 0, 0.01),
        rgba(0, 0, 255, 0.03)
    );
    background-size: 100% 3px, 3px 100%;
    z-index: 1000;
    pointer-events: none;
    opacity: 0.7;
}

/* Header & Glass Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.header-glass {
    background-color: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}
.header-glass.scrolled {
    background-color: #050608f0;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6), 0 1px 15px rgba(0, 240, 255, 0.08);
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-fast);
}
header.scrolled .header-wrap {
    height: 64px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 6px var(--neon-cyan-glow));
    transition: var(--transition-smooth);
}
header.scrolled .logo-img {
    height: 34px;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-item {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}
.nav-item:hover, .nav-item.active {
    color: var(--text-primary);
}
.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan);
    transition: var(--transition-fast);
}
.nav-item:hover::after, .nav-item.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.system-status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 99px;
    padding: 0.35rem 0.75rem;
}
.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: status-pulse 1.5s infinite alternate;
}
@keyframes status-pulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; box-shadow: 0 0 12px #10b981, 0 0 18px #10b981; }
}
.status-text {
    font-size: 0.65rem;
    font-weight: bold;
    color: #10b981;
    letter-spacing: 0.5px;
}

/* Buttons Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--neon-magenta);
    color: white;
    border: 1px solid var(--neon-magenta);
    box-shadow: 0 4px 15px var(--neon-magenta-glow);
}
.btn-primary:hover {
    background-color: var(--neon-magenta-dim);
    box-shadow: 0 4px 22px var(--neon-magenta);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn-secondary:hover {
    border-color: var(--neon-cyan);
    background-color: rgba(0, 240, 255, 0.04);
    box-shadow: 0 0 15px var(--neon-cyan-glow);
    transform: translateY(-2px);
}

.btn-large {
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    border-radius: 8px;
}

.btn-neon-cyan {
    background: transparent;
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    box-shadow: inset 0 0 8px var(--neon-cyan-glow), 0 0 8px var(--neon-cyan-glow);
}
.btn-neon-cyan:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 25px var(--neon-cyan);
    transform: translateY(-3px);
}

.btn-neon-magenta {
    background: transparent;
    color: var(--neon-magenta);
    border: 1px solid var(--neon-magenta);
    box-shadow: inset 0 0 8px var(--neon-magenta-glow), 0 0 8px var(--neon-magenta-glow);
}
.btn-neon-magenta:hover {
    background: var(--neon-magenta);
    color: white;
    box-shadow: 0 0 25px var(--neon-magenta);
    transform: translateY(-3px);
}

.btn-glow-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    pointer-events: none;
}
.btn:hover .btn-glow-layer {
    transform: translate(-50%, -50%) scale(1.2);
}

.relative-inner-btn {
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* Mobile Toggle menu button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}
.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* Menu Mobile Navigation Open */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background-color: var(--bg-card);
    border-left: 1px solid rgba(0, 240, 255, 0.15);
    z-index: 1010;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
}
.mobile-drawer.open {
    transform: translateX(-100vw);
}
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}
.drawer-close {
    font-size: 2rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}
.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}
.drawer-item {
    font-family: 'Orbitron', sans-serif;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}
.drawer-item:hover {
    color: var(--neon-cyan);
    padding-left: 8px;
}

/* Hero Section */
.section-hero {
    padding-top: 154px;
    padding-bottom: 80px;
    position: relative;
}

.hero-grid-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.gold-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(rgba(252, 207, 20, 0.05), rgba(252, 207, 20, 0.01));
    border: 1px solid rgba(252, 207, 20, 0.22);
    padding: 0.4rem 1rem;
    border-radius: 99px;
    margin-bottom: 2rem;
}
.badge-dot-glow {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--gold);
    box-shadow: 0 0 8px var(--gold);
    animation: gold-pulse 1s infinite alternate;
}
@keyframes gold-pulse {
    0% { opacity: 0.4; }
    100% { opacity: 1; }
}
.badge-text {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.hero-h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 2.85rem;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}
.text-neon-title {
    font-size: 2.2rem;
    display: block;
    margin-top: 0.25rem;
}

.hero-lead-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}
.hero-lead-desc strong {
    color: var(--text-primary);
}

.hero-ctas-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.alternate-holder {
    font-size: 0.75rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 1.25rem;
}
.bullet-divider { color: rgba(255, 255, 255, 0.15); }

/* Hero Graphic / Cloudinary Banner Container */
.media-container-neon {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}
.neon-border-frame {
    position: relative;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    padding: 1px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 240, 255, 0.12);
    overflow: hidden;
}
.neon-border-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-25deg) translateX(-150%);
    animation: shine-loop 5s infinite;
}
@keyframes shine-loop {
    10% { transform: skewX(-25deg) translateX(150%); }
    100% { transform: skewX(-25deg) translateX(150%); }
}

.neon-showcase-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 11px;
    object-fit: cover;
}

.media-floating-stats {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background-color: var(--bg-card);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 15px var(--neon-cyan-glow);
    z-index: 10;
}
.stats-row {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 0.72rem;
    margin-bottom: 0.4rem;
}
.stats-row:last-child { margin-bottom: 0; }
.stats-row .label { color: var(--text-muted); }
.stats-row .val { font-weight: bold; }
.text-green-glow { color: #10b981; text-shadow: 0 0 5px rgba(16, 185, 129, 0.4); }
.text-cyan-glow { color: var(--neon-cyan); text-shadow: 0 0 5px var(--neon-cyan-glow); }

/* Brand Loop Strip */
.brand-strip {
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1.5rem 0;
    overflow: hidden;
}
.container-strip-scroller {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
}
.container-strip-scroller::-webkit-scrollbar { display: none; }

.strip-items {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    white-space: nowrap;
    animation: loop-marquee 30s linear infinite;
}

@keyframes loop-marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-33%); }
}

.strip-items span {
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--text-dim);
    letter-spacing: 1px;
}
.strip-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--neon-cyan);
    box-shadow: 0 0 5px var(--neon-cyan);
}

/* Base Sections Styling */
.section-features, .section-diagnostic, .section-article, .section-reviews, .section-faqs {
    padding: 90px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.section-header-center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem auto;
}

.section-h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}
.highlight-neon-cyan { color: var(--neon-cyan); }
.section-p-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Features Grid Layout */
.features-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 2.25rem 1.75rem;
    position: relative;
    transition: var(--transition-bounce);
    overflow: hidden;
}
.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 240, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 20px rgba(0, 240, 255, 0.03);
}

.card-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.05);
}
.icon-cyan {
    background-color: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 5px var(--neon-cyan-glow));
}
.icon-magenta {
    background-color: rgba(255, 0, 85, 0.05);
    border: 1px solid rgba(255, 0, 85, 0.2);
    color: var(--neon-magenta);
    filter: drop-shadow(0 0 5px var(--neon-magenta-glow));
}

.feature-title {
    font-weight: bold;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}
.feature-text {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.feature-glow-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    transition: var(--transition-smooth);
}
.feature-card:hover .feature-glow-bar {
    width: 100%;
}
.bar-cyan { background-color: var(--neon-cyan); box-shadow: 0 0 8px var(--neon-cyan); }
.bar-magenta { background-color: var(--neon-magenta); box-shadow: 0 0 8px var(--neon-magenta); }

/* Diagnostic Scanner Section */
.diagnostic-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    background-color: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}
.diagnostic-content {
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cyber-subtitle {
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    margin-bottom: 0.75rem;
    display: block;
}
.diagnostic-h2 {
    font-weight: 900;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.diagnostic-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 2rem;
}
.diagnostic-ctas {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}
.diagnostic-hint {
    color: var(--text-dim);
}

.diagnostic-visualizer {
    background-color: #030406;
    border-left: 1px solid rgba(255,255,255,0.04);
    display: flex;
    flex-direction: column;
}
.terminal-bar {
    background-color: #0d1017;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.terminal-circle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
    display: inline-block;
}
.terminal-body {
    padding: 1.5rem 1.75rem;
    font-family: 'JetBrains Mono', monospace;
    flex-grow: 1;
    overflow-y: auto;
    font-size: 0.75rem;
    line-height: 1.5;
    max-height: 280px;
}
.terminal-line {
    margin-bottom: 0.6rem;
    white-space: pre-wrap;
    word-break: break-all;
}

/* Article Grid Section */
.article-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3.5rem;
}
.article-aside {
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
}
.aside-sticky-panel {
    position: sticky;
    top: 112px;
    padding-right: 1.5rem;
}
.aside-title {
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
.aside-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.aside-link {
    display: block;
    color: var(--text-muted);
    font-size: 0.82rem;
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    transition: var(--transition-fast);
}
.aside-link:hover, .aside-link.active {
    color: var(--neon-cyan);
    background-color: rgba(0, 240, 255, 0.04);
}
.aside-link.active {
    font-weight: bold;
    box-shadow: inset 2px 0 0 var(--neon-cyan);
}

/* Article Body typography */
.article-body {
    max-width: 760px;
}
.main-article-h1 {
    font-size: 1.85rem;
    line-height: 1.3;
    font-weight: 900;
    margin-bottom: 1rem;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.article-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}
.article-body p strong {
    color: var(--text-primary);
}

.article-h2 {
    font-size: 1.35rem;
    font-weight: bold;
    margin: 2.5rem 0 1rem 0;
    color: var(--text-primary);
}

.article-bullet-list {
    list-style: none;
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
}
.article-bullet-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.article-bullet-list li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--neon-cyan);
    font-size: 0.8rem;
}

.code-wrap-display {
    background-color: #030406;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 6px;
    padding: 1.25rem;
    margin: 1.5rem 0;
    overflow-x: auto;
    color: var(--neon-cyan);
    font-family: 'JetBrains Mono', monospace;
    white-space: pre;
}

/* Reviews Panel */
.review-stats-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    background-color: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}
.stat-box {
    border-right: 1px solid rgba(255,255,255,0.04);
}
.stat-box:last-child { border-right: none; }
.stat-num {
    font-size: 2rem;
    font-weight: 900;
}
.stat-label {
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: var(--text-dim);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.review-card {
    background-color: #12151d60;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 2rem;
    transition: var(--transition-fast);
}
.review-card:hover {
    border-color: rgba(255, 0, 85, 0.15);
    background-color: #12151d90;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan-dim), var(--neon-magenta-dim));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.user-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.user-name {
    font-weight: bold;
    font-size: 0.88rem;
    color: var(--text-primary);
}
.user-loc {
    font-size: 0.7rem;
}
.review-stars-wrap {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.review-text {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.add-review-panel {
    background-color: var(--bg-card);
    border: 1px solid rgba(0, 240, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    border-radius: 12px;
    padding: 2.5rem;
}
.panel-h3 {
    font-size: 1.35rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.review-form-element {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.grid-1-3 {
    grid-template-columns: 0.8fr 2.2fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-label {
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}
.form-input {
    background-color: var(--bg-darker);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 0.8rem 1rem;
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}
.form-input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan-glow);
}
.form-input::placeholder { color: var(--text-dim); }

.form-btn-holder {
    text-align: right;
    margin-top: 0.5rem;
}

/* Accordion FAQs Styling */
.accordion-layout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-fast);
}
.accordion-card.active {
    border-color: var(--neon-cyan-glow);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}
.accordion-header:hover {
    color: var(--neon-cyan);
}
.accordion-icon {
    font-size: 1.25rem;
    color: var(--neon-cyan);
    font-family: inherit;
    transition: transform var(--transition-fast);
}
.accordion-card.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--neon-magenta);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}
.accordion-content p {
    padding: 0 1.75rem 1.75rem 1.75rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Footer Section */
.cyber-footer {
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 0.75fr);
    gap: 4rem;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 440px;
}

.glow-divider-cyan {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, var(--neon-cyan), transparent);
}

.footer-links-row {
    font-size: 0.68rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.15);
}

.footer-h4 {
    font-weight: bold;
    font-size: 0.9rem;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.82rem;
    transition: var(--transition-fast);
}
.footer-nav a:hover {
    color: var(--neon-cyan);
    padding-left: 4px;
}

.footer-bottom {
    background-color: #030405;
    padding: 1.5rem 0;
}
.bottom-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-dim);
}

/* AI Studio Developer Utilities Floating trigger & modal panel */
.dev-trigger {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: var(--bg-card);
    border: 1px solid var(--neon-cyan);
    border-radius: 99px;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    z-index: 990;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: bold;
    color: var(--neon-cyan);
    box-shadow: 0 10px 25px rgba(0,0,0,0.6), 0 0 15px var(--neon-cyan-glow);
    transition: var(--transition-smooth);
}
.dev-trigger:hover {
    color: white;
    background-color: var(--neon-cyan);
    box-shadow: 0 0 25px var(--neon-cyan);
    transform: translateY(-3px) scale(1.03);
}

.dev-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.83);
    backdrop-filter: blur(8px);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}
.dev-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.dev-modal-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 25px var(--neon-cyan-glow);
    border-radius: 12px;
    width: 680px;
    max-width: 90vw;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform var(--transition-bounce);
}
.dev-modal-overlay.open .dev-modal-card {
    transform: translateY(0);
}

.dev-modal-header {
    background-color: #0d1017;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dev-modal-header .header-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.dot-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 10px #10b981;
}
.dev-modal-title {
    font-size: 0.95rem;
    font-weight: bold;
    color: var(--text-primary);
}
.dev-close-btn {
    font-size: 1.75rem;
    color: var(--text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
}
.dev-close-btn:hover { color: var(--neon-magenta); }

.dev-modal-body {
    padding: 2rem 1.75rem;
}
.dev-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.body-sub-h4 {
    font-size: 0.72rem;
    color: var(--neon-cyan);
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.dev-files-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    max-height: 180px;
    overflow-y: auto;
}
.file-row {
    display: flex;
    align-items: center;
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.02);
}
.file-row:last-child { border-bottom: none; }
.f-type {
    background-color: rgba(255,255,255,0.03);
    border-radius: 3px;
    padding: 0.1rem 0.35rem;
    font-size: 0.6rem;
    font-weight: bold;
    width: 44px;
    text-align: center;
}
.f-name {
    font-weight: bold;
    color: var(--text-primary);
    width: 140px;
    margin-left: 0.75rem;
}
.f-desc {
    flex-grow: 1;
    color: var(--text-dim);
}
.f-status {
    border-radius: 4px;
    padding: 0.15rem 0.45rem;
    font-size: 0.6rem;
    font-weight: bold;
}

.dev-action-area {
    background: linear-gradient(rgba(255,0,85,0.01), rgba(0,240,255,0.01));
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 1.5rem;
}

/* Scroll Animation classes */
.has-scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.has-scroll-animate.scrolled-into-view {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive breakdowns */
@media (max-width: 1024px) {
    .hero-grid-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    .hero-content-area {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-ctas-container {
        justify-content: center;
    }
    .alternate-holder {
        justify-content: center;
    }
    .media-container-neon {
        max-width: 420px;
    }
    .article-layout {
        grid-template-columns: 1fr;
    }
    .article-aside {
        display: none; /* Hide aside on tablet */
    }
}

@media (max-width: 768px) {
    .header-logo .logo-text {
        font-size: 1.25rem;
    }
    .nav-links {
        display: none; /* Mobile menu drawer takes over */
    }
    .system-status-indicator {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .hero-h1 {
        font-size: 2.25rem;
    }
    .text-neon-title {
        font-size: 1.85rem;
    }
    .diagnostic-wrapper {
        grid-template-columns: 1fr;
    }
    .diagnostic-content {
        padding: 2.5rem 1.5rem;
    }
    .review-stats-board {
        grid-template-columns: 1fr;
    }
    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
    .stat-box:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .form-row-grid, .grid-1-3 {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .add-review-panel {
        padding: 1.75rem 1.25rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .bottom-wrap {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}
