/* =================================================================
   SnDTV - The Ballers Community Q4 2025 Market Briefing
   Professional Bloomberg-Quality Styling
   Gold & Black Theme
   ================================================================= */

/* === ROOT VARIABLES === */
:root {
    --gold-primary: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8860B;
    --black-primary: #0A0A0A;
    --black-secondary: #1A1A1A;
    --black-tertiary: #2A2A2A;
    --white: #FFFFFF;
    --gray-light: #E5E5E5;
    --gray-medium: #A0A0A0;
    --gray-dark: #4A4A4A;
    
    --green-positive: #00C853;
    --red-negative: #FF1744;
    --orange-warning: #FF9800;
    --blue-info: #2196F3;
    
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
    --shadow-gold: 0 4px 16px rgba(212,175,55,0.3);
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--black-primary);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === HEADER === */
.header {
    background: linear-gradient(135deg, var(--black-primary) 0%, var(--black-secondary) 100%);
    border-bottom: 2px solid var(--gold-primary);
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo i {
    font-size: 36px;
    color: var(--gold-primary);
}

.logo h1 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
}

.logo .gold {
    color: var(--gold-primary);
}

.header-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.header-meta .date {
    font-size: 14px;
    color: var(--gray-medium);
    font-weight: 500;
}

.header-meta .quarter {
    font-size: 18px;
    color: var(--gold-primary);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* === NAVIGATION === */
.nav {
    background: var(--black-secondary);
    padding: 0;
    position: sticky;
    top: 98px;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-links li {
    flex-shrink: 0;
}

.nav-links a {
    display: block;
    padding: 16px 24px;
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    border-bottom: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-primary);
    background: var(--black-tertiary);
    border-bottom-color: var(--gold-primary);
}

/* === ALERT BANNER === */
.alert-banner {
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
    color: var(--black-primary);
    padding: 12px 0;
    animation: slideDown 0.5s ease;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
}

.alert-content i {
    font-size: 20px;
    animation: pulse 2s infinite;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* === MAIN CONTENT === */
.main-content {
    padding: 40px 0 80px;
}

.section {
    margin-bottom: 80px;
}

.section-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gold-primary);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-header h2 i {
    color: var(--gold-primary);
}

.section-header .subtitle {
    font-size: 18px;
    color: var(--gray-medium);
    font-weight: 400;
    margin-bottom: 16px;
}

.alert-note {
    background: rgba(255, 152, 0, 0.1);
    border-left: 4px solid var(--orange-warning);
    padding: 16px 20px;
    margin-top: 20px;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.alert-note i {
    color: var(--orange-warning);
    font-size: 20px;
    margin-top: 2px;
}

.alert-note strong {
    color: var(--orange-warning);
}

/* === DASHBOARD CARDS === */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.dashboard-card {
    background: linear-gradient(135deg, var(--black-secondary) 0%, var(--black-tertiary) 100%);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--gray-dark);
    transition: var(--transition-medium);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold-primary);
}

.dashboard-card.bullish {
    border-left: 4px solid var(--green-positive);
}

.dashboard-card.bearish {
    border-left: 4px solid var(--red-negative);
}

.dashboard-card.neutral {
    border-left: 4px solid var(--gray-medium);
}

.card-icon {
    font-size: 32px;
    color: var(--gold-primary);
    min-width: 40px;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.card-content .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    font-family: 'Courier New', monospace;
}

.card-content .change {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.card-content .change.positive {
    color: var(--green-positive);
}

.card-content .change.negative {
    color: var(--red-negative);
}

.card-content .change.neutral {
    color: var(--gray-medium);
}

.card-content .meta {
    font-size: 13px;
    color: var(--gray-medium);
    font-style: italic;
}

/* === DATA TABLES === */
.data-table-wrapper {
    background: var(--black-secondary);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 40px;
    border: 1px solid var(--gray-dark);
}

.table-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.table-title i {
    color: var(--gold-primary);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--black-tertiary);
    border-radius: 8px;
    overflow: hidden;
}

.data-table thead {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
}

.data-table thead th {
    padding: 16px;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--black-primary);
}

.data-table tbody tr {
    border-bottom: 1px solid var(--gray-dark);
    transition: var(--transition-fast);
}

