/* --- FINTECH BETTING THEME VARIABLES --- */
:root {
    --bg-main: #0d1321;
    --bg-alt: #161f36;
    --card-bg: #1c2541;
    --card-border: #2a3759;
    --accent: #ff5400;
    --accent-hover: #ff722e;
    --text-light: #ffffff;
    --text-muted: #9aa5c4;
    --success: #00e575;
    --error: #ff2a4d;
    --font-main: 'Roboto', sans-serif;
    --radius: 12px;
    --transition: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }
a { text-decoration: none; color: inherit; }

/* --- TYPOGRAPHY --- */
h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; margin-bottom: 20px; font-weight: 900; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 15px; font-weight: 700; }
.section-subtitle { color: var(--text-muted); margin-bottom: 40px; font-size: 1.1rem; }
h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--accent); }
h4 { font-size: 1.1rem; margin-bottom: 10px; margin-top: 20px; }
p { margin-bottom: 15px; color: var(--text-muted); }
.text-center { text-align: center; }
.mt-2 { margin-top: 20px; }
.mt-4 { margin-top: 40px; }
.image-caption { font-size: 0.85rem; color: var(--text-muted); text-align: center; font-style: italic; margin-top: 10px; }
.small-text { font-size: 0.85rem; color: var(--text-muted); }

/* --- UI COMPONENTS --- */
.bg-alt { background-color: var(--bg-alt); padding: 80px 0; }
section { padding: 80px 0; }
.tag { display: inline-block; padding: 6px 14px; background: rgba(255,84,0,0.1); border: 1px solid var(--accent); color: var(--accent); border-radius: 20px; font-size: 0.85rem; font-weight: 500; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px;}
.logic-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 30px; }

/* Lists */
.fintech-list { counter-reset: my-counter; list-style: none; margin-bottom: 20px; }
.fintech-list li { position: relative; padding-left: 40px; margin-bottom: 12px; color: var(--text-muted); }
.fintech-list li::before { content: counter(my-counter); counter-increment: my-counter; position: absolute; left: 0; top: 0; background: var(--accent); color: #fff; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: bold; }

.fintech-bullets { list-style: none; margin-bottom: 20px; }
.fintech-bullets li { position: relative; padding-left: 20px; margin-bottom: 10px; color: var(--text-muted); }
.fintech-bullets li::before { content: "•"; position: absolute; left: 0; color: var(--accent); font-size: 1.5rem; line-height: 1; top: -2px; }

.pos-bullets li::before { content: "✓"; color: var(--success); font-size: 1rem; top: 2px;}
.neg-bullets li::before { content: "✕"; color: var(--error); font-size: 1rem; top: 2px;}

.alert-box { background: rgba(255, 42, 77, 0.1); border-left: 4px solid var(--error); padding: 15px; color: #fff; font-size: 0.95rem; border-radius: 4px;}

/* --- HEADER & NAV --- */
.header { position: fixed; top: 0; width: 100%; background: rgba(13, 19, 33, 0.95); backdrop-filter: blur(10px); z-index: 1000; border-bottom: 1px solid var(--card-border); padding: 15px 0; }
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 35px; }
.nav-menu a { color: var(--text-light); margin-left: 25px; font-size: 0.95rem; font-weight: 500; transition: var(--transition); }
.nav-menu a:hover { color: var(--accent); }
.burger { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.burger span { width: 25px; height: 2px; background: #fff; transition: var(--transition); }

/* --- HERO --- */
.hero { padding-top: 140px; padding-bottom: 60px; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.image-wrapper { background: linear-gradient(135deg, var(--card-bg), var(--bg-alt)); padding: 10px; border-radius: 20px; border: 1px solid var(--card-border); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }

/* --- DASHBOARD SNAPSHOT --- */
.dashboard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
.data-card { background: var(--card-bg); border: 1px solid var(--card-border); padding: 20px; border-radius: var(--radius); display: flex; flex-direction: column; justify-content: center; }
.data-card span { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.data-card strong { font-size: 1.1rem; color: #fff; font-weight: 500; }
.highlight-card { background: var(--accent); border-color: var(--accent); grid-column: 1 / -1; }
.highlight-card span { color: rgba(255,255,255,0.8); }
.highlight-card strong { color: #fff; font-size: 1.2rem; }

/* --- SPLIT CONTENT --- */
.split-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.split-content.reverse { direction: rtl; }
.split-content.reverse > * { direction: ltr; }

/* --- INTERACTIVE HUB (TABS) --- */
.hub-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }
.tabs-header { display: flex; gap: 10px; margin-bottom: 25px; border-bottom: 2px solid var(--card-border); padding-bottom: 10px; overflow-x: auto; }
.tab-btn { background: transparent; border: none; color: var(--text-muted); font-size: 1rem; font-weight: 500; cursor: pointer; padding: 10px 15px; transition: var(--transition); border-radius: 6px; white-space: nowrap; }
.tab-btn:hover { background: rgba(255,255,255,0.05); }
.tab-btn.active { background: var(--accent); color: #fff; }
.tab-body { display: none; animation: fadeIn 0.4s ease; }
.tab-body.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- RATINGS --- */
.rating-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.rating-card { background: var(--card-bg); border: 1px solid var(--card-border); padding: 25px; border-radius: var(--radius); text-align: center; }
.rating-val { font-size: 2.5rem; font-weight: 900; color: var(--accent); margin-bottom: 10px; line-height: 1; }
.rating-val span { color: #fff; }
.rating-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.rating-card.full-width { grid-column: 1 / -1; }

/* --- FAQ ACCORDION --- */
.fintech-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.acc-item { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); overflow: hidden; }
.acc-header { padding: 20px; cursor: pointer; font-weight: 500; display: flex; justify-content: space-between; align-items: center; }
.acc-header::after { content: '+'; color: var(--accent); font-size: 1.5rem; transition: var(--transition); }
.acc-item.open .acc-header::after { content: '−'; transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 20px; }
.acc-item.open .acc-body { padding-bottom: 20px; }

/* --- VERDICT & FOOTER --- */
.verdict-box { background: linear-gradient(135deg, var(--card-bg), #1a2238); padding: 40px; border-radius: var(--radius); border: 1px solid var(--card-border); max-width: 900px; margin: 0 auto; }
.responsibility-box { border: 1px dashed var(--text-muted); padding: 30px; border-radius: var(--radius); max-width: 900px; margin: 40px auto 0; background: rgba(0,0,0,0.2); }
.footer { padding: 30px 0; border-top: 1px solid var(--card-border); background: #080c16; }
.footer-logo { height: 30px; margin-bottom: 15px; opacity: 0.5; }

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .hero-grid, .split-content, .hub-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .split-content.reverse { direction: ltr; }
    .hub-visual { order: -1; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .burger { display: flex; }
    .nav-menu { position: absolute; top: 66px; left: 0; width: 100%; background: var(--card-bg); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--card-border); transform: translateY(-150%); opacity: 0; transition: var(--transition); z-index: 999; }
    .nav-menu.active { transform: translateY(0); opacity: 1; }
    .nav-menu a { margin: 15px 0; font-size: 1.1rem; }
    .tabs-header { flex-wrap: wrap; }
    .tab-btn { flex-grow: 1; text-align: center; }
}