/* ==========================================================================
   INEHub - ExpertOption Review Stylesheet (2026 Premium Dark Theme Engine)
   ========================================================================== */

:root {
    --bg-dark-core: #0f111a;
    --card-bg-panel: #161925;
    --accent-green-neon: #00e676;
    --accent-orange-gold: #ff9100;
    --text-core-white: #ffffff;
    --text-slate-gray: #8a90a6;
    --border-slate-line: #24293e;
    --danger-rose: #ff5252;
}

body.dark-theme {
    background-color: var(--bg-dark-core);
    color: var(--text-core-white);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.review-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Breadcrumbs Section */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-slate-gray);
    margin-bottom: 25px;
}

.breadcrumb-nav a {
    color: var(--text-slate-gray);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.breadcrumb-nav a:hover {
    color: var(--accent-green-neon);
}

/* Hero Branding Card Component */
.hero-header-card {
    display: flex;
    flex-wrap: wrap;
    background: var(--card-bg-panel);
    border: 1px solid var(--border-slate-line);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.hero-left {
    flex: 1 1 250px;
    background: #1c2030;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-right: 1px solid var(--border-slate-line);
    text-align: center;
}

.hero-logo-box img {
    max-width: 160px;
    height: auto;
    display: block;
    margin-bottom: 20px;
    border-radius: 8px;
}

.rank-badge {
    background: rgba(0, 230, 118, 0.1);
    color: var(--accent-green-neon);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.hero-right {
    flex: 2 1 500px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.title-area h1 {
    font-size: 32px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.title-area .tagline {
    color: var(--text-slate-gray);
    font-size: 16px;
    margin: 0 0 25px 0;
    line-height: 1.4;
}

.interactive-promo-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #12141f;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-green-neon);
    gap: 15px;
}

.promo-details {
    display: flex;
    align-items: center;
    gap: 15px;
}

.promo-details i {
    font-size: 24px;
}

.promo-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.promo-code {
    display: block;
    font-size: 12px;
    color: var(--accent-green-neon);
    font-weight: 700;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.promo-cta-btn {
    background: var(--accent-green-neon);
    color: #000000;
    border: none;
    padding: 12px 24px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s ease, background 0.3s ease;
}

.promo-cta-btn:hover {
    transform: translateY(-2px);
    background: #00c862;
}

/* Micro-Data Key Metrics Panel */
.quick-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    background: var(--card-bg-panel);
    border: 1px solid var(--border-slate-line);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.stat-box:hover {
    border-color: var(--accent-green-neon);
}

.stat-box i {
    font-size: 28px;
    color: var(--accent-green-neon);
    margin-bottom: 15px;
}

.stat-box h3 {
    font-size: 14px;
    color: var(--text-slate-gray);
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-val {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.stat-text {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Editorial Content Splits */
.content-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.text-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #c2c6d4;
    margin-bottom: 20px;
}

.inline-aff-link {
    color: var(--accent-green-neon);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dotted var(--accent-green-neon);
}

.inline-aff-link:hover {
    color: var(--text-core-white);
    border-bottom-style: solid;
}

.video-container-box iframe {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border-slate-line);
}

/* Score Indicators & Custom Performance Bars */
.evaluation-chart-section {
    background: var(--card-bg-panel);
    border: 1px solid var(--border-slate-line);
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 40px;
}

.evaluation-chart-section h2 {
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 25px;
}

.evaluation-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.eval-bar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.eval-label {
    width: 220px;
    font-weight: 600;
    font-size: 15px;
}

.progress-bar-container {
    flex: 1;
    height: 10px;
    background: #12141f;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-green-neon), #00b0ff);
    border-radius: 5px;
}

.eval-score {
    font-weight: 700;
    width: 50px;
    text-align: right;
    color: var(--accent-green-neon);
}

/* Pros and Cons Structural Splits */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.shadow-wrap {
    background: var(--card-bg-panel);
    border: 1px solid var(--border-slate-line);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pro-card h3, .con-card h3 {
    margin-top: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-success { color: var(--accent-green-neon); }
.text-danger { color: var(--danger-rose); }

.pro-card ul, .con-card ul {
    padding-left: 20px;
    margin: 20px 0;
}

.pro-card li, .con-card li {
    font-size: 14.5px;
    line-height: 1.6;
    color: #c2c6d4;
    margin-bottom: 12px;
}

.card-action-inject {
    margin-top: 15px;
}

.card-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-green-neon);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.card-link-btn:hover {
    color: var(--text-core-white);
}

/* Technical Specification Datasheet Matrices */
.datasheet-wrapper {
    background: var(--card-bg-panel);
    border: 1px solid var(--border-slate-line);
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 40px;
}

.datasheet-wrapper h2 {
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 25px;
}

.responsive-table {
    overflow-x: auto;
}

.specification-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.specification-table tr {
    border-bottom: 1px solid var(--border-slate-line);
}

.specification-table tr:last-child {
    border-bottom: none;
}

.specification-table td {
    padding: 14px 18px;
    font-size: 15px;
}

.specification-table td:first-child {
    font-weight: 600;
    color: var(--text-slate-gray);
    width: 30%;
}

.specification-table td:last-child {
    color: var(--text-core-white);
    font-weight: 500;
}

/* Deep Analysis Narrative Contexts */
.depth-read-section {
    margin-bottom: 40px;
}

.depth-read-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.depth-read-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #c2c6d4;
}

/* High-Converting Signals Capture Banner */
.signals-hub-banner {
    background: linear-gradient(135deg, #161925 0%, #0d2017 100%);
    border: 1px solid #00e67633;
    border-radius: 14px;
    padding: 40px;
    margin-bottom: 40px;
}

.banner-inner h2 {
    margin-top: 0;
    font-size: 28px;
    color: var(--text-core-white);
}

.banner-inner p {
    font-size: 16px;
    color: #c2c6d4;
    margin-bottom: 30px;
}

.signals-how-to {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.signals-how-to h3 {
    margin-top: 0;
    font-size: 18px;
    color: var(--accent-green-neon);
}

.signals-how-to ol {
    padding-left: 20px;
    margin: 15px 0 0 0;
}

.signals-how-to li {
    font-size: 15px;
    color: var(--text-core-white);
    margin-bottom: 10px;
    line-height: 1.5;
}

.signals-how-to a {
    color: var(--accent-green-neon);
    font-weight: 600;
}

.middle-cta-box {
    display: flex;
    justify-content: center;
    margin: 35px 0;
}

.banner-main-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #00e676, #00b0ff);
    color: #000000;
    text-decoration: none;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 30px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.banner-main-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.5);
}

.signals-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.signal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.signal-btn:hover {
    opacity: 0.9;
}

.web-btn { background: #37474f; color: #ffffff; }
.app-btn { background: #a4c639; color: #000000; }
.tg-btn { background: #0088cc; color: #ffffff; }

/* Expert Consultation Interface Box */
.expert-opinion-card {
    background: var(--card-bg-panel);
    border: 1px solid var(--border-slate-line);
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 40px;
}

.expert-opinion-card h2 {
    margin-top: 0;
    font-size: 24px;
}

.text-accent { color: var(--accent-orange-gold); }

.expert-opinion-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #c2c6d4;
}

.binary-verdict-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.verdict-pane {
    padding: 25px;
    border-radius: 8px;
}

.trade-yes {
    background: rgba(0, 230, 118, 0.04);
    border: 1px solid rgba(0, 230, 118, 0.15);
}

.trade-no {
    background: rgba(255, 82, 82, 0.04);
    border: 1px solid rgba(255, 82, 82, 0.15);
}

.verdict-pane h4 {
    margin-top: 0;
    font-size: 16px;
    margin-bottom: 15px;
}

.trade-yes h4 { color: var(--accent-green-neon); }
.trade-no h4 { color: var(--danger-rose); }

.verdict-pane p {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.verdict-pane p:last-child {
    margin-bottom: 0;
}

.macro-geography {
    margin-top: 30px;
    border-top: 1px solid var(--border-slate-line);
    padding-top: 25px;
}

/* System Risk Disclaimer Text */
.risk-disclaimer {
    border-top: 1px solid var(--border-slate-line);
    padding-top: 20px;
    margin-top: 20px;
}

.risk-disclaimer p {
    font-size: 12.5px;
    line-height: 1.6;
    color: #62687d;
}

/* ==========================================================================
   Fluid Breakpoints for Multi-Device Layout Consistency (Mobile, Tab, Desktop)
   ========================================================================== */

@media (max-width: 992px) {
    .content-split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-container-box {
        order: -1; /* Shifts descriptive video content cleanly above text blocks */
    }
}

@media (max-width: 768px) {
    .hero-header-card {
        flex-direction: column;
    }
    
    .hero-left {
        border-right: none;
        border-bottom: 1px solid var(--border-slate-line);
        padding: 30px;
    }
    
    .hero-right {
        padding: 30px;
    }
    
    .interactive-promo-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .promo-details {
        flex-direction: column;
        gap: 8px;
    }
    
    .pros-cons-grid, .binary-verdict-grid {
        grid-template-columns: 1fr;
    }
    
    .eval-bar-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .eval-label, .progress-bar-container, .eval-score {
        width: 100%;
    }
    
    .eval-score {
        text-align: left;
    }
}