/* Comparison Page Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;900&display=swap');

:root {
    --bg: #121221;
    --bg-panel: #1a1a2e;
    --accent: #FFCD30;
    --accent-glow: rgba(255, 205, 48, 0.3);
    --glass: rgba(26, 26, 46, 0.4);
    --glass-border: rgba(255, 255, 255, 0.05);
    --text: #e0e0e0;
    --text-dim: rgba(224, 224, 224, 0.5);
    --success: #00ff88;
    --success-glow: rgba(0, 255, 136, 0.2);
    --error: #ff4a4a;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

.glow-bg {
    display: none;
}

h1, h2, h3, h4, h5 {
    text-wrap: balance;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Navigation */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-section img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 2px;
    color: #fff;
}

.nav-cta-mini {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid var(--accent);
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
}

.nav-cta-mini:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-2px);
}

/* Category Tag */
.category-tag-link {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.category-tag {
    background: rgba(255, 205, 48, 0.1);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 205, 48, 0.3);
    transition: all 0.3s ease;
}

.category-tag-link:hover .category-tag {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Hero Section Split Layout */
.article-header-split {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    margin-top: 20px;
}

.article-header-content {
    flex: 1;
    min-width: 300px;
}

.article-header-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.v2-title {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.gold-gradient {
    background: linear-gradient(135deg, #ffcd30 0%, #ff9900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.v2-lead-text {
    font-size: 18px;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.article-header-content .v2-lead-text {
    margin: 0;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    font-size: 13px;
    color: var(--text-dim);
}

.article-header-content .article-meta {
    justify-content: flex-start;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

/* Hero Dual-Layer 3D Comparison Stage Visual */
.hero-compare-stage {
    width: 100%;
    max-width: 440px;
    height: 340px;
    position: relative;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Layer 1: Retro Terminal Card (Brain Workshop 2008) */
.hero-card-retro {
    position: absolute;
    width: 270px;
    height: 200px;
    top: 20px;
    left: 10px;
    background: #080d08;
    border: 1px solid rgba(51, 255, 51, 0.3);
    border-radius: 16px;
    padding: 16px;
    font-family: 'Courier New', monospace;
    color: #33ff33;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(51, 255, 51, 0.1);
    transform: rotateY(-12deg) rotateX(8deg) translateZ(-40px);
    transition: all 0.5s ease;
    z-index: 1;
}

.hero-card-retro:hover {
    transform: rotateY(-5deg) rotateX(4deg) translateZ(-10px);
    border-color: rgba(51, 255, 51, 0.6);
}

.retro-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(51, 255, 51, 0.2);
    padding-bottom: 8px;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: bold;
}

.retro-dots {
    display: flex;
    gap: 4px;
}

.retro-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(51, 255, 51, 0.3);
}

.retro-grid-mini {
    display: grid;
    grid-template-columns: repeat(3, 22px);
    gap: 4px;
    margin: 10px auto;
    justify-content: center;
}

.retro-cell {
    width: 22px;
    height: 22px;
    border: 1px solid rgba(51, 255, 51, 0.3);
    border-radius: 3px;
}

.retro-cell.active {
    background: #33ff33;
    box-shadow: 0 0 8px #33ff33;
}

.retro-status-line {
    font-size: 10px;
    text-align: center;
    opacity: 0.8;
    margin-top: 8px;
}

/* Central VS Badge */
.hero-vs-badge {
    position: absolute;
    z-index: 4;
    bottom: 50px;
    left: 36%;
    transform: translate(-50%, 0);
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #ffcd30 0%, #ff9900 100%);
    color: #000;
    font-weight: 900;
    font-size: 13px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 205, 48, 0.7), 0 0 35px rgba(255, 205, 48, 0.4);
    border: 2px solid #fff;
    animation: vsPulse 3s ease-in-out infinite;
}

@keyframes vsPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 205, 48, 0.7); }
    50% { transform: scale(1.12); box-shadow: 0 0 35px rgba(255, 205, 48, 0.95); }
}