.data-table tbody tr:hover {
    background: rgba(212,175,55,0.05);
}

.data-table tbody tr.highlight-row {
    background: rgba(212,175,55,0.1);
    border-left: 4px solid var(--gold-primary);
}

.data-table tbody td {
    padding: 14px 16px;
    font-size: 14px;
    color: var(--gray-light);
}

.data-table tbody td.pair-name {
    font-weight: 700;
    color: var(--white);
}

.data-table tbody td.price {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: var(--white);
}

.data-table tbody td.positive {
    color: var(--green-positive);
    font-weight: 600;
}

.data-table tbody td.negative {
    color: var(--red-negative);
    font-weight: 600;
}

.data-table tbody td.neutral {
    color: var(--gray-medium);
}

/* === BADGES === */
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.bullish {
    background: var(--green-positive);
    color: var(--white);
}

.badge.bearish {
    background: var(--red-negative);
    color: var(--white);
}

.badge.neutral {
    background: var(--gray-medium);
    color: var(--white);
}

.badge.warning {
    background: var(--orange-warning);
    color: var(--black-primary);
}

.badge.success {
    background: var(--green-positive);
    color: var(--white);
}

/* === TREND ICONS === */
.trend-up {
    color: var(--green-positive);
}

.trend-down {
    color: var(--red-negative);
}

.trend-neutral {
    color: var(--gray-medium);
}

/* === MACRO ANALYSIS === */
.macro-analysis {
    margin-top: 40px;
}

.macro-analysis h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.macro-analysis h3 i {
    color: var(--gold-primary);
}

.driver-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.driver-card {
    background: var(--black-secondary);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--gray-dark);
    transition: var(--transition-medium);
}

.driver-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.driver-card.critical {
    border-left: 4px solid var(--red-negative);
}

.driver-card.high {
    border-left: 4px solid var(--orange-warning);
}

.driver-card.medium {
    border-left: 4px solid var(--blue-info);
}

.driver-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.driver-header i {
    font-size: 24px;
    color: var(--gold-primary);
}

.driver-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.driver-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-light);
    margin-bottom: 12px;
}

.driver-card strong {
    color: var(--white);
}

.driver-card .affected {
    font-size: 12px;
    color: var(--gold-primary);
    font-weight: 600;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-dark);
}

/* === SENTIMENT SECTION === */
.sentiment-section {
    margin-top: 40px;
}

.sentiment-section h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sentiment-section h3 i {
    color: var(--gold-primary);
}

.sentiment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.sentiment-card {
    background: var(--black-secondary);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--gray-dark);
}

.sentiment-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gauge {
    width: 100%;
    height: 12px;
    background: var(--black-tertiary);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid var(--gray-dark);
}

.gauge-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green-positive) 0%, var(--gold-primary) 100%);
    transition: width 0.8s ease;
}

.gauge-fill.warning {
    background: linear-gradient(90deg, var(--orange-warning) 0%, var(--gold-light) 100%);
}

.gauge-fill.danger {
    background: linear-gradient(90deg, var(--red-negative) 0%, var(--orange-warning) 100%);
}

.gauge-fill.success {
    background: linear-gradient(90deg, var(--green-positive) 0%, var(--gold-primary) 100%);
}

.gauge-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.sentiment-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--gray-medium);
}

/* === COT ANALYSIS === */
.cot-explainer, .divergence-explainer {
    margin-bottom: 40px;
}

.cot-explainer h3, .divergence-explainer h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.explainer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.explainer-card {
    background: var(--black-secondary);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid var(--gray-dark);
    text-align: center;
}

.explainer-card i {
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.explainer-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.explainer-card p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-light);
}

.explainer-card strong {
    color: var(--gold-primary);
}

/* === COT DATA CARDS === */
.cot-instrument {
    margin-bottom: 60px;
}

.cot-instrument h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cot-data-card {
    background: var(--black-secondary);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--gray-dark);
}

.cot-data-card.bullish {
    border-left: 4px solid var(--green-positive);
}

.cot-data-card.bearish {
    border-left: 4px solid var(--red-negative);
}

