@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* ========================================
   VARIABLES & RESET
======================================== */
:root {
    --navy: #0d1117;
    --navy2: #161b22;
    --blue: #0d2d5e;
    --blue2: #1a3f7a;
    --green: #00c896;
    --amber: #ff6b35;
    --red: #e63946;
    --gray: #6b7280;
    --light: #f5f4f0;
    --border: #ddd8d0;
    --font: 'Syne', sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --radius: 4px;
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font);
    background: var(--light);
    color: var(--navy);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "ss01", "cv01";
}

.container { width: 92%; max-width: 1200px; margin: 0 auto; }
.section { padding: 64px 0; }
.section.alt { background: var(--navy); color: white; }

/* ========================================
   NAVBAR
======================================== */
.navbar {
    background: white;
    padding: 0;
    border-bottom: 1.5px solid var(--border);
    position: sticky;
    top: 36px;
    z-index: 1000;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
}

.logo {
    font-weight: 700;
    font-size: 17px;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.01em;
    text-decoration: none;
}

.logo-icon {
    font-size: 20px;
    color: var(--amber);
}

.nav-links a {
    text-decoration: none;
    color: var(--gray);
    margin-left: 28px;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--navy);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 0; right: 0;
    height: 3px;
    background: var(--amber);
    border-radius: 0;
}

.nav-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
}

.live-dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* ========================================
   HERO (index)
======================================== */
.hero {
    background: #0d1117;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #1e2530;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,107,53,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,107,53,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content { position: relative; }

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.15);
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.hero-accent { color: var(--amber); }

.hero p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    min-width: 160px;
    justify-content: center;
}

/* ========================================
   PAGE HERO (subpages)
======================================== */
.page-hero {
    background: #0d1117;
    color: white;
    padding: 50px 0;
    border-bottom: 2px solid var(--amber);
}

.page-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.page-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.15);
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    line-height: 1.1;
}

.page-sub {
    font-size: 15px;
    opacity: 0.75;
    max-width: 500px;
}

.analysis-controls-box {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ========================================
   BUTTONS
======================================== */
.btn-primary {
    background: var(--amber);
    color: white;
    padding: 0 22px;
    height: 42px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
    font-family: var(--font);
}
.btn-primary:hover { background: #e55a28; box-shadow: 0 4px 12px rgba(255,107,53,0.35); }

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 0 22px;
    height: 42px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: var(--font);
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); transform: translateY(-1px); }

.btn-large { height: 48px; padding: 0 28px; font-size: 15px; }

.btn-outline {
    background: white;
    color: var(--navy);
    padding: 0 22px;
    height: 42px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font);
}
.btn-outline:hover { background: var(--light); }

button { cursor: pointer; border: none; font-family: var(--font); }