/* Layer 2: Modern Web App Card (Dual N-Back 2026) */
.hero-card-modern {
    position: absolute;
    width: 280px;
    height: 210px;
    bottom: 15px;
    right: 10px;
    background: rgba(26, 26, 46, 0.85);
    border: 1px solid rgba(255, 205, 48, 0.3);
    border-radius: 20px;
    padding: 18px;
    backdrop-filter: blur(16px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 205, 48, 0.15);
    transform: rotateY(8deg) rotateX(-5deg) translateZ(30px);
    transition: all 0.5s ease;
    z-index: 2;
    animation: floatModern 5s ease-in-out infinite;
}

@keyframes floatModern {
    0%, 100% { transform: rotateY(8deg) rotateX(-5deg) translateZ(30px) translateY(0); }
    50% { transform: rotateY(8deg) rotateX(-5deg) translateZ(30px) translateY(-10px); }
}

.hero-card-modern:hover {
    transform: rotateY(0deg) rotateX(0deg) translateZ(50px);
    border-color: rgba(255, 205, 48, 0.6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 205, 48, 0.3);
}

.modern-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.modern-badge {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    background: rgba(255, 205, 48, 0.12);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 205, 48, 0.25);
    text-transform: uppercase;
}

.modern-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 10px var(--success);
    animation: liveBlink 1.5s infinite;
}

@keyframes liveBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.modern-grid-preview {
    display: grid;
    grid-template-columns: repeat(3, 26px);
    gap: 5px;
    margin: 10px auto;
    justify-content: center;
}

.m-cell {
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.m-cell.active {
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent), 0 0 25px rgba(255, 205, 48, 0.6);
    border-color: #fff;
}

.modern-audio-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
}

.modern-waves {
    display: flex;
    gap: 3px;
    align-items: center;
}

.modern-waves span {
    width: 3px;
    height: 12px;
    background: var(--accent);
    border-radius: 2px;
    animation: soundBarPulse 1.2s ease-in-out infinite alternate;
}

.modern-waves span:nth-child(2) { animation-delay: 0.2s; height: 18px; }
.modern-waves span:nth-child(3) { animation-delay: 0.4s; height: 24px; }
.modern-waves span:nth-child(4) { animation-delay: 0.1s; height: 16px; }

@keyframes soundBarPulse {
    0% { transform: scaleY(0.3); opacity: 0.5; }
    100% { transform: scaleY(1.2); opacity: 1; }
}

/* Sections */
.article-section {
    margin-bottom: 60px;
}

.section-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 45px;
    border-radius: 30px;
    backdrop-filter: blur(20px);
}

.section-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-card p {
    color: var(--text-dim);
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.7;
}

.section-card p strong {
    color: #fff;
}

/* Split Reviews Grid */
.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 35px;
}

.review-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    padding: 35px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 205, 48, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.review-card.us-card:hover {
    border-color: rgba(0, 255, 136, 0.15);
}

.card-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.card-badge.competitor {
    background: rgba(255, 74, 74, 0.08);
    color: var(--error);
    border: 1px solid rgba(255, 74, 74, 0.15);
}

.card-badge.us {
    background: rgba(0, 255, 136, 0.08);
    color: var(--success);
    border: 1px solid rgba(0, 255, 136, 0.15);
}

.review-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.review-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.points-list {
    list-style: none;
    margin-top: 15px;
}

.points-list li {
    font-size: 13.5px;
    color: var(--text-dim);
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
}

.points-list li strong {
    color: #fff;
}

.points-list.pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.points-list.cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--error);
    font-weight: bold;
}

/* Full Width Mockups — Stretching Edge to Edge inside Review Cards */
.bw-mockup-real {
    margin-top: 25px;
    width: 100%;
    height: 290px;
    box-sizing: border-box;
}