.cot-summary {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cot-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cot-stat .label {
    font-size: 13px;
    color: var(--gray-medium);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cot-stat .value {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.cot-stat .value.positive {
    color: var(--green-positive);
}

.cot-stat .value.negative {
    color: var(--red-negative);
}

.cot-interpretation {
    margin-top: 24px;
    padding: 20px;
    background: rgba(212,175,55,0.05);
    border-radius: 8px;
    border-left: 4px solid var(--gold-primary);
}

.cot-interpretation h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.cot-interpretation ul {
    list-style: none;
    padding: 0;
}

.cot-interpretation li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-dark);
    font-size: 14px;
    line-height: 1.6;
}

.cot-interpretation li:last-child {
    border-bottom: none;
}

/* === TECHNICAL ANALYSIS === */
.technical-analysis-card {
    background: var(--black-secondary);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 60px;
    border: 1px solid var(--gray-dark);
}

.ta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.ta-header h3 {
    font-size: 26px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.current-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.current-price .label {
    font-size: 14px;
    color: var(--gray-medium);
    font-weight: 600;
}

.current-price .value {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Courier New', monospace;
}

.current-price .change {
    font-size: 16px;
    font-weight: 600;
}

.timeframe-analysis {
    margin-bottom: 40px;
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border-left: 4px solid var(--gold-primary);
}

.timeframe-analysis h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.timeframe-analysis h4 i {
    color: var(--gold-primary);
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.analysis-item {
    padding: 16px;
    background: var(--black-tertiary);
    border-radius: 8px;
}

.analysis-item strong {
    display: block;
    color: var(--gold-primary);
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 700;
}

.analysis-item ul {
    list-style: none;
    padding: 0;
}

.analysis-item li {
    padding: 6px 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--gray-light);
}

.highlight {
    color: var(--gold-primary);
    font-weight: 700;
}

/* === ELLIOTT WAVE === */
.elliott-wave-section {
    margin: 32px 0;
    padding: 24px;
    background: rgba(33,150,243,0.05);
    border-radius: 8px;
    border-left: 4px solid var(--blue-info);
}

.elliott-wave-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.elliott-wave-section h4 i {
    color: var(--blue-info);
}

.wave-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.wave-count, .wave-targets, .wave-projection {
    padding: 16px;
    background: var(--black-tertiary);
    border-radius: 8px;
}

.wave-count strong, .wave-targets strong, .wave-projection strong {
    display: block;
    color: var(--blue-info);
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 700;
}

.wave-count ul, .wave-targets ul, .wave-projection ul {
    list-style: none;
    padding: 0;
}

.wave-count li, .wave-targets li, .wave-projection li {
    padding: 6px 0;
    font-size: 13px;
    line-height: 1.5;
}

.wave-rules {
    padding: 20px;
    background: rgba(0,200,83,0.05);
    border-radius: 8px;
    margin-top: 20px;
}

.wave-rules h5 {
    font-size: 16px;
    color: var(--green-positive);
    margin-bottom: 12px;
    font-weight: 700;
}

.wave-rules ul {
    list-style: none;
    padding: 0;
}

.wave-rules li {
    padding: 6px 0;
    font-size: 14px;
}

.wave-interpretation {
    margin-top: 20px;
}

.wave-interpretation h5 {
    font-size: 16px;
    color: var(--blue-info);
    margin-bottom: 12px;
    font-weight: 700;
}

.wave-interpretation ul {
    list-style: none;
    padding: 0;
}

.wave-interpretation li {
    padding: 6px 0;
    font-size: 14px;
    line-height: 1.6;
}

/* === FIBONACCI ANALYSIS === */
.fib-analysis {
    margin: 32px 0;
}

.fib-analysis h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fib-analysis h4 i {
    color: var(--gold-primary);
}

/* === TRADE SETUP BOX === */
.trade-setup-box {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0.05) 100%);
    border-radius: 12px;
    border: 2px solid var(--gold-primary);
}

.trade-setup-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.setup-details {
    display: grid;
    gap: 12px;
}

.setup-row {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: var(--black-tertiary);
    border-radius: 6px;
}

.setup-row .label {
    font-weight: 600;
    color: var(--gray-medium);
    font-size: 14px;
}