/* ========================================
   CONTROLS
======================================== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 10px;
}

.section-header h2 { font-size: 26px; font-weight: 700; letter-spacing: -0.01em; }
.section-sub { font-size: 14px; color: var(--gray); margin-top: 4px; }

.controls {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.control-group { display: flex; flex-direction: column; gap: 5px; }
.control-group label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.control-group select, .control-group input {
    height: 42px;
    padding: 0 14px;
    font-size: 14px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    font-family: var(--font);
    background: white;
    color: var(--navy);
    transition: border-color 0.2s;
}
.control-group select:focus, .control-group input:focus {
    outline: none;
    border-color: var(--blue);
}

select {
    height: 42px;
    padding: 0 32px 0 14px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    font-size: 14px;
    background: white;
    color: var(--navy);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    font-family: var(--font);
    transition: border-color 0.2s;
}
select:focus { outline: none; border-color: var(--blue); }

/* ========================================
   SUMMARY CARDS
======================================== */
.summary-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.summary-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 3px solid var(--border);
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
}
.summary-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 80px;
    border-radius: 0 0 0 80px;
    opacity: 0.06;
}
.summary-card:hover { box-shadow: var(--shadow-lg); border-left: 3px solid var(--amber); }
.card-green { border-top-color: var(--green); }
.card-green::before { background: var(--green); }
.card-amber { border-top-color: var(--amber); }
.card-amber::before { background: var(--amber); }
.card-blue { border-top-color: #3b82f6; }
.card-blue::before { background: #3b82f6; }
.summary-icon { font-size: 24px; margin-bottom: 10px; }
.summary-card h4 { font-size: 11px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.summary-value { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.summary-sub { font-size: 13px; color: var(--gray); }

/* ========================================
   TABLE
======================================== */
.table-container {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1.5px solid var(--border);
    margin-bottom: 30px;
}
table { width: 100%; border-collapse: collapse; }
thead { background: var(--navy); }
th { padding: 14px 16px; text-align: left; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #94a3b8; }
td { padding: 14px 16px; font-size: 14px; color: var(--navy); }
tbody tr { border-bottom: 1px solid var(--light); transition: background 0.15s; }
tbody tr:hover { background: #fafbff; }
tbody tr:last-child { border-bottom: none; }
tbody tr:first-child { background: #f0fdf4; }
.rate-buy { color: var(--green); font-weight: 600; font-family: var(--mono); }
.rate-sell { color: #ef4444; font-weight: 600; font-family: var(--mono); }
.rate-time { font-size: 12px; color: var(--gray); }
.empty { text-align: center; padding: 40px; color: #94a3b8; font-size: 14px; }

/* ========================================
   FX CONVERTER
======================================== */
.fx-converter {
    background: white;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    padding: 36px;
    margin-bottom: 30px;
}
.fx-converter h3 { 
    font-size: 18px; font-weight: 700; margin-bottom: 24px;
    display: flex; align-items: center; gap: 8px;
    letter-spacing: -0.01em;
}
.converter-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.4fr 1.2fr auto;
    align-items: end;
    gap: 12px;
    margin-bottom: 0;
}
.converter-group { display: flex; flex-direction: column; gap: 6px; }
.converter-group label { 
    font-size: 10px; font-weight: 700; color: var(--gray); 
    text-transform: uppercase; letter-spacing: 0.08em; 
}
.converter-group input, .converter-group select {
    height: 46px; padding: 0 14px; border-radius: var(--radius);
    border: 1.5px solid var(--border); font-size: 14px;
    width: 100%; color: var(--navy); font-family: var(--font);
    background: var(--light);
    transition: border-color 0.15s, background 0.15s;
}
.converter-group input:focus, .converter-group select:focus {
    outline: none; border-color: var(--amber); background: white;
}
.converter-result-wrap {
    margin-top: 16px;
    border-top: 1.5px solid var(--border);
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 0;
}
.convert-result {
    font-size: 28px; 
    font-weight: 700; 
    color: var(--navy);
    font-family: var(--mono);
    flex: 1;
    min-height: 48px;
    display: flex;
    align-items: center;
}
.convert-result-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.convert-result-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    font-family: var(--mono);
    letter-spacing: -0.02em;
}
.convert-result-amount span {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray);
    margin-left: 6px;
}
.convert-result-rate {
    font-size: 12px;
    color: var(--gray);
    margin-top: 4px;
    font-family: var(--mono);
}

/* ========================================
   FEATURE LINK CARDS (homepage)
======================================== */
.feature-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 10px;
}

.feature-link-card {
    background: white;
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    color: var(--navy);
    border: 1.5px solid var(--border);
    transition: all 0.2s;
}
.feature-link-card:hover { border-color: var(--amber); background: #fffaf7; }
.flc-icon { font-size: 28px; }
.flc-title { font-size: 15px; font-weight: 700; }
.flc-desc { font-size: 12px; color: var(--gray); line-height: 1.4; }

/* ========================================
   FAQ
======================================== */
.faq-section { padding: 64px 0; background: white; }
.faq-section h2 { text-align: center; font-size: 28px; font-weight: 700; margin-bottom: 36px; letter-spacing: -0.01em; }
.faq-item { background: var(--light); margin-bottom: 10px; border-radius: 10px; overflow: hidden; border: 1.5px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 18px 24px; font-size: 15px; font-weight: 600; cursor: pointer; color: var(--navy); display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; font-family: var(--font); }
.faq-question:hover { background: var(--border); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 24px 20px; color: #4b5563; font-size: 15px; line-height: 1.7; }


/* ========================================
   DISCLAIMER BANNER
======================================== */
.disclaimer-banner {
    background: #0a0f1e;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
    padding: 14px 0;
}

.disclaimer-banner .container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.disclaimer-icon {
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
}

.disclaimer-banner span {
    font-size: 12px;
    color: #64748b;
    line-height: 1.7;
}

.disclaimer-banner strong {
    color: #94a3b8;
    font-weight: 600;
}

/* ========================================
   FOOTER
======================================== */
.footer { background: #0a0f1e; color: #64748b; padding: 28px 0; border-top: 1px solid #1e293b; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 14px; }
.footer-logo { display: flex; align-items: center; gap: 6px; color: #94a3b8; font-weight: 600; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: #64748b; text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--amber); }

/* ========================================
   CHART MODAL
======================================== */
#chartModal { display: none; position: fixed; inset: 0; z-index: 9999; }
.modal-overlay { 
    width: 100%; height: 100%; 
    background: rgba(0,0,0,0.75); 
    backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center; padding: 20px; 
}
.modal-box { 
    background: #0d1117; 
    border: 1px solid #21262d;
    border-radius: 0;
    padding: 0; 
    width: 100%; max-width: 800px; 
    max-height: 92vh; overflow-y: auto; 
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.modal-header { 
    display: flex; justify-content: space-between; align-items: flex-start; 
    padding: 20px 24px 16px;
    border-bottom: 1px solid #21262d;
    background: #161b22;
}
.modal-header h3 { 
    font-size: 18px; font-weight: 700; color: white;
    font-family: var(--mono);
    letter-spacing: -0.01em;
}
.modal-header p { color: #64748b; font-size: 12px; margin-top: 3px; }
.modal-close { 
    background: #21262d; border: 1px solid #30363d;
    border-radius: 0;
    width: 32px; height: 32px; font-size: 14px; 
    cursor: pointer; color: #8b949e; 
    transition: all 0.15s;
    display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: #30363d; color: white; }
.modal-periods, .modal-toggle { 
    display: flex; gap: 0; margin-bottom: 0; flex-wrap: wrap; 
    padding: 0 24px;
    border-bottom: 1px solid #21262d;
}
.modal-periods { padding-top: 14px; gap: 6px; padding-bottom: 14px; border-bottom: none; }
.modal-toggle { padding-bottom: 14px; gap: 6px; }
.period-btn, .toggle-btn { 
    padding: 5px 14px; 
    border-radius: 0;
    border: 1px solid #30363d; 
    background: transparent; 
    font-size: 11px; font-weight: 700; 
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer; color: #8b949e; 
    transition: all 0.15s; 
    font-family: var(--mono);
}
.period-btn:hover, .toggle-btn:hover { background: #21262d; color: #e6edf3; }
.period-btn.active { background: var(--amber); color: white; border-color: var(--amber); }
.toggle-btn[data-series="buy"].active { background: #00c896; color: #0d1117; border-color: #00c896; }
.toggle-btn[data-series="sell"].active { background: var(--amber); color: #0d1117; border-color: var(--amber); }
.toggle-btn[data-series="both"].active { background: #e6edf3; color: #0d1117; border-color: #e6edf3; }

/* Stats grid */
.modal-chart-area {
    padding: 0 24px 24px;
    background: #0d1117;
}
.stats-grid { display: flex; gap: 1px; flex-wrap: wrap; background: #21262d; margin: 0 24px 16px; }
.stats-card { 
    flex: 1; min-width: 160px; padding: 16px 18px; 
    background: #161b22;
}
.stats-label { 
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 12px;
    font-family: var(--mono);
}
.buy-stats .stats-label { color: #00c896; }
.sell-stats .stats-label { color: var(--amber); }
.stats-row { 
    display: flex; justify-content: space-between; 
    padding: 5px 0;
    border-bottom: 1px solid #21262d;
    font-size: 12px;
}
.stats-row:last-child { border-bottom: none; }
.stats-row span { color: #8b949e; }
.stats-row strong { 
    color: #e6edf3; font-family: var(--mono); 
    font-size: 13px; font-weight: 600;
}
.buy-stats { border-left: 3px solid var(--green); }
.sell-stats { border-left: 3px solid var(--amber); }
.stats-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; margin-bottom: 8px; }
.buy-stats .stats-label { color: var(--green); }
.sell-stats .stats-label { color: var(--amber); }
.stats-row { display: flex; justify-content: space-between; font-size: 13px; padding: 4px 0; border-bottom: 1px solid var(--border); }
.stats-row strong { font-weight: 700; font-family: var(--mono); }

/* ========================================
   ANALYSIS PAGE
======================================== */
.analysis-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 24px;
}

.acard {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
    transition: box-shadow 0.2s;
}
.acard:hover { box-shadow: var(--shadow-lg); }

.acard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.acard-bank { font-size: 20px; font-weight: 700; color: var(--navy); flex: 1; }
.acard-currency {
    background: var(--navy);
    color: white;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--mono);
}

/* Risk badges */
.risk-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.risk-low { background: #dcfce7; color: #15803d; }
.risk-medium { background: #fef9c3; color: #92400e; }
.risk-high { background: #fee2e2; color: #dc2626; }
.risk-na { background: var(--light); color: var(--gray); }

.acard-section { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--light); }
.acard-section:last-of-type { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.acard-section-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); margin-bottom: 14px; }

/* Volatility meters */
.vol-meters { display: flex; flex-direction: column; gap: 12px; }
.vol-meter-item { display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: center; }
.vol-meter-label { display: flex; justify-content: space-between; align-items: center; grid-column: 1 / -1; }
.vol-type { font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 4px; }
.buy-type { background: #dcfce7; color: #15803d; }
.sell-type { background: #fef9c3; color: #92400e; }
.vol-value { font-size: 12px; font-weight: 600; font-family: var(--mono); color: var(--gray); }
.vol-track { width: 100%; height: 8px; background: var(--light); border-radius: 4px; overflow: hidden; grid-column: 1; }
.vol-fill { height: 100%; border-radius: 4px; transition: width 0.8s ease; }
.vol-buy { background: linear-gradient(90deg, var(--green), #34d399); }
.vol-sell { background: linear-gradient(90deg, var(--amber), #fbbf24); }
.vol-level { font-size: 12px; font-weight: 600; text-align: right; grid-column: 2; }

/* Trend grid */
.trend-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.trend-item { background: var(--light); border-radius: 10px; padding: 14px; }
.trend-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.trend-arrow { font-size: 13px; font-weight: 700; }
.trend-current { font-size: 13px; color: var(--gray); margin-bottom: 4px; }
.trend-current strong { color: var(--navy); font-family: var(--mono); }
.trend-forecast { font-size: 13px; margin-bottom: 4px; }
.forecast-val { font-family: var(--mono); color: var(--blue); font-size: 15px; }
.trend-change { font-size: 11px; font-weight: 600; }

/* Forecast chart */
.forecast-chart-wrap { height: 130px; position: relative; }

/* Best day */
.bestday-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bestday-item { background: var(--light); border-radius: 10px; padding: 14px; text-align: center; }
.bestday-label { font-size: 11px; color: var(--gray); font-weight: 600; margin-bottom: 8px; }
.bestday-value { font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.bestday-sub { font-size: 11px; color: var(--gray); }

.acard-footer { font-size: 11px; color: #94a3b8; margin-top: 16px; font-style: italic; }
.acard-nodata { text-align: center; padding: 30px 0; }
.acard-nodata p { color: var(--gray); font-size: 14px; margin-bottom: 6px; }
.acard-nodata-sub { font-size: 12px; color: #94a3b8; }

/* Stability bar */
.stability-bar {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    border: 1.5px solid var(--border);
}
.stability-bar-title { font-size: 13px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.stability-ranking { display: flex; flex-direction: column; gap: 10px; }
.stability-item { display: grid; grid-template-columns: 32px 140px 1fr 100px; gap: 12px; align-items: center; }
.stability-rank { font-size: 13px; font-weight: 700; color: var(--gray); text-align: center; }
.stability-bank { font-size: 14px; font-weight: 600; color: var(--navy); }
.stability-bar-track { height: 10px; background: var(--light); border-radius: 5px; overflow: hidden; }
.stability-bar-fill { height: 100%; border-radius: 5px; transition: width 0.8s ease; }
.fill-green { background: var(--green); }
.fill-amber { background: var(--amber); }
.fill-red { background: var(--red); }
.stability-score { font-size: 13px; font-weight: 700; text-align: right; }

/* Loading skeletons */
.loading-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 24px; }
.loading-card { background: white; border-radius: 16px; height: 320px; overflow: hidden; }
.news-loading-card { height: 180px; }
.loading-shimmer { width: 100%; height: 100%; background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Empty state */
.analysis-empty-state {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.empty-icon { font-size: 48px; margin-bottom: 16px; }
.analysis-empty-state h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.analysis-empty-state p { color: var(--gray); font-size: 15px; margin-bottom: 24px; }
.analysis-empty-state a { color: var(--blue); }

/* ========================================
   WATCHLIST PAGE
======================================== */
.watchlist-form-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    border: 2px dashed var(--amber);
}
.wf-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.wf-grid { display: flex; gap: 14px; flex-wrap: wrap; align-items: flex-end; margin-bottom: 20px; }
.wf-actions { display: flex; gap: 12px; }
.form-error { color: var(--red); font-size: 13px; font-weight: 600; padding: 8px 0; }

.watch-summary {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.watch-stat {
    background: white;
    border-radius: 10px;
    padding: 16px 24px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 120px;
}
.watch-stat strong { font-size: 28px; font-weight: 700; color: var(--navy); line-height: 1; }
.watch-stat span { font-size: 12px; color: var(--gray); font-weight: 600; }
.triggered-stat { border: 2px solid var(--green); }
.triggered-stat strong { color: var(--green); }

/* Watchlist items */
.wl-item {
    background: white;
    border-radius: 14px;
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
    display: flex;
    gap: 16px;
    transition: border-color 0.2s;
}
.wl-item.wl-triggered { border-color: var(--green); background: #f0fdf4; }
.wl-item-left { display: flex; flex-direction: column; align-items: center; padding-top: 4px; }
.wl-status-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.dot-triggered { background: var(--green); box-shadow: 0 0 8px rgba(16,185,129,0.5); animation: pulse-dot 1.5s infinite; }
.dot-watching { background: #cbd5e1; }
.wl-item-body { flex: 1; }
.wl-item-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.wl-item-title { font-size: 16px; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.wl-alert-badge { background: var(--green); color: white; padding: 2px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; animation: pulse-dot 1s infinite; }
.wl-delete { background: #fee2e2; color: var(--red); border: none; border-radius: 8px; width: 30px; height: 30px; font-size: 13px; cursor: pointer; flex-shrink: 0; transition: background 0.2s; }
.wl-delete:hover { background: #fecaca; }
.wl-item-detail { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-bottom: 12px; }
.wl-tag { background: var(--light); color: var(--navy); padding: 2px 8px; border-radius: 5px; font-size: 12px; font-weight: 600; }
.tag-buy { background: #dcfce7; color: #15803d; }
.tag-sell { background: #fef9c3; color: #92400e; }
.wl-condition { font-size: 13px; color: var(--gray); }
.wl-progress-row { margin-bottom: 8px; }
.wl-progress-track { height: 6px; background: var(--light); border-radius: 3px; margin-bottom: 6px; overflow: hidden; }
.wl-progress-fill { height: 100%; border-radius: 3px; transition: width 0.6s ease; }
.progress-hit { background: var(--green); }
.progress-watch { background: var(--blue2); }
.wl-current-rate { font-size: 13px; color: var(--gray); }
.wl-current-rate strong { font-family: var(--mono); color: var(--navy); }
.wl-distance { color: #94a3b8; font-size: 12px; margin-left: 6px; }
.wl-item-meta { font-size: 11px; color: #94a3b8; margin-top: 4px; }

/* ========================================
   NEWS PAGE
======================================== */
.sentiment-overview {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
    flex-wrap: wrap;
}
.sentiment-card {
    flex: 1;
    min-width: 130px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}
.bullish-card { border-top: 3px solid var(--green); }
.bearish-card { border-top: 3px solid var(--red); }
.neutral-card { border-top: 3px solid var(--gray); }
.overall-card { border-top: 3px solid var(--amber); }
.sent-num { font-size: 30px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.sent-label { font-size: 12px; color: var(--gray); font-weight: 600; }

.news-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.news-tab {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    background: white;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: var(--gray);
    transition: all 0.2s;
    font-family: var(--font);
}
.news-tab.active { background: var(--navy); color: white; border-color: var(--navy); }

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.news-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.news-card-top { display: flex; justify-content: space-between; align-items: center; }
.news-sentiment-badge { font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.news-date { font-size: 11px; color: #94a3b8; }
.news-title { font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.4; }
.news-desc { font-size: 12px; color: var(--gray); line-height: 1.5; flex: 1; }
.news-read-more { font-size: 12px; font-weight: 700; color: var(--blue); margin-top: auto; }

/* Source cards */
.sources-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.source-card {
    background: white;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    text-decoration: none;
    color: var(--navy);
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
    transition: all 0.2s;
}
.source-card:hover { border-color: var(--amber); transform: translateY(-2px); }
.source-icon { font-size: 24px; margin-bottom: 8px; }
.source-name { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.source-desc { font-size: 11px; color: var(--gray); }

/* ========================================
   ABOUT
======================================== */
.section.alt { padding: 80px 0; }
.section.alt h2 { font-size: 28px; font-weight: 700; margin-bottom: 16px; }

/* ========================================
   MARKET TICKER (inside navbar)
======================================== */
.market-ticker {
    background: var(--navy);
    border-top: 1px solid #1e2530;
    display: flex;
    align-items: center;
    height: 32px;
    overflow: hidden;
}

.ticker-fixed {
    background: var(--amber);
    color: white;
    padding: 0 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.ticker-wrapper {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: ticker-scroll 60s linear infinite;
    gap: 0;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 24px;
    font-size: 11px;
    font-family: var(--mono);
    color: #94a3b8;
    border-right: 1px solid #1e2530;
    white-space: nowrap;
}

.price-up { color: var(--green); font-weight: 600; }
.price-down { color: var(--red); font-weight: 600; }

/* ========================================
   MARKETS PAGE
======================================== */
.market-tabs {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 24px;
}
.market-tab {
    padding: 10px 24px;
    border: none;
    background: none;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}
.market-tab:hover { color: var(--navy); }
.market-tab.active { color: var(--blue); border-bottom-color: var(--blue); }

.market-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
}

.market-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s;
}
.market-card:hover { box-shadow: var(--shadow-lg); }

.market-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.market-icon { font-size: 28px; }
.market-name { font-size: 16px; font-weight: 700; color: var(--navy); }
.market-unit { font-size: 12px; color: var(--gray); margin-top: 2px; }

.market-price-row {
    display: flex;
    gap: 16px;
    align-items: stretch;
    background: var(--light);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}
.market-price-block { flex: 1; }
.market-price-divider { width: 1px; background: var(--border); align-self: stretch; }
.market-price-label { font-size: 11px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.market-price-usd { font-size: 22px; font-weight: 700; color: var(--navy); font-family: var(--mono); }
.market-price-tzs { font-size: 18px; font-weight: 700; font-family: var(--mono); }
.market-price-change { font-size: 13px; font-weight: 600; margin-top: 4px; }
.market-price-sub { font-size: 11px; color: var(--gray); margin-top: 3px; }

.market-section { margin-bottom: 18px; }
.market-section-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
}

.range-bar-wrap { display: flex; align-items: center; gap: 10px; }
.range-low, .range-high { font-size: 11px; font-family: var(--mono); color: var(--gray); white-space: nowrap; }
.range-track { flex: 1; height: 6px; background: var(--border); border-radius: 4px; position: relative; }
.range-fill { position: absolute; width: 12px; height: 12px; border-radius: 50%; top: -3px; transform: translateX(-50%); }

.market-forecast-row { display: flex; gap: 16px; }
.market-forecast-item { flex: 1; }
.mf-label { font-size: 11px; color: var(--gray); font-weight: 600; margin-bottom: 4px; }
.mf-value { font-size: 16px; font-weight: 700; font-family: var(--mono); color: var(--navy); }
.mf-change { font-size: 12px; font-weight: 600; margin-top: 3px; }

.market-chart-wrap { position: relative; height: 140px; }
.fallback-note { font-size: 11px; color: var(--gray); margin-top: 6px; text-align: center; }
.market-nodata { color: var(--gray); font-size: 14px; padding: 20px 0; text-align: center; }

.crypto-icon-circle {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.crypto-stats-row { display: flex; gap: 12px; }
.crypto-stat { flex: 1; }
.cs-label { font-size: 11px; color: var(--gray); font-weight: 600; margin-bottom: 3px; }
.cs-value { font-size: 13px; font-weight: 700; color: var(--navy); font-family: var(--mono); }

.hero-rate-badge {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 600;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .page-title { font-size: 26px; }
    .page-hero-inner { flex-direction: column; }
    .summary-cards { grid-template-columns: 1fr; }
    .feature-links-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .converter-box { flex-direction: column; }
    .converter-group input, .converter-group select { min-width: 100%; }
    .convert-result { min-width: 100%; }
    .analysis-cards-grid { grid-template-columns: 1fr; }
    .loading-grid { grid-template-columns: 1fr; }
    .trend-grid { grid-template-columns: 1fr; }
    .bestday-grid { grid-template-columns: 1fr; }
    .stability-item { grid-template-columns: 28px 1fr; }
    .stability-item .stability-bar-track { grid-column: 1 / -1; }
    .stability-item .stability-score { grid-column: 1 / -1; text-align: left; }
    .wf-grid { flex-direction: column; }
    .modal-box { padding: 20px; }
    .stats-grid { flex-direction: column; }
    .news-grid { grid-template-columns: 1fr; }
    .sources-grid { grid-template-columns: repeat(2, 1fr); }
    .sentiment-overview { grid-template-columns: repeat(2, 1fr); display: grid; }
    .footer-inner { flex-direction: column; text-align: center; }
    .section-header { flex-direction: column; align-items: flex-start; }
    .watch-summary { justify-content: center; }
    .market-cards-grid { grid-template-columns: 1fr; }
    .market-price-row { flex-direction: column; }
    .market-price-divider { width: 100%; height: 1px; }
    .market-forecast-row { flex-direction: column; }
    .crypto-stats-row { flex-direction: column; gap: 6px; }
    .market-tabs { gap: 4px; }
    .market-tab { padding: 8px 14px; font-size: 13px; }
}

<!-- =====================================================
     CSS — paste inside your <style> tag or style.css
     ===================================================== -->
<style>
/* ── NEWS SECTION ── */
.news-section {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.news-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.news-section-title {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}
.news-section-sub {
    font-size: 13px;
    opacity: 0.45;
}
.news-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #00c896;
    background: rgba(0,200,150,0.08);
    border: 1px solid rgba(0,200,150,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}
 
/* ── NEWS CARDS GRID ── */
.news-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
 
/* ── NEWS CARD ── */
.news-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s, background 0.2s;
    position: relative;
    overflow: hidden;
}
.news-card:hover {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.04);
    transform: translateY(-2px);
}
.news-card.expanded {
    grid-column: 1 / -1;
    cursor: default;
    transform: none;
}
 
/* Sentiment accent bar */
.news-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
}
.news-card.bullish::before  { background: #00c896; }
.news-card.bearish::before  { background: #ff4d4d; }
.news-card.neutral::before  { background: #f59e0b; }
 
.news-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.news-cat-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
}
.news-cat-badge.fx        { background: rgba(99,102,241,0.15); color: #818cf8; }
.news-cat-badge.commodity { background: rgba(234,179,8,0.15);  color: #fbbf24; }
.news-cat-badge.crypto    { background: rgba(249,115,22,0.15); color: #fb923c; }
 
.news-sentiment {
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}
.news-sentiment.bullish { color: #00c896; }
.news-sentiment.bearish { color: #ff4d4d; }
.news-sentiment.neutral { color: #f59e0b; }
 
.news-headline {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #e6edf3;
}
.news-summary {
    font-size: 12.5px;
    line-height: 1.6;
    opacity: 0.55;
    margin-bottom: 14px;
}
.news-detail {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.7;
    margin-bottom: 14px;
    display: none;
}
.news-card.expanded .news-detail { display: block; }
 
.news-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    opacity: 0.35;
}
.news-read-more {
    font-size: 11px;
    font-weight: 600;
    color: #e86200;
    opacity: 1 !important;
    display: flex;
    align-items: center;
    gap: 3px;
    cursor: pointer;
}
.news-card.expanded .news-read-more { display: none; }
 
/* ── SKELETON LOADING ── */
.news-card-skeleton {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    height: 180px;
    overflow: hidden;
    position: relative;
}
.skeleton-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,0.04) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position:  200% 0; }
}
 
/* ── NO NEWS STATE ── */
.news-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    opacity: 0.4;
    font-size: 14px;
}
 
@media (max-width: 900px) {
    .news-cards-grid { grid-template-columns: 1fr; }
    .news-card.expanded { grid-column: 1; }
}
</style>

/* ── NEWS CARDS COMPLETE FIX ── */
.news-headline {
    font-family: 'Syne', sans-serif !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #111111 !important;
    opacity: 1 !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
}

.news-summary {
    font-size: 14px !important;
    color: #444444 !important;
    opacity: 1 !important;
    line-height: 1.7 !important;
}

.news-detail {
    font-size: 14px !important;
    color: #333333 !important;
    opacity: 1 !important;
    line-height: 1.7 !important;
}

.news-card {
    background: #ffffff !important;
    border: 1px solid #e2e2e2 !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07) !important;
    padding: 24px !important;
}

.news-cat-badge {
    font-size: 11px !important;
    font-weight: 700 !important;
    opacity: 1 !important;
}

.news-sentiment {
    font-size: 12px !important;
    font-weight: 700 !important;
    opacity: 1 !important;
}

.news-card-footer {
    color: #888888 !important;
    opacity: 1 !important;
    font-size: 12px !important;
    margin-top: 16px !important;
}

.news-read-more {
    color: #e86200 !important;
    font-weight: 700 !important;
    font-size: 13px !important;
}

.news-cards-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    align-items: start !important;
}

.news-section-title {
    font-family: 'Syne', sans-serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    opacity: 1 !important;
}

.news-section-sub {
    color: #666666 !important;
    opacity: 1 !important;
    font-size: 13px !important;
}

/* ── NEWS HEADLINE FORCE FIX ── */
.news-headline,
.news-headline * {
    color: #111111 !important;
    font-family: 'Syne', sans-serif !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    opacity: 1 !important;
    text-decoration: none !important;
}

.news-card.bullish .news-headline,
.news-card.bearish .news-headline,
.news-card.neutral .news-headline {
    color: #111111 !important;
}

.news-summary {
    font-size: 14px !important;
    color: #555555 !important;
    opacity: 1 !important;
    line-height: 1.7 !important;
}

.news-card {
    border-left: 4px solid #e86200 !important;
    border-top: none !important;
    border-right: 1px solid #e2e2e2 !important;
    border-bottom: 1px solid #e2e2e2 !important;
    border-radius: 0 8px 8px 0 !important;
}

.news-card::before {
    display: none !important;
}
/* ── MATCH EXPLORE MORE FEATURES FONT ── */
.flc-title {
    font-family: 'Syne', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111 !important;
}

.flc-desc {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    color: #666 !important;
}

.news-headline {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #111111 !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
}

.news-summary {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #555 !important;
}