.bw-window-frame {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border: 1px solid #707070;
    border-radius: 8px 8px 4px 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    font-family: Arial, sans-serif;
    color: #000;
}

.bw-win-titlebar {
    background: linear-gradient(180deg, #e3eef9 0%, #b8d4f0 40%, #9bc1e8 50%, #b5d5f5 100%);
    padding: 6px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #7f9db9;
}

.bw-win-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: bold;
    color: #1a3c60;
}

.bw-win-icon {
    width: 14px;
    height: 14px;
}

.bw-win-controls {
    display: flex;
    gap: 3px;
}

.bw-win-btn {
    width: 18px;
    height: 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #8e9da7;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #333;
}

.bw-win-btn.close {
    background: #e81123;
    color: #fff;
    border-color: #b00;
}

.bw-win-body {
    position: relative;
    height: calc(100% - 29px);
    background: #ffffff;
    padding: 14px 18px;
    box-sizing: border-box;
}

.bw-top-left-text {
    position: absolute;
    top: 12px;
    left: 18px;
    font-size: 10px;
    line-height: 1.4;
    color: #222;
}

.bw-top-right-text {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 11px;
    font-weight: bold;
    color: #000;
}

.bw-center-title {
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: #000;
    margin-top: 22px;
}

.bw-grid-container {
    width: 135px;
    height: 135px;
    margin: 12px auto 0;
    position: relative;
}

.bw-grid-line {
    position: absolute;
    background: #a0a0a0;
}

.bw-grid-line.h1 { top: 33.3%; left: 0; right: 0; height: 1px; }
.bw-grid-line.h2 { top: 66.6%; left: 0; right: 0; height: 1px; }
.bw-grid-line.v1 { left: 33.3%; top: 0; bottom: 0; width: 1px; }
.bw-grid-line.v2 { left: 66.6%; top: 0; bottom: 0; width: 1px; }

.bw-grid-plus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #bbb;
    font-size: 14px;
}

.bw-active-blue-cube {
    position: absolute;
    top: 4px;
    left: 95px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #4d8df5 0%, #1e60d5 60%, #0d3da8 100%);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(30, 96, 213, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.6);
    border: 1px solid #1c56b8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bw-bottom-bar {
    position: absolute;
    bottom: 12px;
    left: 18px;
    right: 18px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: bold;
    color: #000;
}

/* Dual N Back App Exact Web UI Mockup (1-in-1 copy of trainer/index.html) */
.our-mockup-real {
    background: #0d0e1a;
    border: 1px solid rgba(255, 205, 48, 0.2);
    border-radius: 20px;
    margin-top: 25px;
    height: 290px;
    width: 100%;
    box-sizing: border-box;
    padding: 16px 20px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(255, 205, 48, 0.03);
}