.setup-row .value {
    font-weight: 700;
    color: var(--white);
    font-size: 14px;
}

.setup-row .value.bullish {
    color: var(--green-positive);
}

.setup-row .value.bearish {
    color: var(--red-negative);
}

.setup-row .value.success {
    color: var(--green-positive);
}

.setup-notes {
    margin-top: 20px;
}

.setup-notes h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 12px;
    margin-top: 16px;
}

.setup-notes ul {
    list-style: none;
    padding: 0;
}

.setup-notes li {
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid var(--gray-dark);
}

.setup-notes li:last-child {
    border-bottom: none;
}

/* === SEASONAL TABLES === */
.seasonal-table tbody tr.seasonal-bullish {
    background: rgba(0,200,83,0.08);
    border-left: 4px solid var(--green-positive);
}

.seasonal-table tbody tr.seasonal-bearish {
    background: rgba(255,23,68,0.08);
    border-left: 4px solid var(--red-negative);
}

.seasonal-table tbody tr.seasonal-neutral {
    background: rgba(160,160,160,0.05);
}

.seasonal-card {
    margin-bottom: 60px;
}

.seasonal-legend {
    display: flex;
    gap: 32px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.legend-item .color-box {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.legend-item.bullish .color-box {
    background: var(--green-positive);
}

.legend-item.bearish .color-box {
    background: var(--red-negative);
}

.legend-item.neutral .color-box {
    background: var(--gray-medium);
}

.seasonal-notes {
    margin-top: 24px;
    padding: 20px;
    background: rgba(212,175,55,0.05);
    border-radius: 8px;
    border-left: 4px solid var(--gold-primary);
}

.seasonal-notes h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.seasonal-notes ul {
    list-style: none;
    padding: 0;
}

.seasonal-notes li {
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.6;
}

/* === TRADE SETUP CARDS === */
.trade-setup-card {
    background: var(--black-secondary);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 60px;
    border: 1px solid var(--gray-dark);
}

.trade-setup-card.gold-setup {
    border: 2px solid var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.setup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.setup-header h3 {
    font-size: 26px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.timeframe-badges {
    display: flex;
    gap: 12px;
}

.setup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.setup-details-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.setup-table {
    width: 100%;
    border-collapse: collapse;
}

.setup-table tr {
    border-bottom: 1px solid var(--gray-dark);
}

.setup-table td {
    padding: 12px 8px;
    font-size: 14px;
}

.setup-table td:first-child {
    color: var(--gray-medium);
    font-weight: 600;
    width: 40%;
}

.setup-table td:last-child {
    color: var(--white);
    font-weight: 600;
}

.bullish-text {
    color: var(--green-positive);
    font-weight: 700;
}

.bearish-text {
    color: var(--red-negative);
    font-weight: 700;
}

.success-text {
    color: var(--green-positive);
    font-weight: 700;
}

/* === FOOTER === */
.footer {
    background: linear-gradient(135deg, var(--black-secondary) 0%, var(--black-primary) 100%);
    border-top: 2px solid var(--gold-primary);
    padding: 48px 0 32px;
    margin-top: 80px;
}

.author-section {
    margin-bottom: 32px;
}

.author-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-section h3 i {
    color: var(--gold-primary);
}

.author-bio {
    max-width: 800px;
}

.author-bio p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: var(--gray-light);
}

.author-bio .credentials {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 17px;
    margin: 16px 0;
}

.author-bio .credentials i {
    margin: 0 8px;
}

.author-bio .bio-text {
    font-size: 15px;
}

.footer-meta {
    border-top: 1px solid var(--gray-dark);
    padding-top: 24px;
    text-align: center;
}

.footer-meta p {
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 12px !important;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.disclaimer strong {
    color: var(--gold-primary);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header-meta {
        align-items: flex-start;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .setup-grid,
    .wave-grid,
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .sentiment-grid,
    .driver-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        justify-content: flex-start;
    }
    
    .data-table {
        font-size: 12px;
    }
    
    .data-table thead th,
    .data-table tbody td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .logo i {
        font-size: 24px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .nav-links a {
        padding: 12px 16px;
        font-size: 12px;
    }
}