.training-layout-preview {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.training-layout-preview .training-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.training-layout-preview .training-progress-plate {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
}

.training-layout-preview .label-dim {
    color: var(--text-dim);
    font-size: 11px;
    letter-spacing: 1px;
}

.training-layout-preview .value-bright {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin-left: 6px;
}

.training-layout-preview .level-box {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.training-layout-preview .info-title {
    font-size: 9px;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    text-transform: uppercase;
}

.training-layout-preview .game-area-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
    margin: 4px 0;
}

.training-layout-preview .side-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.training-layout-preview .side-info.right-aligned {
    text-align: right;
    align-items: flex-end;
    flex: 1;
    min-width: 0;
}

.training-layout-preview .side-info.right-aligned .value-bright {
    font-size: 9.5px !important;
    line-height: 1.25;
    margin-left: 0;
    margin-top: 2px;
}

.training-layout-preview .hotkey-row {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
}

.training-layout-preview .hotkey-row .label-dim {
    font-size: 9px;
    letter-spacing: 0;
    white-space: nowrap;
}

.training-layout-preview .key-cap {
    background: #ffcd30;
    color: #000;
    font-weight: 900;
    font-size: 8px;
    padding: 2px 5px;
    border-radius: 3px;
    box-shadow: 0 2px 0 rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.training-layout-preview .nback-grid-wrap {
    position: relative;
    width: 130px;
    height: 130px;
    aspect-ratio: 1 / 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 205, 48, 0.2);
    border-radius: 16px;
    padding: 7px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.training-layout-preview .grid-3x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 6px;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
}

.training-layout-preview .grid-cell {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.training-layout-preview .grid-cell.active-gold {
    background: #ffcd30;
    border-color: #ffcd30;
    box-shadow: 0 0 20px rgba(255, 205, 48, 0.7);
}

.training-layout-preview .center-cross {
    font-size: 22px;
    color: #ffcd30;
    opacity: 0.5;
}

.training-layout-preview .training-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
}

.training-layout-preview .controls-group {
    display: flex;
    gap: 35px;
}

.training-layout-preview .control-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.training-layout-preview .control-text {
    display: flex;
    flex-direction: column;
}

.training-layout-preview .mouse-btn-label {
    font-size: 8px;
    font-weight: 700;
    color: #fff;
}

.training-layout-preview .mouse-action-label {
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.training-layout-preview .mouse-icon {
    width: 16px;
    height: 24px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    position: relative;
}

.training-layout-preview .mouse-icon::after {
    content: '';
    position: absolute;
    top: 3px;
    width: 50%;
    height: 8px;
    background: #ffcd30;
    opacity: 1;
    box-shadow: 0 0 5px #ffcd30;
}

.training-layout-preview .mouse-icon.left-active::after { left: 0; border-top-left-radius: 5px; }
.training-layout-preview .mouse-icon.right-active::after { right: 0; border-top-right-radius: 5px; }

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 35px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 800px;
    font-size: 13.5px;
}

.comp-table th, .comp-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--glass-border);
}

.comp-table th {
    background: rgba(26, 26, 46, 0.6);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 11px;
}

.comp-table tr:last-child td {
    border-bottom: none;
}

.comp-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.025);
}

.comp-table tr.highlighted-row {
    background: rgba(0, 255, 136, 0.03);
}

.comp-table tr.highlighted-row td {
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.comp-table tr.highlighted-row td:first-child {
    border-left: 2px solid var(--success);
}

.comp-table tbody tr {
    transition: background 0.2s ease;
}

.comp-table tbody tr:hover {
    background: rgba(255, 205, 48, 0.05);
}

.comp-table td strong {
    color: #fff;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.indicator.yes {
    color: var(--success);
}

.indicator.no {
    color: var(--error);
}

.indicator.mod {
    color: var(--accent);
}

.indicator svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.badge-verdict {
    display: inline-block;
    font-size: 10px;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-verdict.best {
    background: rgba(0, 255, 136, 0.12);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.1);
}

.badge-verdict.limit {
    background: rgba(255, 205, 48, 0.12);
    color: #ffcd30;
    border: 1px solid rgba(255, 205, 48, 0.3);
    box-shadow: 0 0 10px rgba(255, 205, 48, 0.1);
}

.badge-verdict.neutral {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Callout cards for key takeaways */
.friction-callout-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 205, 48, 0.03);
    border: 1px solid rgba(255, 205, 48, 0.1);
    padding: 30px;
    border-radius: 20px;
    margin-top: 35px;
}

.friction-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 205, 48, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.friction-icon-box svg {
    width: 28px;
    height: 28px;
}

.friction-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.friction-content p {
    font-size: 14px;
    color: var(--text-dim);
    margin: 0;
}

/* Simulator Preview */
.simulator-box {
    background: rgba(26, 26, 46, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    margin-top: 35px;
}

.simulator-stage {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.sim-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 180px;
    height: 180px;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.sim-cell {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.sim-cell.flash {
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.sim-info {
    flex-grow: 1;
    max-width: 380px;
}

.sim-info h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.sim-info p {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 15px;
    line-height: 1.5;
}

.audio-mock {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--accent);
    font-weight: 700;
}

.audio-mock svg {
    width: 18px;
    height: 18px;
    animation: pulseWaves 1.5s infinite;
}

@keyframes pulseWaves {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 0.7; }
}

/* Call to Action (CTA) Section */
.cta-section {
    text-align: center;
    padding: 70px 0;
    margin-top: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #ffcd30 0%, #ff9900 100%);
    color: #000;
    text-decoration: none;
    font-weight: 900;
    font-size: 15px;
    padding: 16px 36px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 5px 15px var(--accent-glow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 205, 48, 0.5);
}

.btn-secondary {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 36px;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: transparent;
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* Footer Style */
.footer-v2 {
    border-top: 1px solid var(--glass-border);
    padding: 40px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.f-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.f-logo-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.f-logo-text {
    font-size: 13px;
    letter-spacing: 1px;
    color: #fff;
}

.f-copy {
    font-size: 12px;
    color: var(--text-dim);
}

/* Mobile Media Queries */
@media (max-width: 993px) {
    .article-header-split {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
        margin-bottom: 40px;
        text-align: center;
    }
    .article-header-content {
        display: contents;
    }
    .category-tag-link {
        order: 1;
    }
    .v2-title {
        order: 2;
        text-align: center;
        margin-bottom: 15px;
    }
    .v2-lead-text {
        order: 3;
        text-align: center;
        margin-bottom: 25px;
    }
    .article-header-visual {
        order: 4;
        width: 100%;
        margin-bottom: 10px;
        display: flex;
        justify-content: center;
    }
    .article-header-content .article-meta,
    .article-meta {
        order: 5;
        justify-content: center;
        margin-top: 10px;
        width: 100%;
        display: flex;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .top-nav {
        padding: 25px 0;
    }
    
    .section-card {
        padding: 25px;
        border-radius: 20px;
    }
    
    .review-card {
        padding: 25px;
        border-radius: 20px;
    }
    
    .friction-callout-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons a {
        width: 100%;
        text-align: center;
    }
    
    .simulator-stage {
        flex-direction: column;
        gap: 20px;
    }
    
    .sim-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Footer Responsive Updates */
@media (max-width: 1310px) and (min-width: 771px) {
    .footer-grid {
        display: grid !important;
        grid-template-columns: 250px 1fr 1fr 1fr !important;
        gap: 40px !important;
    }
    .footer-brand-col { grid-column: 1 / 2; grid-row: 1 / 3; }
    
    /* 2 пункта сверху (Колонки 2 и 3 в сетке) */
    .footer-links-col:nth-child(2) { grid-column: 2 / 3; grid-row: 1; }
    .footer-links-col:nth-child(3) { grid-column: 3 / 4; grid-row: 1; }
    
    /* 3 пункта снизу (Колонки 2, 3 и 4 в сетке) */
    .footer-links-col:nth-child(4) { grid-column: 2 / 3; grid-row: 2; }
    .footer-links-col:nth-child(5) { grid-column: 3 / 4; grid-row: 2; }
    .footer-links-col:nth-child(6) { grid-column: 4 / 5; grid-row: 2; }
}

@media (max-width: 770px) {
    .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0 !important; /* Убираем gap родителя, используем margin для контроля */
    }
    .footer-brand-col {
        display: contents !important;
    }
    .footer-links-col,
    .footer-brand-col > * {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 !important;
    }
    
    /* 1. Название (Логотип) */
    .footer-brand-col > a:first-child { order: 1; margin-bottom: 15px !important; }
    
    /* 2. Почта */
    .f-contact-row { order: 2; margin-bottom: 40px !important; flex-direction: row !important; gap: 10px !important; }
    
    /* 3. Списки категорий (Пункты меню) */
    .footer-links-col { order: 3; margin-bottom: 30px !important; }
    .footer-links-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-links-col ul { align-items: center !important; }
    
    /* 4. Дата реализации (Копирайт) */
    .f-copy { order: 4; margin-bottom: 20px !important; margin-top: 10px !important; }
    
    /* 5. Соцсети */
    .f-socials { order: 5; margin-bottom: 20px !important; flex-direction: row !important; gap: 20px !important; }
    
    /* 6. Переключение языка */
    .f-lang-selector { order: 6; }
}

/* Tooltip for coming-soon links */
span.coming-soon-link {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    cursor: not-allowed !important;
}

span.coming-soon-link:hover {
    color: #00e5ff;
}

span.coming-soon-link::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(30, 30, 30, 0.9);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: normal;
    font-family: inherit;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    pointer-events: none;
    z-index: 100;
    margin-bottom: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

/* Tooltip Arrow */
span.coming-soon-link::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(30, 30, 30, 0.9) transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    pointer-events: none;
    z-index: 100;
    margin-bottom: -2px;
}

span.coming-soon-link:hover::after,
span.coming-soon-link:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Tooltip fixes */
.footer-links-col ul li span.coming-soon-link {
    font-size: 13px;
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}
.footer-links-col ul li span.coming-soon-link:hover {
    color: var(--accent);
}

.footer-title-link.coming-soon-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-title-link.coming-soon-link:hover {
    color: var(--accent) !important;
}

@media (max-width: 600px) {
    .our-app-body {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 15px;
    }
    .our-left-col {
        align-items: center;
    }
    .our-right-col {
        align-items: center;
    }
}

.bw-grid-2col {
    display: grid !important;
    grid-template-columns: calc(50% - 8px) calc(50% - 8px) !important;
    gap: 16px !important;
}
@media (max-width: 768px) {
    .bw-grid-2col {
        grid-template-columns: 1fr !important;
    }
}

.science-link-btn:hover {
    background: var(--accent) !important;
    color: #000 !important;
    box-shadow: 0 0 20px rgba(255, 205, 48, 0.4);
    transform: translateY(-2px);
}

/* FAQ Accordion Styles */
.faq-item {
    transition: background 0.3s ease, border-color 0.3s ease;
}

.faq-item.active {
    background: rgba(255, 205, 48, 0.03) !important;
    border-color: rgba(255, 205, 48, 0.25) !important;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Choice Grid Responsive Styling */
.bw-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    align-items: stretch;
}

@media (max-width: 800px) {
    .bw-choice-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* Custom Scrollbar for Comparison Table */
.comparison-table-wrapper::-webkit-scrollbar {
    height: 6px;
}
.comparison-table-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}
.comparison-table-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 205, 48, 0.25);
    border-radius: 10px;
}
.comparison-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 205, 48, 0.45);
}

/* Comprehensive Responsive Breakpoints */
@media (max-width: 992px) {
    .review-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 576px) {
    .hero-compare-stage {
        max-width: 320px;
        height: 250px;
    }
    .hero-card-retro {
        width: 200px;
        height: 150px;
        padding: 10px;
        top: 10px;
        left: 5px;
        font-size: 10px;
    }
    .retro-grid-mini {
        grid-template-columns: repeat(3, 16px);
        gap: 3px;
        margin: 6px auto;
    }
    .retro-cell {
        width: 16px;
        height: 16px;
    }
    .retro-status-line {
        font-size: 9px;
    }
    .hero-vs-badge {
        width: 34px;
        height: 34px;
        font-size: 11px;
        bottom: 35px;
        left: 45%;
    }
    .hero-card-modern {
        width: 210px;
        height: 155px;
        padding: 12px;
        bottom: 10px;
        right: 5px;
    }
    .modern-grid-preview {
        grid-template-columns: repeat(3, 18px);
        gap: 4px;
        margin: 6px auto;
    }
    .m-cell {
        width: 18px;
        height: 18px;
        border-radius: 4px;
    }
    .modern-badge {
        font-size: 8px;
        padding: 2px 6px;
    }
    .modern-audio-bar {
        font-size: 9.5px;
        margin-top: 6px;
    }

    .bw-mockup-real, .our-mockup-real {
        height: auto;
        min-height: 250px;
        padding: 12px 14px;
    }
    .bw-win-body {
        padding: 8px 10px !important;
    }
    .bw-top-left-text {
        font-size: 7.5px !important;
        line-height: 1.25 !important;
        top: 6px !important;
        left: 10px !important;
    }
    .bw-top-right-text {
        font-size: 8.5px !important;
        top: 6px !important;
        right: 10px !important;
    }
    .bw-center-title {
        font-size: 13px !important;
        margin-top: 36px !important;
        font-weight: bold;
    }
    .bw-grid-container {
        width: 105px !important;
        height: 105px !important;
        margin: 8px auto 0 !important;
    }
    .bw-active-blue-cube {
        width: 28px !important;
        height: 28px !important;
        left: 73px !important;
        top: 3px !important;
    }
    .bw-bottom-bar {
        font-size: 9.5px !important;
        bottom: 8px !important;
        left: 10px !important;
        right: 10px !important;
    }

    .training-layout-preview .game-area-wrapper {
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        gap: 0 !important;
        margin: 10px 0 !important;
    }
    .training-layout-preview .side-info {
        display: none !important;
    }
    .training-layout-preview .nback-grid-wrap {
        margin: 0 auto !important;
        width: 120px !important;
        height: 120px !important;
        flex-shrink: 0 !important;
    }
    .training-layout-preview .training-top {
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .faq-question {
        padding: 16px 18px !important;
        font-size: 15px !important;
    }
    .faq-answer {
        padding: 0 18px !important;
        font-size: 14px !important;
    }
    .bw-info-hero-box {
        padding: 24px 18px !important;
        border-radius: 20px !important;
    }
    .bw-info-hero-box h2 {
        font-size: 22px !important;
    }
    .bw-info-hero-box p {
        font-size: 14.5px !important;
        margin-bottom: 24px !important;
    }
    .section-card {
        padding: 22px 16px !important;
        border-radius: 20px !important;
    }
    .section-card h3 {
        font-size: 20px !important;
    }
    .v2-title {
        font-size: 28px !important;
    }
    .v2-lead-text {
        font-size: 15px !important;
    }
}

@media (max-width: 375px) {
    .hero-compare-stage {
        max-width: 280px;
        height: 230px;
    }
    .hero-card-retro {
        width: 180px;
        height: 140px;
    }
    .hero-card-modern {
        width: 185px;
        height: 145px;
    }
    .bw-center-title {
        margin-top: 38px !important;
        font-size: 12px !important;
    }
}

/* Soft Language Suggestion Banner */
.lang-suggestion-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 100px);
    background: rgba(18, 19, 26, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    z-index: 9999;
    width: 90%;
    max-width: 650px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    pointer-events: none;
}

.lang-suggestion-banner.show {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}

.lang-suggestion-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.globe-icon-banner {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    animation: pulse-globe 2s infinite ease-in-out;
}

@keyframes pulse-globe {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

.lang-suggestion-content p {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-dim);
    margin: 0;
}

.lang-suggestion-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-banner-switch {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-banner-switch:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-banner-dismiss {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-banner-dismiss:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 650px) {
    .lang-suggestion-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 20px;
        bottom: 20px;
        text-align: center;
    }
    .lang-suggestion-content {
        flex-direction: column;
        gap: 8px;
    }
    .lang-suggestion-actions {
        justify-content: center;
        width: 100%;
    }
    .btn-banner-switch, .btn-banner-dismiss {
        flex: 1;
        text-align: center;
    }
}
