/* AnalizPro — UTF-8 / Türkçe uyumlu tema */
@charset "UTF-8";

:root {
    --bg-deep: #0c0e12;
    --bg-panel: rgba(18, 22, 28, 0.82);
    --bg-card: rgba(22, 28, 36, 0.72);
    --bg-hover: rgba(32, 40, 52, 0.88);
    --border: rgba(255, 255, 255, 0.08);
    --accent: #00b85c;
    --accent-dim: #00924a;
    --gold: #e8b84a;
    --gold-deep: #c9922e;
    --lion: #f0a030;
    --text: #eceff6;
    --text-muted: #9aa3b5;
    --live: #ff4757;
    --bulletin-w: 300px;
    /* Sihirbaz sütunu — bültenin ~1,65 katı */
    --wizard-w: calc(var(--bulletin-w) * 1.65);
    --wizard-w-max: min(calc(var(--bulletin-w) * 1.65), 26vw);
    --sidebar-w: var(--bulletin-w);
    --font: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --text-strong: #f4f6fa;
    --topbar-h: 48px;
}

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

html {
    font-size: 14px;
}

body,
button,
input,
select,
textarea,
table,
th,
td {
    font-family: var(--font);
}

body {
    background: var(--bg-deep);
    color: var(--text);
    line-height: 1.45;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ——— Landing ——— */
.landing {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: radial-gradient(ellipse at top, #15202e 0%, var(--bg-deep) 60%);
}

.landing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.brand {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.sport-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.sport-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s, transform 0.15s;
    min-width: 200px;
}

.sport-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.sport-icon {
    font-size: 2rem;
}

.sport-label {
    font-weight: 600;
    font-size: 1.1rem;
}

.sport-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ——— App layout ——— */
.app-layout {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* ——— Sol fikstür (dar sütun) ——— */
.sidebar {
    width: var(--sidebar-w);
    min-width: var(--sidebar-w);
    background: var(--bg-panel);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.app-layout--triple {
    display: flex;
}

.sidebar-bulletin {
    width: var(--bulletin-w);
    min-width: var(--bulletin-w);
    max-width: var(--bulletin-w);
}

.panel-wizard {
    width: var(--wizard-w-max);
    min-width: min(var(--wizard-w), 280px);
    max-width: var(--wizard-w-max);
    display: flex;
    flex-direction: column;
    background: var(--bg-panel);
    border-right: 1px solid var(--border);
    overflow: hidden;
    min-height: 0;
}

.left-coupon-stack {
    flex: 1;
    overflow: hidden;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-height: 0;
    height: 100%;
}

.left-coupon-stack::-webkit-scrollbar {
    width: 4px;
}

.left-coupon-stack::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

.sidebar-brand {
    padding: 6px 10px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(90deg, #151a24, #12161f);
}

.brand-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.brand-link:hover {
    color: var(--accent);
}

.sidebar-nav {
    display: flex;
    gap: 4px;
    padding: 4px 8px;
    border-bottom: 1px solid var(--border);
}

.nav-tab {
    flex: 1;
    text-align: center;
    padding: 3px 6px;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s;
}

.nav-tab:hover,
.nav-tab.active {
    background: var(--bg-hover);
    color: var(--accent);
}

.nav-tab--premium-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.nav-tab__tag {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.08rem 0.28rem;
    border-radius: 3px;
    background: linear-gradient(135deg, var(--gold), #c9a227);
    color: #1a1208;
    line-height: 1.15;
}

.bulletin-title {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    padding: 4px 10px 2px;
}

.bulletin-meta {
    font-size: 0.58rem;
    color: var(--text-muted);
    padding: 0 10px 4px;
    opacity: 0.85;
}

.match-code {
    font-size: 0.58rem;
    color: var(--accent);
    font-weight: 600;
    flex-shrink: 0;
}

.fixture-list {
    flex: 1;
    overflow-y: auto;
    padding: 0 4px 4px;
}

.fixture-day-heading {
    position: sticky;
    top: 0;
    z-index: 2;
    margin: 6px 2px 3px;
    padding: 4px 8px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--bg-deep);
    border-left: 2px solid var(--accent);
    border-radius: 0 3px 3px 0;
}

.fixture-list::-webkit-scrollbar {
    width: 4px;
}

.fixture-list::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

/* Maç satırı — dar sütunda okunaklı kompakt */
.match-row {
    width: 100%;
    padding: 5px 6px 6px;
    margin-bottom: 3px;
    border-radius: 5px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.12s, border-color 0.12s;
    box-sizing: border-box;
}

.sidebar-bulletin .match-row {
    padding: 5px 5px 6px;
}

.match-row:hover {
    background: var(--bg-hover);
}

.match-row.selected {
    background: var(--bg-card);
    border-color: var(--accent-dim);
    box-shadow: inset 3px 0 0 var(--accent);
}

.match-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    margin-bottom: 2px;
}

.match-league-line {
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.2;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.match-league {
    font-size: 0.68rem;
    color: var(--text-muted);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.match-time {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

.match-live {
    font-size: 0.58rem;
    color: var(--live);
    font-weight: 700;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    50% { opacity: 0.6; }
}

.match-teams {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 4px;
    color: var(--text-strong);
    width: 100%;
}

.match-teams .team {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.match-teams .team.home::before {
    content: "▸ ";
    color: var(--accent);
    font-size: 0.65rem;
}

.match-teams .team.away::before {
    content: "▸ ";
    color: var(--text-muted);
    font-size: 0.65rem;
}

.match-teams .sep {
    display: none;
}

.sidebar-bulletin .match-teams {
    font-size: 0.82rem;
}

.sidebar-bulletin .match-league-line {
    font-size: 0.7rem;
}

.sidebar-bulletin .odd-val {
    font-size: 0.76rem;
}

/* İddaa oran butonları */
.odds-row {
    display: flex;
    gap: 3px;
}

.odd-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 2px 1px;
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: 3px;
    color: var(--text);
    cursor: pointer;
    line-height: 1.1;
    font-family: var(--font);
    transition: border-color 0.12s, background 0.12s, box-shadow 0.12s;
}

.odd-btn:hover {
    border-color: var(--accent-dim);
    background: var(--bg-hover);
}

.odd-btn--in-coupon {
    border-color: var(--gold);
    box-shadow: inset 0 0 0 1px rgba(232, 184, 74, 0.35);
    background: rgba(232, 184, 74, 0.08);
}

.odd-btn--flash {
    animation: oddFlash 0.35s ease;
}

@keyframes oddFlash {
    0% { box-shadow: 0 0 0 0 rgba(0, 200, 150, 0.5); }
    100% { box-shadow: 0 0 0 6px rgba(0, 200, 150, 0); }
}

.smart-coupon--pulse {
    animation: couponPulse 0.3s ease;
}

@keyframes couponPulse {
    0% { border-color: var(--border); }
    50% { border-color: var(--accent); }
    100% { border-color: var(--border); }
}

.match-row:hover .odd-btn,
.match-row.selected .odd-btn {
    border-color: #3a4558;
}

.odd-lbl {
    font-size: 0.58rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.odd-val {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

.sidebar-bulletin .odd-btn {
    padding: 3px 1px;
}

.sidebar-bulletin .odd-lbl {
    font-size: 0.56rem;
}

.sidebar-bulletin .odd-val {
    font-size: 0.72rem;
}

/* ——— Sağ analiz paneli ——— */
.panel-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: var(--bg-deep);
    position: relative;
    overflow: hidden;
}

.panel-right-scroll {
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 1rem 1.25rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 0;
    min-width: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(154, 163, 181, 0.35) transparent;
}

.panel-right-scroll::-webkit-scrollbar {
    width: 5px;
}

.panel-right-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.panel-right-scroll::-webkit-scrollbar-thumb {
    background: rgba(154, 163, 181, 0.3);
    border-radius: 4px;
}

.match-analysis-wrap {
    flex-shrink: 0;
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden;
}

.match-analysis-wrap.is-analyzing {
    min-height: 12rem;
}

.analysis-loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 12rem;
    padding: 2rem 1rem;
    color: var(--accent);
}

.analysis-loading-spinner {
    width: 2.25rem;
    height: 2.25rem;
    border: 3px solid rgba(255, 255, 255, 0.12);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: analysisSpin 0.75s linear infinite;
    margin-bottom: 0.85rem;
}

.analysis-loading-text {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

@keyframes analysisSpin {
    to { transform: rotate(360deg); }
}

.analysis-error-state {
    padding: 2rem 1rem;
    text-align: center;
    color: var(--live);
    font-size: 0.9rem;
}

.panel-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 14, 20, 0.7);
    color: var(--accent);
    font-size: 0.9rem;
}

.panel-loading[hidden] {
    display: none;
}

.panel-right.is-loading .analysis {
    opacity: 0.4;
    pointer-events: none;
}

.analysis {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.analysis-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
}

.analysis-league {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.analysis-status {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    background: var(--bg-card);
    color: var(--text-muted);
}

.analysis-status.is-live {
    background: rgba(255, 71, 87, 0.15);
    color: var(--live);
}

.analysis-title {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-strong);
    letter-spacing: -0.01em;
    overflow-wrap: anywhere;
    line-height: 1.25;
}

.analysis-title .vs {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 1rem;
}

.analysis-time {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.analysis-block {
    margin-bottom: 1.25rem;
}

.analysis-block h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.analysis-block p {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.55;
}

.analysis-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.analysis-code {
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 600;
}

.analysis-weather {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.lineup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.lineup-col h4 {
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.lineup-list,
.injury-list {
    list-style: none;
    padding: 0;
    font-size: 0.8rem;
}

.lineup-list li,
.injury-list li {
    padding: 0.2rem 0;
    border-bottom: 1px solid var(--border);
}

.injury-title {
    font-size: 0.7rem;
    color: var(--live);
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.muted {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ——— Güç puanı (3. Aşama) ——— */
.power-block {
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.06), rgba(232, 184, 74, 0.04));
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
}

.power-block h3 {
    margin-bottom: 0.75rem;
}

.power-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.power-team h4 {
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.power-bar-row {
    display: grid;
    grid-template-columns: 52px 1fr 28px;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.power-bar-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.power-bar {
    height: 6px;
    background: var(--bg-deep);
    border-radius: 3px;
    overflow: hidden;
}

.power-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.power-bar-fill--atk {
    background: linear-gradient(90deg, var(--accent-dim), var(--accent));
}

.power-bar-fill--def {
    background: linear-gradient(90deg, #3a5a8c, #5b8fd4);
}

.power-bar-val {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text);
    text-align: right;
}

.power-note {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ——— Poisson tablosu (4. Aşama) ——— */
.poisson-block {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    background: var(--bg-card);
}

.top-scores {
    font-size: 0.82rem;
    color: var(--text);
    margin-bottom: 0.65rem;
}

.top-scores strong {
    color: var(--gold);
}

.top-scores__pct {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.92em;
    margin-left: 0.1rem;
}

.poisson-table-wrap {
    overflow-x: hidden;
    max-width: 100%;
}

.poisson-table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 0.68rem;
}

.poisson-table th,
.poisson-table td {
    padding: 4px 5px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    overflow-wrap: anywhere;
    word-break: break-word;
    vertical-align: top;
}

.poisson-table th {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
}

.prob-cell {
    color: var(--accent);
    font-weight: 700;
}

.odd-cell {
    color: var(--gold);
    font-weight: 600;
}

.poisson-dc-note {
    margin: 0.5rem 0 0;
    padding: 0.5rem 0.65rem;
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--text-muted);
    background: rgba(240, 160, 48, 0.06);
    border: 1px solid rgba(240, 160, 48, 0.18);
    border-radius: 6px;
}

.poisson-dc-note strong {
    color: var(--gold);
    font-weight: 600;
}

.poisson-meta {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

/* Risk uyarısı — ince çizgi, kutu yok */
.risk-line {
    border-left: 3px solid var(--gold);
    padding: 0.45rem 0.65rem;
    margin: 0.5rem 0 0.75rem;
    background: rgba(232, 184, 74, 0.06);
    font-size: 0.78rem;
    line-height: 1.45;
}

.risk-line-text {
    display: block;
    color: var(--gold);
    font-weight: 600;
}

.risk-safe {
    display: block;
    color: var(--accent);
    margin-top: 0.2rem;
}

/* Sistem terminali */
.system-terminal {
    margin-top: 1.25rem;
    padding: 0.5rem 0.65rem;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0 0 6px 6px;
}

.system-terminal-head {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.system-terminal-log {
    list-style: none;
    max-height: none;
    overflow: visible;
    font-family: Consolas, "Segoe UI", monospace;
    font-size: 0.62rem;
    line-height: 1.5;
    color: var(--text-muted);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.panel-right .system-terminal-log {
    max-height: 4.5rem;
    overflow: hidden;
}

.system-terminal-log li {
    padding: 1px 0;
}

.log-time {
    color: #5a6a82;
    margin-right: 0.35rem;
}

.log-src {
    color: var(--accent-dim);
}

.log-ok {
    color: var(--accent-dim);
}

/* ——— Akıllı Kupon (5. Aşama) ——— */
.smart-coupon {
    flex-shrink: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-card);
    padding: 0.75rem 0.85rem;
    font-family: var(--font);
}

.smart-coupon-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--border);
}

.smart-coupon-head h3 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold);
    margin: 0;
}

.coupon-count {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
}

.coupon-list {
    list-style: none;
    max-height: 140px;
    overflow-y: auto;
    margin-bottom: 0.6rem;
}

.coupon-empty {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0.35rem 0;
}

.coupon-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.4rem 0.35rem;
    margin: 0 -0.35rem;
    border-bottom: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.coupon-item:hover,
.coupon-item:focus-visible {
    background: var(--bg-hover);
    outline: none;
}

.coupon-item.is-active {
    background: rgba(0, 200, 150, 0.08);
    border-bottom-color: var(--accent-dim);
    box-shadow: inset 2px 0 0 var(--accent);
}

.coupon-item-main {
    flex: 1;
    min-width: 0;
}

.coupon-item-teams {
    display: block;
    font-weight: 600;
    color: var(--text-strong);
    margin-bottom: 0.1rem;
}

.coupon-item-pick {
    display: block;
    color: var(--accent);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.coupon-item-meta {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

.coupon-remove {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-deep);
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    font-family: var(--font);
    transition: color 0.12s, border-color 0.12s;
}

.coupon-remove:hover {
    color: var(--live);
    border-color: var(--live);
}

.coupon-summary {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.coupon-row-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.coupon-lbl {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
}

.coupon-val {
    font-size: 0.85rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--text-strong);
}

.coupon-val--accent {
    color: var(--accent);
}

.coupon-val--gold {
    color: var(--gold);
}

.coupon-stake-input {
    width: 88px;
    padding: 4px 8px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-deep);
    color: var(--text-strong);
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    text-align: right;
}

.coupon-stake-input:focus {
    outline: none;
    border-color: var(--accent-dim);
}

.coupon-ai {
    margin-top: 0.35rem;
    padding-top: 0.4rem;
    border-top: 1px dashed var(--border);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
}

#system-terminal-wrap {
    flex-shrink: 0;
    margin-top: auto;
}

#system-terminal-wrap .system-terminal {
    margin-top: 0;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.6rem;
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold);
}

.analysis-prediction {
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.08), rgba(232, 184, 74, 0.06));
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
}

.prediction-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    font-size: 0.85rem;
    padding: 0.35rem 0;
    padding-left: 1rem;
    position: relative;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.tips-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.tips-list li:last-child {
    border-bottom: none;
}

.analysis-odds-ref h3 {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.odds-ref-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.odd-ref {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.35rem 0.65rem;
    font-size: 0.8rem;
}

.odd-ref em {
    font-style: normal;
    color: var(--text-muted);
    margin-right: 0.35rem;
    font-size: 0.7rem;
}

/* ——— Bülten: gün filtresi + sıralama ——— */
.bulletin-day-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    padding: 0.2rem 0.5rem 0.35rem;
}

.sidebar-bulletin .bulletin-day-toolbar {
    padding: 0.2rem 5px 0.35rem;
}

.bulten-day-btn {
    flex: 1 1 calc(33.33% - 0.3rem);
    min-width: 0;
}

.bulten-day-count {
    display: inline-block;
    margin-left: 0.12rem;
    font-size: 0.58rem;
    opacity: 0.85;
    font-weight: 700;
}

.bulletin-today-lock {
    font-size: 0.72rem;
    color: var(--accent);
    padding: 0 0.75rem 0.35rem;
    font-weight: 600;
}

.bulletin-sort-toolbar {
    display: flex;
    gap: 0.35rem;
    padding: 0.35rem 0.5rem 0.5rem;
}

.sidebar-bulletin .bulletin-sort-toolbar {
    padding: 0.35rem 5px 0.45rem;
}

.sidebar-bulletin .sort-btn {
    font-size: 0.62rem;
    padding: 0.3rem 0.25rem;
}

.sidebar-bulletin .bulletin-today-lock {
    padding: 0 5px 0.25rem;
    font-size: 0.66rem;
}

.sort-btn {
    flex: 1;
    font-size: 0.68rem;
    padding: 0.35rem 0.4rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-card);
    color: var(--text-muted);
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.sort-btn:hover {
    background: var(--bg-hover);
    color: var(--text);
}

.sort-btn--active {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 200, 150, 0.1);
}

.fixture-league-heading {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--gold);
    padding: 0.5rem 0.75rem 0.25rem;
    border-top: 1px solid var(--border);
    background: rgba(232, 184, 74, 0.06);
}

.fixture-empty {
    padding: 1rem 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ——— Sağ panel: sade öneri kartı ——— */
.analysis-simple {
    margin-bottom: 0.85rem;
}

.simple-alt-grid {
    margin-top: 0.75rem;
}

.simple-alt-grid__title {
    margin: 0 0 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
}

.simple-alt-grid__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
}

.simple-alt-card {
    padding: 0.65rem 0.7rem;
    border-radius: 10px;
    border: 1px solid rgba(232, 184, 74, 0.45);
    background: linear-gradient(145deg, rgba(232, 184, 74, 0.12), rgba(0, 0, 0, 0.2));
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.simple-alt-card__badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.simple-alt-card__pick {
    margin: 0 0 0.2rem;
    font-size: 1rem;
    font-weight: 800;
    color: #f5e6b8;
    line-height: 1.2;
}

.simple-alt-card__odd {
    margin: 0 0 0.15rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.simple-alt-card__odd strong {
    color: var(--text-strong);
    font-size: 0.92rem;
}

.simple-alt-card__odd-missing {
    color: var(--text-muted);
}

.simple-alt-card__odd-hint {
    margin: 0 0 0.2rem;
    font-size: 0.68rem;
    font-weight: 600;
    color: #f0a878;
    line-height: 1.3;
}

.simple-alt-card__prob {
    margin: 0;
    font-size: 0.84rem;
    color: var(--text);
}

.simple-verdict-card--main {
    border-color: rgba(0, 200, 150, 0.5);
    box-shadow: 0 0 0 1px rgba(0, 200, 150, 0.12);
}

@media (max-width: 720px) {
    .simple-alt-grid__row {
        grid-template-columns: 1fr;
    }
}

.simple-verdict-card {
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.14), rgba(232, 184, 74, 0.06));
    border: 1px solid rgba(0, 200, 150, 0.45);
    border-radius: 10px;
    padding: 1rem 1.1rem;
}

.simple-verdict-card--empty {
    border-color: var(--border);
    background: var(--bg-card);
    color: var(--text-muted);
    font-size: 0.88rem;
}

.simple-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.simple-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0 0 0.45rem;
}

.simple-badge-pill {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    background: rgba(0, 200, 150, 0.15);
    border: 1px solid rgba(0, 200, 150, 0.35);
    color: #7eecc8;
}

.simple-pick {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
    margin: 0 0 0.4rem;
    line-height: 1.25;
}

.simple-odd {
    font-size: 0.95rem;
    color: var(--text);
    margin: 0 0 0.35rem;
}

.simple-confidence {
    font-size: 0.9rem;
    color: var(--text);
    margin: 0 0 0.3rem;
}

.simple-confidence__pct {
    color: var(--accent);
    margin-right: 0.2rem;
}

.simple-alt .simple-confidence__pct {
    color: #7eecc8;
}

.simple-all-picks {
    margin-top: 0.55rem;
    padding: 0.55rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.18);
}

.simple-all-picks__title {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.simple-all-picks__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.simple-all-picks__item {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.simple-all-picks__item:last-child {
    border-bottom: none;
}

.simple-all-picks__item--main {
    color: var(--text);
}

.simple-all-picks__odd-hint {
    font-size: 0.72rem;
    color: #f0a878;
    font-weight: 600;
}

.simple-all-picks__role {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold);
    margin-right: 0.35rem;
}

.match-row-tip {
    font-size: 0.68rem;
    color: var(--accent);
    margin: 0.15rem 0 0.25rem;
    line-height: 1.35;
}

.odd-btn .odd-pct {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--accent);
    margin-top: 0.1rem;
}

.simple-stars {
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-left: 0.25rem;
}

.simple-score {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0.25rem 0 0;
}

.simple-score-clarity {
    font-size: 0.78rem;
    color: var(--gold);
}

.simple-score-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0.15rem 0 0;
}

.simple-warn {
    font-size: 0.82rem;
    color: #e8b84a;
    margin: 0.45rem 0 0;
}

.simple-odd-notice {
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--text-muted);
    margin: 0.35rem 0 0;
    padding: 0.4rem 0.5rem;
    border-left: 3px solid var(--lion);
    background: rgba(240, 160, 48, 0.08);
    border-radius: 0 4px 4px 0;
}

.simple-disclaimer {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin: 0.5rem 0 0;
    line-height: 1.4;
}

.simple-alt {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0.5rem 0 0;
    padding: 0.45rem 0.55rem;
    border-left: 3px solid rgba(232, 184, 74, 0.5);
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0 6px 6px 0;
}

.analysis-section,
.analysis-details {
    margin-bottom: 0.65rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.12);
}

.analysis-section__title {
    margin: 0;
    padding: 0.55rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    border-bottom: 1px solid var(--border);
}

.analysis-details__summary {
    cursor: pointer;
    padding: 0.55rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    list-style: none;
}

.analysis-details__summary::-webkit-details-marker {
    display: none;
}

.analysis-details[open] .analysis-details__summary {
    color: var(--gold);
    border-bottom: 1px solid var(--border);
}

.analysis-details .poisson-block,
.analysis-details .power-block,
.analysis-section .poisson-block,
.analysis-section .power-block {
    padding: 0.65rem 0.75rem 0.75rem;
}

.top-scores--muted {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.analysis-stats--compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    padding: 0 0.75rem 0.65rem;
}

.analysis-summary-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    padding: 0 0.75rem 0.75rem;
    line-height: 1.5;
}

/* ——— Sağ panel: tahmin kahramanı (eski, geriye uyum) ——— */
.analysis-hero-top {
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.12), rgba(232, 184, 74, 0.08));
    border: 1px solid var(--accent-dim);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    margin-bottom: 0.85rem;
}

.hero-heading {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.hero-heading--secondary {
    margin-top: 0.85rem;
    color: var(--lion);
    opacity: 0.9;
}

.hero-card {
    margin-bottom: 0.5rem;
    padding: 0.45rem 0.55rem;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.2);
}

.hero-card--lead {
    border: 1px solid rgba(0, 200, 150, 0.45);
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.14), rgba(0, 0, 0, 0.25));
    padding: 0.75rem 0.85rem;
    margin-bottom: 0.65rem;
}

.hero-lead-pick {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--accent);
    margin: 0.15rem 0 0.35rem;
}

.hero-lead-meta {
    font-size: 0.88rem;
    color: var(--text);
    margin: 0;
}

.hero-lead-meta strong {
    color: var(--text-strong);
    font-size: 1rem;
}

.hero-lead-note {
    font-size: 0.72rem;
    line-height: 1.4;
    color: var(--text-muted);
    margin: 0.45rem 0 0;
}

.hero-card--primary .hero-prediction-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
}

.hero-card--opportunity {
    border-color: rgba(232, 184, 74, 0.28);
    background: rgba(0, 0, 0, 0.22);
    padding: 0.55rem 0.65rem;
    opacity: 0.95;
}

.hero-card--opportunity .hero-value-pick {
    font-size: 0.92rem;
}

.hero-value-stats--compact {
    font-size: 0.68rem;
    margin-bottom: 0.35rem;
}

.hero-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.hero-card--safe .hero-safe-text {
    font-size: 0.88rem;
    color: var(--gold);
}

.hero-card--warn .hero-warn-text {
    font-size: 0.85rem;
    color: var(--live);
}

.hero-card--value {
    border: 1px solid rgba(232, 184, 74, 0.35);
}

.hero-value-pick {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.hero-value-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem 0.75rem;
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
}

.panel-right .hero-value-stats {
    grid-template-columns: 1fr;
}

.panel-right .hero-value-explainer,
.panel-right .analysis-block p,
.panel-right .top-scores {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.panel-right .power-grid {
    grid-template-columns: 1fr;
}

.panel-right .power-bar-row {
    grid-template-columns: minmax(0, 52px) minmax(0, 1fr) 28px;
}

.panel-right .lineup-grid {
    grid-template-columns: 1fr;
}

.panel-right .analysis-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-value-stats dt {
    color: var(--text-muted);
    font-weight: 500;
}

.hero-value-stats dd {
    margin: 0;
    font-weight: 700;
    color: var(--text);
}

.hero-value-edge {
    color: var(--accent);
}

.hero-value-explainer {
    font-size: 0.72rem;
    line-height: 1.45;
    color: var(--text-muted);
    margin: 0;
    padding-top: 0.35rem;
    border-top: 1px solid var(--border);
}

.hero-ai-prob {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-strong);
    margin-top: 0.35rem;
}

/* ——— Birleşik sihirbaz bloğu ——— */
.wizard-unified {
    --wiz-ctrl-h: 28px;
    --wiz-label-h: 13px;
    --wiz-field-time: 3.95rem;
    --wiz-field-narrow: 2.45rem;
    --wiz-field-odd: 2.75rem;
    --wiz-field-btn: 3.05rem;
    --wiz-field-action: 3.65rem;
    --wiz-field-grow-max: 5.1rem;
    --wiz-quick-mbs: 6.35rem;
    --wiz-quick-saat: 5.15rem;
    --wiz-quick-btn: 3.35rem;
    --wiz-quick-value-btn: 3.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin-bottom: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-card);
    overflow: hidden;
}

.wizard-unified .coupon-wizard {
    flex-shrink: 0;
    margin: 0;
    padding: 0.45rem 0.35rem 0.3rem;
    border: none;
    border-radius: 0;
    background: transparent;
}

.wizard-unified .quick-coupon-wizard--inline {
    flex-shrink: 0;
    margin: 0;
    padding: 0.35rem;
    border-radius: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.wizard-unified .coupon-wizard-toolbar,
.wizard-unified .quick-coupon-wizard--inline {
    gap: 4px;
}

.wizard-unified .quick-coupon-wizard--inline {
    flex-wrap: nowrap;
    min-width: 0;
}

/* Kupon + Saat + butonlar — tek satır, taşma yok */
.wizard-unified .quick-coupon-wizard--inline .wizard-field--narrow {
    flex: 0 0 var(--wiz-quick-mbs);
    width: var(--wiz-quick-mbs);
}

.wizard-unified .quick-coupon-wizard--inline .wizard-field--grow {
    flex: 0 0 var(--wiz-quick-saat);
    width: var(--wiz-quick-saat);
    min-width: var(--wiz-quick-saat);
    max-width: var(--wiz-quick-saat);
}

.wizard-unified .quick-coupon-wizard--inline .wizard-field--action {
    flex: 0 0 var(--wiz-quick-btn);
    width: var(--wiz-quick-btn);
}

.wizard-unified .quick-coupon-wizard--inline .wizard-field--action:last-child {
    flex: 0 0 var(--wiz-quick-value-btn);
    width: var(--wiz-quick-value-btn);
}

.wizard-unified .quick-coupon-wizard--inline .wizard-field--narrow .wizard-control,
.wizard-unified .quick-coupon-wizard--inline .wizard-field--grow .wizard-control {
    font-size: 0.68rem;
    padding: 0 3px;
}

.wizard-unified .quick-coupon-wizard--inline .wizard-field--action .wizard-control {
    font-size: 0.67rem;
    padding: 0 3px;
    letter-spacing: -0.01em;
}

.wizard-unified .wizard-field--time {
    width: var(--wiz-field-time);
    flex: 0 0 var(--wiz-field-time);
}

.wizard-unified .wizard-field--narrow {
    width: var(--wiz-field-narrow);
    flex: 0 0 var(--wiz-field-narrow);
}

.wizard-unified .wizard-field--odd {
    width: var(--wiz-field-odd);
    flex: 0 0 var(--wiz-field-odd);
}

.wizard-unified .wizard-field--btn {
    width: var(--wiz-field-btn);
    flex: 0 0 var(--wiz-field-btn);
}

.wizard-unified .wizard-field--action {
    width: var(--wiz-field-action);
    flex: 0 0 var(--wiz-field-action);
}

.wizard-unified .wizard-field--grow {
    flex: 1 1 0;
    min-width: 2.2rem;
    max-width: var(--wiz-field-grow-max);
}

.wizard-unified input.wizard-control[type="time"] {
    font-size: 0.66rem;
    padding: 0 2px;
    letter-spacing: -0.02em;
}

.wizard-unified .coupon-wizard-toolbar .wizard-control {
    font-size: 0.68rem;
}

.wizard-unified button.wizard-control {
    font-size: 0.66rem;
    padding: 0 4px;
}

.wizard-unified .coupon-result-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    padding: 0;
    background: var(--bg-deep);
    overflow: hidden;
}

.wizard-unified .coupon-result-stack:not([hidden]) {
    flex: 1;
}

.wizard-unified .coupon-result-stack[hidden] {
    display: none !important;
    flex: 0;
}

.coupon-result-panel[hidden] {
    display: none !important;
}

/* ——— Sihirbaz ortak kontrol boyutları (tüm input/select/button) ——— */
.wizard-field {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    min-width: 0;
}

.wizard-label {
    display: block;
    height: var(--wiz-label-h);
    line-height: var(--wiz-label-h);
    margin: 0 0 3px;
    font-size: 0.58rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wizard-label--spacer {
    visibility: hidden;
}

.wizard-control {
    display: block;
    width: 100%;
    height: var(--wiz-ctrl-h) !important;
    min-height: var(--wiz-ctrl-h) !important;
    max-height: var(--wiz-ctrl-h) !important;
    box-sizing: border-box;
    margin: 0;
    padding: 0 6px;
    font-family: inherit;
    font-size: 0.72rem;
    line-height: calc(var(--wiz-ctrl-h) - 2px);
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-deep);
    color: var(--text);
    vertical-align: middle;
}

.wizard-control:focus {
    outline: none;
    border-color: var(--accent-dim);
}

input.wizard-control[type="time"] {
    padding: 0 4px;
    appearance: none;
    -webkit-appearance: none;
}

input.wizard-control[type="time"]::-webkit-calendar-picker-indicator {
    width: 14px;
    height: 14px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    opacity: 0.85;
}

input.wizard-control[type="number"] {
    padding: 0 4px;
    -moz-appearance: textfield;
    appearance: textfield;
}

input.wizard-control[type="number"]::-webkit-inner-spin-button,
input.wizard-control[type="number"]::-webkit-outer-spin-button {
    margin: 0;
}

select.wizard-control {
    padding: 0 4px;
    cursor: pointer;
}

button.wizard-control {
    padding: 0 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

button.wizard-control:disabled {
    opacity: 0.55;
    cursor: wait;
}

.wizard-control--primary {
    background: linear-gradient(135deg, var(--accent-dim), var(--accent));
    color: #0b0e14;
}

.wizard-control--guarantee {
    background: linear-gradient(135deg, var(--accent-dim), var(--accent));
    color: #0b0e14;
}

.wizard-control--value {
    background: rgba(212, 175, 55, 0.22);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.wizard-field--time {
    width: 5.1rem;
    flex: 0 0 5.1rem;
}

.wizard-field--narrow {
    width: 2.85rem;
    flex: 0 0 2.85rem;
}

.wizard-field--odd {
    width: 3.15rem;
    flex: 0 0 3.15rem;
}

.wizard-field--btn {
    width: 3.5rem;
    flex: 0 0 3.5rem;
}

.wizard-field--grow {
    flex: 1 1 0;
    min-width: 4.5rem;
}

.wizard-field--action {
    width: 3.55rem;
    flex: 0 0 3.55rem;
}

.coupon-wizard-toolbar,
.quick-coupon-wizard--inline {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    gap: 5px;
}

.quick-coupon-wizard--inline {
    padding: 0.4rem 0.45rem;
    background: var(--bg-deep);
}

/* ——— Kupon sonuç panelleri (açılır/kapanır) ——— */
.coupon-result-stack {
    margin: 0 0 0.45rem;
    flex-shrink: 0;
}

.coupon-result-stack[hidden] {
    display: none !important;
}

.wizard-unified .coupon-result-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    overflow: hidden;
}

.coupon-result-panel {
    margin-bottom: 0.3rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-deep);
    overflow: hidden;
}

.coupon-result-panel[open] {
    border-color: var(--accent-dim);
}

.coupon-result-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    padding: 0.38rem 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.coupon-result-summary::-webkit-details-marker {
    display: none;
}

.coupon-result-summary::before {
    content: "▸";
    margin-right: 0.3rem;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.coupon-result-panel[open] > .coupon-result-summary::before {
    content: "▾";
}

.coupon-result-panel--value > .coupon-result-summary {
    color: var(--gold);
}

.coupon-result-badge {
    font-size: 0.58rem;
    font-weight: 500;
    color: var(--text-muted);
}

.wizard-unified .coupon-result-panel[open] {
    flex: 1;
}

.wizard-unified .coupon-result-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0 0.5rem 0.45rem;
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.coupon-result-body {
    padding: 0 0.45rem 0.4rem;
    border-top: 1px solid var(--border);
}

.coupon-result-meta {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin: 0.35rem 0 0.28rem;
}

.wizard-unified .coupon-result-list {
    flex: 1;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
}

.coupon-result-list {
    list-style: none;
    margin: 0 0 0.28rem;
    padding: 0;
    max-height: 110px;
    overflow-y: auto;
}

.coupon-result-item {
    font-size: 0.72rem;
    padding: 0.32rem 0.38rem;
    margin-bottom: 0.22rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    background: var(--bg-card);
    line-height: 1.32;
}

.coupon-result-item:hover,
.coupon-result-item.is-active {
    border-color: var(--accent-dim);
    background: rgba(0, 200, 150, 0.06);
}

.coupon-result-pick {
    color: var(--gold);
}

.coupon-mbs-badge {
    display: inline-block;
    margin-left: 0.25rem;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #0a1a14;
    background: linear-gradient(135deg, var(--gold), #e8b040);
    vertical-align: middle;
    cursor: help;
    white-space: nowrap;
}

.coupon-mbs-note {
    color: var(--text-muted);
    font-size: 0.92em;
    font-weight: 500;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.25);
    cursor: help;
}

.coupon-result-foot {
    font-size: 0.64rem;
    color: var(--gold);
    font-weight: 600;
    margin: 0 0 0.2rem;
}

.smart-coupon--hidden {
    display: none !important;
}

/* ——— Akıllı Kupon Sihirbazı (sol dikey sütun) ——— */
.coupon-wizard {
    margin: 0;
    padding: 0.65rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    flex-shrink: 0;
}

.coupon-wizard-head h3 {
    font-size: 0.95rem;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.coupon-wizard-desc {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-bottom: 0.45rem;
    line-height: 1.3;
}

.coupon-wizard-toolbar {
    margin-bottom: 0;
}

button.wizard-control:hover {
    opacity: 0.92;
}

button.wizard-control:active {
    transform: scale(0.98);
}

.guarantee-coupon-panel {
    padding: 0.65rem;
    background: var(--bg-deep);
    border: 1px solid var(--accent-dim);
    border-radius: 8px;
    flex-shrink: 0;
}

.guarantee-panel-head {
    margin-bottom: 0.5rem;
}

.guarantee-title {
    font-size: 0.88rem;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.guarantee-meta {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.guarantee-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem;
}

.guarantee-item {
    font-size: 0.78rem;
    padding: 0.5rem 0.55rem;
    margin-bottom: 0.35rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    line-height: 1.4;
    cursor: pointer;
    background: var(--bg-card);
    transition: background 0.15s, border-color 0.15s;
}

.guarantee-item:hover,
.guarantee-item:focus-visible {
    background: var(--bg-hover);
    border-color: var(--accent-dim);
    outline: none;
}

.guarantee-item.is-active {
    border-color: var(--accent);
    background: rgba(0, 200, 150, 0.08);
}

.guarantee-pick {
    color: var(--text);
}

.guarantee-ai {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.guarantee-hint {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Akıllı Kupon — sütunun altı (sihirbaz sonucu üstte genişler) */
.left-coupon-stack .smart-coupon {
    flex: 0 0 auto;
    flex-shrink: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    max-height: 38vh;
}

.left-coupon-stack .smart-coupon.smart-coupon--hidden {
    display: none !important;
}

.left-coupon-stack .smart-coupon .coupon-list {
    flex: 1 1 auto;
    min-height: 72px;
    max-height: none;
    overflow-y: auto;
}

.left-coupon-stack .smart-coupon-head h3 {
    font-size: 0.75rem;
}

.left-coupon-stack .coupon-item {
    font-size: 0.76rem;
}

.left-coupon-stack .coupon-summary {
    font-size: 0.76rem;
}

/* ——— Kademeli senkronizasyon paneli ——— */
.sync-progress-panel {
    padding: 1.25rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--accent-dim);
    border-radius: 10px;
    margin-bottom: 0.75rem;
}

.sync-progress-title {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.sync-progress-message {
    font-size: 0.82rem;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.sync-progress-eta {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.65rem;
}

.sync-progress-bar-wrap {
    height: 10px;
    background: var(--bg-deep);
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 0.5rem;
}

.sync-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-dim), var(--accent));
    border-radius: 5px;
    transition: width 0.35s ease;
}

.sync-progress-detail {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Bültendeki kopya: yalnızca mobilde (masaüstünde analiz sütununda zaten var) */
.sync-progress-panel--bulletin-mobile {
    display: none;
}

.sync-progress-hint--bulletin {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin: 0.35rem 0 0;
    line-height: 1.35;
}

.sync-progress-pct-label {
    display: none;
}

.fixture-empty--await {
    color: var(--text-muted);
    font-size: 0.78rem;
}

@media (max-width: 1100px) {
    :root {
        --bulletin-w: 260px;
        --wizard-w-max: min(calc(var(--bulletin-w) * 1.65), 24vw);
    }
}

@media (max-width: 900px) {
    .app-layout,
    .app-layout--triple {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .sidebar,
    .sidebar-bulletin,
    .panel-wizard {
        width: 100%;
        min-width: 0;
        max-width: none;
        max-height: none;
    }

    .sidebar-bulletin {
        max-height: 42vh;
    }

    .panel-wizard {
        max-height: 48vh;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .coupon-wizard-toolbar,
    .quick-coupon-wizard--inline {
        flex-wrap: wrap;
    }

    .wizard-field--time,
    .wizard-field--narrow,
    .wizard-field--odd,
    .wizard-field--btn,
    .wizard-field--action {
        flex: 1 1 auto;
        width: auto;
        min-width: 2.75rem;
    }

    .analysis-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ——— Üst menü / profil ——— */
.site-topbar {
    flex-shrink: 0;
    height: 48px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-panel);
    z-index: 100;
}

.site-topbar__inner {
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 0.75rem;
}

.site-topbar__brand {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-strong);
    text-decoration: none;
    background: linear-gradient(135deg, var(--gold), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.site-topbar__nav {
    display: flex;
    gap: 0.35rem;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
}

.site-topbar__link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    padding: 0.35rem 0.5rem;
    border-radius: 6px;
    white-space: nowrap;
}

.site-topbar__link:hover {
    color: var(--text);
    background: var(--bg-hover);
}

.site-topbar__link--premium-teaser {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.site-topbar__premium-tag {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--gold), #c9a227);
    color: #1a1208;
    line-height: 1.2;
}

.site-topbar__actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: auto;
}

.site-topbar__btn {
    font-size: 0.78rem;
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid var(--border);
    color: var(--text);
    background: transparent;
    white-space: nowrap;
}

.site-topbar__btn--primary {
    background: var(--accent);
    border-color: var(--accent-dim);
    color: #041510;
    font-weight: 600;
}

.site-topbar__btn--ghost:hover {
    border-color: var(--accent);
}

.profile-menu {
    position: relative;
}

.profile-menu__trigger {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.2rem 0.45rem 0.2rem 0.2rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg-card);
    color: var(--text);
    cursor: pointer;
    max-width: 11rem;
}

.profile-menu__avatar {
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), #1a6fd4);
    color: #fff;
}

.profile-menu__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    line-height: 1.15;
}

.profile-menu__name {
    font-size: 0.72rem;
    font-weight: 600;
    max-width: 6.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-menu__tier {
    font-size: 0.62rem;
    color: var(--text-muted);
}

.profile-menu__tier--premium {
    color: var(--gold);
}

.profile-menu__tier--standart {
    color: var(--accent);
}

.profile-menu__chevron {
    font-size: 0.65rem;
    opacity: 0.7;
}

.profile-menu__dropdown {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    min-width: 11.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    padding: 0.35rem;
    z-index: 200;
}

.profile-menu__dropdown[hidden] {
    display: none !important;
}

.profile-menu__dropdown-head {
    padding: 0.45rem 0.5rem 0.55rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.78rem;
}

.profile-menu__tier-badge {
    font-size: 0.68rem;
    font-weight: 600;
}

.profile-menu__item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.45rem 0.5rem;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: var(--text);
    font-size: 0.78rem;
    text-decoration: none;
    cursor: pointer;
}

.profile-menu__item:hover {
    background: var(--bg-hover);
}

.profile-menu__item--danger {
    color: #ff6b7a;
}

.profile-menu__item--admin {
    color: var(--accent);
    font-weight: 700;
    border-bottom: 1px solid var(--border);
}

.profile-menu__item--admin:hover {
    background: rgba(0, 200, 150, 0.1);
}

.site-shell--app {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

.site-shell--app .app-layout {
    flex: 1;
    height: auto;
    min-height: 0;
}

/* ——— Auth sayfaları ——— */
.page-auth .auth-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: radial-gradient(ellipse at top, #15202e 0%, var(--bg-deep) 60%);
}

.auth-shell__brand {
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-shell__foot {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.auth-shell__foot a {
    color: var(--accent);
}

.auth-card {
    width: 100%;
    max-width: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.35rem 1.25rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.auth-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.auth-card__sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.auth-field label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.auth-input {
    width: 100%;
    padding: 0.55rem 0.65rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-panel);
    color: var(--text);
    font-size: 0.9rem;
}

.auth-input:focus {
    outline: none;
    border-color: var(--accent);
}

.auth-btn {
    width: 100%;
    padding: 0.6rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
}

.auth-btn--primary {
    background: var(--accent);
    color: #041510;
}

.auth-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-form__error {
    color: #ff6b7a;
    font-size: 0.78rem;
}

.auth-form__success {
    color: var(--accent);
    font-size: 0.78rem;
}

.auth-card__links {
    margin-top: 0.85rem;
    font-size: 0.78rem;
    text-align: center;
    color: var(--text-muted);
}

.auth-card__links a {
    color: var(--accent);
}

/* ——— Paywall ——— */
.bulletin-list-wrap,
.wizard-unified {
    position: relative;
}

.sidebar-bulletin .bulletin-list-wrap {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sidebar-bulletin .fixture-list {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.bulletin-free-banner {
    flex-shrink: 0;
    margin: 0 5px 0.4rem;
    padding: 0.45rem 0.5rem;
    border-radius: 8px;
    background: rgba(232, 184, 74, 0.1);
    border: 1px solid rgba(240, 160, 48, 0.28);
}

.bulletin-free-banner__badge {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1a1208;
    background: linear-gradient(135deg, var(--gold), var(--lion));
    padding: 0.12rem 0.35rem;
    border-radius: 4px;
    margin-bottom: 0.3rem;
}

.bulletin-free-banner__text {
    font-size: 0.68rem;
    line-height: 1.4;
    color: #c8bda8;
    margin: 0 0 0.35rem;
}

.bulletin-free-banner__text strong {
    color: var(--text-strong);
}

.bulletin-free-banner__cta {
    display: inline-block;
    font-size: 0.66rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}

.bulletin-free-banner__cta:hover {
    text-decoration: underline;
}

.wizard-free-hint {
    margin: 0.35rem 0 0;
    padding: 0.4rem 0.45rem;
    font-size: 0.68rem;
    line-height: 1.35;
    color: var(--text-muted);
    border: 1px dashed var(--border);
    border-radius: 6px;
    text-align: center;
}

.wizard-locked-zone {
    position: relative;
}

.wizard-locked-zone--active .coupon-wizard,
.wizard-locked-zone--active .quick-coupon-wizard {
    pointer-events: none;
    filter: blur(4px);
    opacity: 0.5;
}

.paywall-overlay--wizard .paywall-overlay__blur {
    backdrop-filter: blur(5px);
}

.wizard-teaser {
    margin-top: 0.5rem;
    padding: 0.55rem 0.5rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-card);
}

.wizard-teaser--free {
    margin-top: 0;
    margin-bottom: 0.65rem;
    padding: 0.65rem 0.6rem;
    border: 1px solid rgba(0, 200, 150, 0.4);
    background: linear-gradient(180deg, rgba(0, 200, 150, 0.1), var(--bg-card));
    flex-shrink: 0;
}

.wizard-teaser[hidden] {
    display: none !important;
}

.wizard-teaser__loading {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0.5rem 0.35rem;
    list-style: none;
}

.wizard-free-upgrade {
    padding: 0.55rem 0.6rem;
    border-radius: 8px;
    border: 1px dashed rgba(232, 184, 74, 0.35);
    background: rgba(232, 184, 74, 0.06);
    text-align: center;
    flex-shrink: 0;
}

.wizard-free-upgrade__text {
    margin: 0 0 0.45rem;
    font-size: 0.7rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.wizard-free-upgrade__text strong {
    color: var(--text-strong);
}

.wizard-free-upgrade__cta {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
    color: #1a1208;
    background: linear-gradient(135deg, var(--gold), var(--lion));
}

.wizard-free-upgrade__cta:hover {
    filter: brightness(1.06);
}

.wizard-teaser__label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--accent);
    margin-bottom: 0.4rem;
}

.wizard-teaser__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.wizard-teaser__item {
    padding: 0.45rem 0.4rem;
    border-radius: 6px;
    background: var(--bg-hover);
    border: 1px solid rgba(0, 200, 150, 0.25);
    font-size: 0.78rem;
    line-height: 1.35;
    cursor: pointer;
}

.wizard-teaser__item:hover {
    border-color: var(--accent);
}

.wizard-teaser__item .coupon-result-pick {
    color: var(--gold);
}

.wizard-teaser__ghost {
    padding: 0.4rem;
    border-radius: 6px;
    background: var(--bg-panel);
    filter: blur(5px);
    opacity: 0.35;
    pointer-events: none;
    user-select: none;
    font-size: 0.7rem;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.wizard-teaser__ghost-time,
.wizard-teaser__ghost-teams,
.wizard-teaser__ghost-pick {
    display: block;
    color: var(--text-muted);
}

.wizard-teaser__empty {
    font-size: 0.72rem;
    color: var(--text-muted);
    padding: 0.35rem 0;
}

.wizard-teaser__hint {
    margin: 0.45rem 0 0;
    font-size: 0.68rem;
    color: var(--text-muted);
    text-align: center;
}

.paywall-overlay {
    position: absolute;
    inset: 0;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem;
    pointer-events: auto;
}

.paywall-overlay[hidden] {
    display: none !important;
}

.paywall-overlay__blur {
    position: absolute;
    inset: 0;
    background: rgba(11, 14, 20, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: inherit;
}

.paywall-overlay--bulletin {
    top: 35%;
}

.paywall-overlay--value {
    align-items: flex-end;
    padding-bottom: 0.35rem;
}

.paywall-overlay__card {
    position: relative;
    z-index: 1;
    max-width: 18rem;
    padding: 0.85rem 0.75rem;
    text-align: left;
    background: rgba(24, 29, 40, 0.95);
    border: 1px solid rgba(232, 184, 74, 0.45);
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.paywall-overlay__title {
    margin: 0 0 0.45rem;
    font-size: 0.78rem;
    line-height: 1.45;
    font-weight: 600;
    color: var(--text-strong);
}

.paywall-overlay__lead {
    margin: 0 0 0.4rem;
    font-size: 0.7rem;
    line-height: 1.4;
    color: var(--text-muted);
    text-align: left;
}

.paywall-overlay__features {
    margin: 0 0 0.55rem;
    padding-left: 1rem;
    text-align: left;
    font-size: 0.68rem;
    line-height: 1.45;
    color: var(--text);
}

.paywall-overlay__features li {
    margin-bottom: 0.2rem;
}

/* Paket karşılaştırma — sihirbaz sütunu */
.tier-compare {
    margin-top: 0.55rem;
    padding: 0.6rem 0.65rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.22);
    flex-shrink: 0;
}

.tier-compare--standart {
    border-color: rgba(232, 184, 74, 0.35);
    background: linear-gradient(145deg, rgba(232, 184, 74, 0.08), rgba(0, 0, 0, 0.2));
}

.tier-compare__heading {
    margin: 0 0 0.3rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--accent);
}

.tier-compare__heading--gold {
    margin-top: 0.45rem;
    color: var(--gold);
}

.tier-compare__heading--accent {
    margin-top: 0.45rem;
    color: var(--accent);
}

.tier-compare__list {
    margin: 0 0 0.25rem;
    padding-left: 1rem;
    font-size: 0.68rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.tier-compare__list strong {
    color: var(--text-strong);
    font-weight: 600;
}

.tier-compare__list--premium {
    color: #e8d4a8;
}

.tier-compare__tag {
    display: inline-block;
    margin-left: 0.2rem;
    padding: 0.05rem 0.3rem;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #1a1208;
    background: rgba(232, 184, 74, 0.75);
    border-radius: 3px;
    vertical-align: middle;
}

.tier-compare__note {
    margin: 0.4rem 0 0.45rem;
    font-size: 0.65rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.tier-compare__note strong {
    color: var(--gold);
}

.tier-compare__cta {
    display: block;
    text-align: center;
    padding: 0.35rem 0.5rem;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    text-decoration: none;
    color: #0a1a14;
    background: linear-gradient(135deg, var(--accent), #00a67d);
}

.tier-compare__cta--gold {
    color: #1a1208;
    background: linear-gradient(135deg, var(--gold), var(--lion));
}

.tier-compare__cta:hover {
    filter: brightness(1.08);
}

.paywall-overlay__btn {
    display: block;
    margin-top: 0.15rem;
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold), #d4a035);
    color: #1a1200;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
}

.wizard-control--locked,
.wizard-control:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wizard-control--locked[aria-disabled="true"] {
    cursor: pointer;
    opacity: 0.72;
}

.wizard-control--locked[aria-disabled="true"]:hover {
    opacity: 0.9;
}

/* ——— Fiyat vitrini ——— */
.page-landing .landing {
    min-height: auto;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
}

.page-landing .landing.landing--premium {
    min-height: auto;
    justify-content: flex-start;
    align-items: stretch;
}

/* İçerik koruması — form alanları hariç seçim/kopya kısıtı */
body.site-protected {
    -webkit-user-select: none;
    user-select: none;
}

body.site-protected input,
body.site-protected textarea,
body.site-protected select,
body.site-protected [contenteditable="true"],
body.site-protected .allow-select {
    -webkit-user-select: text;
    user-select: text;
}

.page-pricing {
    min-height: calc(100vh - 48px);
}

.pricing-page {
    padding: 1.5rem 1rem 2.5rem;
}

.pricing-vitrin {
    max-width: 960px;
    margin: 0 auto;
}

.pricing-vitrin__head {
    text-align: center;
    margin-bottom: 1.25rem;
}

.pricing-vitrin__title {
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
}

.pricing-vitrin__sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pricing-vitrin__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.pricing-card {
    position: relative;
    padding: 1rem 0.85rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-card--premium {
    border-color: rgba(232, 184, 74, 0.55);
    box-shadow: 0 0 0 1px rgba(232, 184, 74, 0.15);
}

.pricing-card--current {
    outline: 2px solid var(--accent);
}

.pricing-card__badge {
    align-self: flex-start;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    background: var(--bg-hover);
    color: var(--text-muted);
}

.pricing-card__badge--gold {
    background: rgba(232, 184, 74, 0.15);
    color: var(--gold);
}

.pricing-card__name {
    font-size: 1rem;
}

.pricing-card__price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent);
}

.pricing-card__features {
    list-style: none;
    font-size: 0.84rem;
    color: var(--text-muted);
    flex: 1;
    line-height: 1.45;
}

.pricing-card__features li {
    padding: 0.2rem 0;
    padding-left: 1rem;
    position: relative;
}

.pricing-card__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* ——— Premium paket CTA butonları ——— */
.pricing-card__foot {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: auto;
    padding-top: 0.65rem;
}

.pricing-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    min-height: 3.35rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-family: inherit;
    text-decoration: none !important;
    border: 1px solid transparent;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s ease,
        border-color 0.2s ease, background 0.2s ease;
}

.pricing-cta:link,
.pricing-cta:visited,
.pricing-cta:hover,
.pricing-cta:active,
.pricing-cta:focus-visible {
    text-decoration: none !important;
}

.pricing-cta:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.pricing-cta--buy {
    background: linear-gradient(165deg, #14ecc0 0%, #00c896 42%, #008f6b 100%);
    color: #032218 !important;
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 12px 32px -10px rgba(0, 200, 150, 0.65),
        0 4px 12px rgba(0, 0, 0, 0.35);
}

.pricing-cta--buy::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, transparent 48%);
    pointer-events: none;
}

.pricing-cta--buy.pricing-cta--gold {
    background: linear-gradient(165deg, #ffe9a8 0%, #e8b84a 40%, #c9922e 100%);
    color: #1f1404 !important;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 12px 32px -10px rgba(232, 184, 74, 0.55),
        0 4px 12px rgba(0, 0, 0, 0.35);
}

.pricing-cta--outline {
    min-height: 2.75rem;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--text) !important;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pricing-cta--outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.26);
    color: var(--text-strong) !important;
}

.pricing-cta--buy:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        0 16px 36px -8px rgba(0, 200, 150, 0.7),
        0 6px 16px rgba(0, 0, 0, 0.4);
}

.pricing-cta--buy.pricing-cta--gold:hover {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        0 16px 36px -8px rgba(232, 184, 74, 0.6),
        0 6px 16px rgba(0, 0, 0, 0.4);
}

.pricing-cta--outline:hover {
    transform: translateY(-1px);
}

.pricing-cta:active {
    transform: translateY(0) scale(0.99);
}

.pricing-cta__icon {
    width: 1.35rem;
    height: 1.35rem;
    flex-shrink: 0;
    opacity: 0.92;
}

.pricing-cta__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.12rem;
    flex: 1;
    min-width: 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

.pricing-cta__copy strong {
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.15;
}

.pricing-cta__copy small {
    font-size: 0.68rem;
    font-weight: 500;
    opacity: 0.88;
    line-height: 1.25;
}

.pricing-cta__chev {
    flex-shrink: 0;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 300;
    opacity: 0.75;
    position: relative;
    z-index: 1;
}

.pricing-cta--full {
    margin-top: auto;
}

.pricing-pay-info {
    max-width: 52rem;
    margin: 1.5rem auto 0;
    padding: 0 1rem;
}

.pricing-pay-info__title {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    margin: 0 0 0.75rem;
}

.pricing-pay-info__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

@media (max-width: 700px) {
    .pricing-pay-info__grid {
        grid-template-columns: 1fr;
    }
}

.pricing-pay-info__card {
    padding: 0.75rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-card);
    font-size: 0.94rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.pricing-pay-info__card h3 {
    font-size: 0.98rem;
    color: var(--text-strong);
    margin: 0 0 0.4rem;
}

.pricing-pay-info__card ol,
.pricing-pay-info__card ul {
    margin: 0;
    padding-left: 1.1rem;
}

.pricing-pay-info__card--highlight {
    border-color: rgba(0, 200, 150, 0.35);
    background: rgba(0, 200, 150, 0.06);
}

.pricing-faq {
    max-width: 40rem;
    margin: 1.25rem auto 0;
    padding: 0 1rem 1rem;
}

.pricing-faq__title {
    font-size: 1.16rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 0.6rem;
    text-align: center;
}

.pricing-page .pricing-contact-note {
    max-width: 40rem;
    margin: 1rem auto 2rem;
    padding: 0 1rem;
    text-align: center;
}

.pricing-contact-note__btn--secondary {
    background: transparent;
    border: 1px solid rgba(37, 211, 102, 0.5);
    color: #25d366;
}

.pricing-checkout-placeholder {
    max-width: 560px;
    margin: 1.5rem auto 0;
    padding: 1rem;
    border: 1px dashed var(--border);
    border-radius: 8px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.bulletin-limit-notice {
    font-size: 0.7rem;
    margin: 0 0 0.4rem;
    padding: 0.35rem 0.5rem;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 4px;
}

.bulletin-limit-notice a {
    color: var(--accent);
    font-weight: 600;
}

/* ——— Premium landing & yasal uyarı ——— */
.page-landing.page-premium {
    display: flex;
    flex-direction: column;
    min-height: auto;
}

.page-premium .landing--premium {
    flex: 1 0 auto;
    width: 100%;
    padding: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(240, 160, 48, 0.12), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 20%, rgba(0, 200, 150, 0.08), transparent 50%),
        var(--bg-deep);
    position: relative;
}

.landing-main {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 1.1rem 1.25rem 1.5rem;
}

.landing__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 30% 20%, rgba(232, 184, 74, 0.06), transparent 40%);
}

.landing-hero {
    text-align: center;
    margin: 0 auto 1.75rem;
    padding: 0 0.5rem 1.5rem;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 40rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-hero__eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lion);
    margin-bottom: 0.2rem;
}

.landing-hero__title {
    margin: 0;
}

.landing-hero__brand {
    display: block;
    font-size: clamp(1.85rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    background: linear-gradient(135deg, #fff8e8, var(--gold), var(--lion));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-hero__seo-line {
    display: block;
    margin-top: 0.35rem;
    font-size: clamp(0.72rem, 2.2vw, 0.88rem);
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
}

.landing-seo-intro {
    max-width: 40rem;
    margin: 1.1rem auto 0;
    padding: 0 0.5rem;
    text-align: center;
}

.landing-seo-intro__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 0.45rem;
}

.landing-seo-intro p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.landing-hero__tagline {
    color: var(--text-muted);
    margin: 0.75rem auto 0;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 34rem;
}

.landing-hero__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.15rem;
    margin-bottom: 0;
}

.landing-hero__cta {
    padding: 0.6rem 1.35rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.88rem;
    transition: transform 0.15s, box-shadow 0.2s;
}

.landing-hero__cta--primary {
    background: linear-gradient(135deg, var(--gold), var(--lion));
    color: #1a1208;
    box-shadow: 0 4px 20px rgba(240, 160, 48, 0.25);
}

.landing-hero__cta--ghost {
    border: 1px solid var(--border);
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
}

.landing-hero__cta--premium-teaser {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    justify-content: center;
}

.landing-hero__cta-badge {
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.45rem;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--gold), #c9a227);
    color: #1a1208;
    line-height: 1;
}

.landing-hero__cta:hover {
    transform: translateY(-2px);
}

.sport-nav--premium {
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.page-landing .pricing-vitrin {
    margin-top: 0.25rem;
}

.page-landing .pricing-vitrin__head {
    margin-bottom: 1rem;
    padding: 0 0.25rem;
}

.page-landing .pricing-vitrin__title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.page-landing .pricing-vitrin__sub {
    font-size: 0.8rem;
    line-height: 1.45;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.page-landing .pricing-vitrin__grid {
    gap: 0.9rem;
}

.page-landing .pricing-card {
    padding: 0.9rem 0.8rem;
    gap: 0.45rem;
}

.page-landing .pricing-card__price {
    font-size: 1.15rem;
}

.page-landing .pricing-card__features {
    font-size: 0.7rem;
}

.page-landing .pricing-card__tagline {
    font-size: 0.72rem;
    margin: 0.2rem 0 0.4rem;
}

/* Genişletilmiş yasal footer */
.site-legal-footer {
    flex-shrink: 0;
    margin-top: auto;
    border-top: 1px solid rgba(240, 160, 48, 0.22);
    background: linear-gradient(180deg, rgba(10, 11, 15, 0.97), #08090c);
}

.site-legal-footer__inner {
    max-width: 920px;
    margin: 0 auto;
    padding: 1.1rem 1.25rem 1.35rem;
}

.site-legal-footer__title {
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lion);
    margin-bottom: 0.65rem;
}

.site-legal-footer__list {
    list-style: none;
    counter-reset: legal-item;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.site-legal-footer__list li {
    counter-increment: legal-item;
    position: relative;
    padding-left: 1.65rem;
    font-size: 0.9rem;
    line-height: 1.58;
    color: #c8bda8;
}

.site-legal-footer__list li::before {
    content: counter(legal-item) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--gold);
    font-size: 0.9rem;
}

.site-legal-footer__list strong {
    color: #e8dcc4;
    font-weight: 600;
}

.site-legal-footer__copy {
    margin-top: 0.85rem;
    padding-top: 0.65rem;
    border-top: 1px solid var(--border);
    font-size: 0.84rem;
    color: var(--text-muted);
    text-align: center;
}

@media (max-width: 640px) {
    .landing-main {
        padding: 0.85rem 1rem 1.25rem;
    }

    .landing-hero {
        margin-bottom: 1.35rem;
        padding-bottom: 1.25rem;
    }

    .landing-hero__brand {
        font-size: 1.75rem;
    }

    .landing-hero__tagline {
        font-size: 0.82rem;
        margin-top: 0.6rem;
    }

    .landing-hero__actions {
        margin-top: 1rem;
        gap: 0.6rem;
    }

    .landing-hero__cta {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 0.6rem 1rem;
    }

    .page-landing .pricing-vitrin__head {
        margin-bottom: 0.85rem;
    }

    .site-legal-footer__inner {
        padding: 0.9rem 0.85rem 1.1rem;
    }

    .site-legal-footer__list li {
        font-size: 0.78rem;
    }
}

.legal-banner {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    max-width: 960px;
    margin: 1.25rem auto 0;
    padding: 0.75rem 1rem;
    background: rgba(255, 180, 60, 0.08);
    border: 1px solid rgba(240, 160, 48, 0.25);
    border-radius: 8px;
    font-size: 0.94rem;
    line-height: 1.55;
    color: #d4c4a8;
}

.legal-banner__text {
    font-size: 0.94rem;
    line-height: 1.55;
}

.legal-banner__icon {
    flex-shrink: 0;
    font-size: 1rem;
}

.pricing-card__tagline {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0.35rem 0 0.75rem;
    min-height: 2.4em;
}

.pricing-card__price--gold {
    color: var(--gold);
}


/* Uygulama içi üst paket çubuğu */
.membership-upgrade-bar {
    flex-shrink: 0;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(90deg, rgba(22, 25, 34, 0.98), rgba(28, 32, 44, 0.98));
}

.membership-upgrade-bar__inner {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    padding: 0.4rem 0.75rem;
}

.membership-upgrade-bar__badge {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    white-space: nowrap;
}

.membership-upgrade-bar--free .membership-upgrade-bar__badge {
    color: #1a1208;
    background: linear-gradient(135deg, #9aa3b5, #c5cdd8);
}

.membership-upgrade-bar--standart .membership-upgrade-bar__badge {
    color: #0a1a14;
    background: linear-gradient(135deg, var(--accent), #00a67d);
}

.membership-upgrade-bar__text {
    flex: 1;
    min-width: 12rem;
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.35;
    color: var(--text-muted);
}

.membership-upgrade-bar__text strong {
    color: var(--text-strong);
    font-weight: 600;
}

.membership-upgrade-bar__cta {
    flex-shrink: 0;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    text-decoration: none;
    color: #0a1a14;
    background: linear-gradient(135deg, var(--accent), #00a67d);
    white-space: nowrap;
}

.membership-upgrade-bar__cta--gold {
    color: #1a1208;
    background: linear-gradient(135deg, var(--gold), var(--lion));
}

.membership-upgrade-bar__cta:hover {
    filter: brightness(1.08);
}

@media (max-width: 768px) {
    .membership-upgrade-bar__inner {
        padding: 0.35rem 0.5rem;
    }

    .membership-upgrade-bar__text {
        flex: 1 1 100%;
        min-width: 0;
    }
}

.pricing-card__contact-hint {
    margin-top: 0.45rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: center;
}

.pricing-card--standart {
    border-color: rgba(0, 200, 150, 0.35);
}

.pricing-card--premium {
    border-color: rgba(232, 184, 74, 0.45);
    box-shadow: 0 0 40px rgba(232, 184, 74, 0.08);
}

.pricing-page__intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 1.5rem;
    padding: 1.5rem 1rem 0;
}

.pricing-page__intro h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-page__intro p {
    font-size: 0.95rem;
    line-height: 1.58;
    color: var(--text-muted);
}

.pricing-contact-note {
    max-width: 520px;
    margin: 2rem auto;
    padding: 1.25rem;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.pricing-contact-note__btn {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.pricing-contact-note p,
.pricing-page .pricing-contact-note p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.pricing-contact-note h2,
.pricing-page .pricing-contact-note h2 {
    font-size: 1.05rem;
}

.pricing-contact-note__phone {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ——— Mobil uygulama: sekme düzeni (bülten / kupon / analiz) ——— */
.mobile-app-tabs {
    display: none;
}

@media (max-width: 768px) {
    .site-topbar__nav {
        display: none;
    }

    .profile-menu__meta {
        display: none;
    }

    .pricing-vitrin__grid {
        grid-template-columns: 1fr;
    }

    .site-shell--app {
        height: 100dvh;
        min-height: 100dvh;
        padding-bottom: calc(3.85rem + env(safe-area-inset-bottom, 0px));
    }

    .site-shell--app .legal-banner {
        display: none;
    }

    .site-shell--app .site-topbar {
        height: 44px;
    }

    .site-shell--app .app-layout,
    .site-shell--app .app-layout--triple {
        flex: 1;
        flex-direction: column;
        min-height: 0;
        height: auto;
        max-height: none;
        overflow: hidden;
    }

    .site-shell--app .app-mobile-pane {
        display: none !important;
        flex: 1 1 auto;
        min-height: 0;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        max-height: none !important;
        overflow: hidden;
        border-right: none;
        border-bottom: none;
    }

    .site-shell--app .app-mobile-pane.mobile-pane--active {
        display: flex !important;
        flex-direction: column;
    }

    .site-shell--app .sidebar-bulletin.mobile-pane--active {
        border-bottom: 1px solid var(--border);
    }

    .site-shell--app .sidebar-bulletin.mobile-pane--active,
    .site-shell--app .panel-wizard.mobile-pane--active,
    .site-shell--app .panel-right.mobile-pane--active {
        flex-direction: column;
    }

    .site-shell--app .sidebar-brand {
        padding: 4px 8px;
    }

    .site-shell--app .sidebar-nav {
        padding: 0.25rem 0.35rem;
    }

    /* Mobil bülten: senkron paneli üstte sabit kalır; kayan alan yalnızca maç listesi */
    .site-shell--app .sidebar-bulletin .bulletin-list-wrap {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-height: 0;
        overflow: hidden;
    }

    .site-shell--app .sidebar-bulletin .bulletin-list-wrap > .sync-progress-panel--bulletin-mobile {
        flex-shrink: 0;
    }

    .site-shell--app .sidebar-bulletin .fixture-list {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .site-shell--app .panel-wizard.mobile-pane--active .left-coupon-stack {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0.4rem;
    }

    .site-shell--app .panel-right.mobile-pane--active {
        flex: 1;
        min-height: 0;
    }

    .site-shell--app .panel-right-scroll {
        flex: 1;
        min-height: 0;
        min-width: 0;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0.65rem 0.75rem;
    }

    .site-shell--app .match-row .odds-row {
        flex-wrap: wrap;
    }

    .mobile-app-tabs {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 200;
        background: var(--bg-panel);
        border-top: 1px solid var(--border);
        padding: 0.4rem 0.4rem calc(0.4rem + env(safe-area-inset-bottom, 0px));
        gap: 0.35rem;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
    }

    .mobile-app-tabs__btn {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.2rem;
        min-height: 3.35rem;
        padding: 0.4rem 0.25rem;
        border: none;
        border-radius: 10px;
        background: transparent;
        color: rgba(165, 172, 186, 0.92);
        font-size: 0.68rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    }

    .mobile-app-tabs__btn--active {
        color: var(--accent-bright, var(--accent));
        background: rgba(0, 200, 150, 0.2);
        font-weight: 800;
        box-shadow:
            inset 0 0 0 1px rgba(0, 230, 170, 0.45),
            0 0 14px rgba(0, 200, 150, 0.15);
    }

    .mobile-app-tabs__btn:not(.mobile-app-tabs__btn--active) .mobile-app-tabs__label {
        color: rgba(148, 156, 168, 0.95);
    }

    .mobile-app-tabs__btn--active .mobile-app-tabs__label {
        color: inherit;
    }

    .mobile-app-tabs__icon {
        font-size: 1.52rem;
        line-height: 1;
        display: block;
    }

    .mobile-app-tabs__btn:not(.mobile-app-tabs__btn--active) .mobile-app-tabs__icon {
        filter: grayscale(1) brightness(0.72);
        opacity: 0.82;
    }

    .mobile-app-tabs__btn--active .mobile-app-tabs__icon {
        filter: none;
        opacity: 1;
        transform: scale(1.06);
    }

    .site-shell--app .sync-progress-panel--bulletin-mobile .sync-progress-pct-label {
        display: block;
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--accent-bright, var(--accent));
        margin: 0.25rem 0 0.15rem;
        text-align: center;
    }

    .site-shell--app .sync-progress-panel--bulletin-mobile {
        display: block;
        margin: 0.35rem 0.25rem 0.5rem;
        padding: 0.65rem 0.6rem;
        flex-shrink: 0;
    }

    .site-shell--app .sync-progress-panel--bulletin-mobile .sync-progress-inner {
        padding: 0;
    }

    .site-shell--app .sync-progress-panel--bulletin-mobile .sync-progress-title {
        font-size: 0.78rem;
        margin-bottom: 0.35rem;
    }

    .site-shell--app .sync-progress-panel--bulletin-mobile .sync-progress-message,
    .site-shell--app .sync-progress-panel--bulletin-mobile .sync-progress-eta {
        font-size: 0.68rem;
        margin-bottom: 0.25rem;
    }

    .site-shell--app .sync-progress-panel--bulletin-mobile .sync-progress-eta {
        font-size: 0.72rem;
    }

    .site-shell--app .sync-progress-panel--bulletin-mobile .sync-progress-bar-wrap {
        height: 8px;
        margin-bottom: 0.35rem;
    }

    .site-shell--app .sync-progress-panel--bulletin-mobile .sync-progress-detail {
        font-size: 0.65rem;
    }

    .site-shell--app .sync-progress-panel--bulletin-mobile .sync-progress-hint--bulletin {
        font-size: 0.68rem;
    }
}

@media (max-width: 768px) {
    .site-shell--app .sidebar-bulletin,
    .site-shell--app .panel-wizard {
        max-height: none;
    }
}

/* ——— Bilgi / Yasal içerik sayfaları ——— */
.page-content {
    background: var(--bg-deep);
    min-height: calc(100vh - 52px);
}

.content-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 1.25rem 1rem 2.5rem;
}

.content-page__breadcrumb {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.content-page__breadcrumb a {
    color: var(--accent);
    text-decoration: none;
}

.content-page__breadcrumb a:hover {
    text-decoration: underline;
}

.content-page__hero h1 {
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    font-weight: 800;
    color: var(--text-strong);
    line-height: 1.25;
    margin: 0 0 0.55rem;
}

.content-page__lead {
    font-size: 1.02rem;
    line-height: 1.58;
    color: var(--text-muted);
    margin: 0 0 1.25rem;
}

.content-section {
    margin-bottom: 1.35rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid var(--border);
}

.content-section h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 0.5rem;
}

.content-section p,
.content-section li {
    font-size: 0.98rem;
    line-height: 1.58;
    color: var(--text);
    margin: 0 0 0.45rem;
}

.content-steps,
.content-list {
    margin: 0.35rem 0 0.5rem 1.1rem;
    padding: 0;
}

.content-note {
    font-size: 0.93rem !important;
    color: var(--text-muted) !important;
    font-style: italic;
}

.content-section--faq h2 {
    margin-bottom: 0.65rem;
}

.content-faq__item {
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 0.4rem;
    background: var(--bg-card);
    overflow: hidden;
}

.content-faq__item summary {
    cursor: pointer;
    list-style: none;
    padding: 0.55rem 0.65rem;
}

.content-faq__item summary::-webkit-details-marker {
    display: none;
}

.content-faq__q {
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--text-strong);
    margin: 0;
    display: inline;
}

.content-faq__a {
    font-size: 0.94rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0;
    padding: 0 0.65rem 0.6rem;
    border-top: 1px solid var(--border);
}

.content-page__foot {
    margin-top: 1rem;
    text-align: center;
}

.content-page__foot p {
    font-size: 0.94rem;
    color: var(--text-muted);
}

.content-page__foot a {
    color: var(--accent);
}

.content-page__cta {
    display: inline-block;
    margin-top: 0.65rem;
    padding: 0.45rem 1rem;
    border-radius: 8px;
    font-size: 0.96rem;
    font-weight: 700;
    text-decoration: none;
    color: #1a1208;
    background: linear-gradient(135deg, var(--gold), var(--lion));
}

.content-page__copy {
    margin-top: 0.5rem;
    font-size: 0.88rem;
}

.site-legal-footer__links {
    margin-top: 0.65rem;
    font-size: 0.88rem;
}

.site-topbar__link--active {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}

.site-legal-footer__links a {
    color: var(--accent);
    text-decoration: none;
}

.site-legal-footer__links a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .site-topbar__nav {
        flex-wrap: wrap;
        gap: 0.15rem 0.35rem;
    }

    .site-topbar__link {
        font-size: 0.68rem;
        padding: 0.2rem 0.35rem;
    }
}

/* Fiyat CTA — yüksek özgüllük (eski önbellek / genel link stillerine karşı) */
.pricing-vitrin a.pricing-cta.pricing-cta--buy,
.pricing-vitrin a.pricing-cta.pricing-cta--buy:visited {
    background: linear-gradient(165deg, #14ecc0 0%, #00c896 42%, #008f6b 100%) !important;
    color: #032218 !important;
}

.pricing-vitrin a.pricing-cta.pricing-cta--buy.pricing-cta--gold,
.pricing-vitrin a.pricing-cta.pricing-cta--buy.pricing-cta--gold:visited {
    background: linear-gradient(165deg, #ffe9a8 0%, #e8b84a 40%, #c9922e 100%) !important;
    color: #1f1404 !important;
}

.pricing-vitrin a.pricing-cta.pricing-cta--outline,
.pricing-vitrin a.pricing-cta.pricing-cta--outline:visited {
    color: #eceff6 !important;
    background: rgba(255, 255, 255, 0.06) !important;
}

/* ——— Yönetim paneli (/yonetim) ——— */
body.page-admin {
    user-select: text;
    -webkit-user-select: text;
}

.page-admin .admin-shell {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.25rem 1rem 2rem;
}

.admin-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.admin-head__title {
    margin: 0;
    font-size: 1.35rem;
    color: var(--gold);
}

.admin-head__sub {
    margin: 0.25rem 0 0;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.admin-head__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.admin-btn {
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.admin-btn--ghost {
    background: transparent;
}

.admin-btn:hover {
    border-color: var(--accent);
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.admin-stat-card {
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.admin-stat-card--accent {
    border-color: rgba(0, 200, 150, 0.35);
}

.admin-stat-card__label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.admin-stat-card__value {
    font-size: 1.5rem;
    color: var(--text-strong);
    line-height: 1.1;
}

.admin-stat-card__value--sm {
    font-size: 1rem;
}

.admin-stat-card__hint {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.6rem;
    color: var(--text-muted);
}

.admin-users__head {
    margin-bottom: 0.5rem;
}

.admin-users__head h2 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-strong);
}

.admin-users__meta {
    margin: 0.2rem 0 0;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.admin-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-card);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.72rem;
}

.admin-table th,
.admin-table td {
    padding: 0.45rem 0.55rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.2);
}

.admin-table a {
    color: var(--accent);
}

.admin-table__row--online {
    background: rgba(0, 200, 150, 0.08);
}

.admin-tier {
    display: inline-block;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
}

.admin-tier--premium {
    color: #1a1208;
    background: var(--gold);
}

.admin-tier--standart {
    color: #0a1a14;
    background: var(--accent);
}

.admin-tier--free {
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.08);
}

.admin-online {
    color: var(--accent);
    font-weight: 700;
}

.admin-foot {
    margin-top: 0.75rem;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.admin-toast {
    margin: 0 0 0.65rem;
    padding: 0.45rem 0.65rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.admin-toast--ok {
    background: rgba(0, 200, 150, 0.15);
    border: 1px solid rgba(0, 200, 150, 0.4);
    color: var(--accent);
}

.admin-toast--err {
    background: rgba(255, 71, 87, 0.12);
    border: 1px solid rgba(255, 71, 87, 0.35);
    color: #ff8a96;
}

.admin-select,
.admin-note-input {
    width: 100%;
    max-width: 7.5rem;
    padding: 0.25rem 0.35rem;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: var(--bg-deep);
    color: var(--text);
    font-size: 0.68rem;
    font-family: inherit;
}

.admin-note-input {
    max-width: 9rem;
}

.admin-cell-center {
    text-align: center;
}

.admin-check {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.65rem;
    color: var(--text-muted);
    cursor: pointer;
}

.admin-check input {
    accent-color: #ff6b7a;
}

.admin-btn--save {
    padding: 0.3rem 0.5rem;
    font-size: 0.65rem;
    background: linear-gradient(135deg, var(--accent), #00a67d);
    color: #0a1a14;
    border-color: transparent;
}

.admin-table__row--suspended {
    background: rgba(255, 71, 87, 0.08);
}

.admin-table__row--suspended .admin-check span {
    color: #ff8a96;
    font-weight: 700;
}

.admin-table__row--expired {
    background: rgba(240, 160, 48, 0.1);
}

.admin-days-input {
    width: 3.2rem;
    padding: 0.2rem 0.3rem;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: var(--bg-deep);
    color: var(--text);
    font-size: 0.68rem;
}

.admin-check--stack {
    display: flex;
    margin-top: 0.2rem;
    font-size: 0.58rem;
}

.admin-expiry-cell {
    font-size: 0.65rem;
    line-height: 1.35;
    min-width: 6.5rem;
}

.admin-expiry-date {
    display: block;
    color: var(--text-muted);
}

.admin-expiry-left {
    display: block;
    color: var(--accent);
    font-weight: 700;
}

.admin-expiry-left--warn,
.admin-expired-tag {
    color: var(--lion);
    font-weight: 700;
}

.admin-expired-tag {
    display: block;
    font-size: 0.58rem;
    text-transform: uppercase;
}

.admin-muted {
    color: var(--text-muted);
    font-size: 0.65rem;
}

.membership-upgrade-bar--expired {
    border-bottom-color: rgba(240, 160, 48, 0.45);
    background: linear-gradient(90deg, rgba(240, 160, 48, 0.12), rgba(22, 25, 34, 0.98));
}

.membership-upgrade-bar__badge--warn {
    color: #1a1208;
    background: linear-gradient(135deg, var(--lion), #e09030);
}

.membership-upgrade-bar__badge--gold {
    color: #1a1208;
    background: linear-gradient(135deg, var(--gold), var(--lion));
}

.admin-help {
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(0, 200, 150, 0.06);
}

.admin-help__title {
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--accent);
}

.admin-help__list {
    margin: 0.75rem 0 0;
    font-size: 0.72rem;
    line-height: 1.45;
    color: var(--text-muted);
}

.admin-help__list dt {
    color: var(--text);
    font-weight: 700;
    margin-top: 0.5rem;
}

.admin-help__list dd {
    margin: 0.2rem 0 0;
}

.admin-blocklist {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.admin-blocklist-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    margin-bottom: 0.6rem;
}

.admin-blocklist-form .admin-blocklist-email {
    min-width: 12rem;
}

.admin-blocklist-items {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.68rem;
}

.admin-blocklist-items li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-blocklist-empty {
    color: var(--text-muted);
}

.admin-blocklist-note {
    color: var(--text-muted);
    font-style: italic;
}

.admin-actions-cell {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 4.5rem;
}

.admin-btn--warn {
    background: rgba(240, 160, 48, 0.2);
    border-color: var(--lion);
    color: var(--lion);
    font-size: 0.58rem;
    padding: 0.25rem 0.35rem;
}

.admin-btn--danger {
    background: rgba(255, 71, 87, 0.15);
    border-color: #ff6b7a;
    color: #ff8a96;
    font-size: 0.58rem;
    padding: 0.25rem 0.35rem;
}

.admin-table__row--blocked {
    box-shadow: inset 3px 0 0 #ff6b7a;
}

.admin-blocked-tag {
    display: block;
    font-size: 0.55rem;
    color: #ff8a96;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0.15rem;
}

.admin-active-now {
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(0, 200, 150, 0.04);
}

.admin-active-count {
    font-weight: 400;
    color: var(--accent);
    font-size: 0.85em;
}

.admin-active-list {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0;
    max-height: 14rem;
    overflow-y: auto;
}

.admin-active-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    gap: 0.5rem 0.75rem;
    align-items: center;
    padding: 0.4rem 0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.68rem;
    cursor: default;
}

.admin-active-item--member {
    cursor: pointer;
}

.admin-active-item--member:hover {
    background: rgba(0, 200, 150, 0.08);
}

.admin-active-dot {
    color: var(--accent);
    font-size: 0.55rem;
}

.admin-active-item--guest .admin-active-dot {
    color: var(--text-muted);
}

.admin-active-who {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.admin-active-who strong {
    color: var(--text);
}

.admin-active-email {
    color: var(--text-muted);
    font-size: 0.62rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-active-tier {
    color: var(--accent);
    font-weight: 600;
    white-space: nowrap;
}

.admin-active-item--tier-premium .admin-active-tier {
    color: var(--gold);
}

.admin-active-item--tier-standart .admin-active-tier {
    color: var(--lion);
}

.admin-active-path {
    color: var(--text-muted);
    font-family: ui-monospace, monospace;
    font-size: 0.62rem;
    max-width: 8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-active-ago {
    color: var(--text-muted);
    white-space: nowrap;
    text-align: right;
}

.admin-active-empty {
    color: var(--text-muted);
    padding: 0.5rem 0;
}

.admin-table__row--highlight {
    animation: admin-row-flash 2.5s ease;
}

@keyframes admin-row-flash {
    0%,
    100% {
        background: transparent;
    }
    15%,
    40% {
        background: rgba(0, 200, 150, 0.2);
    }
}

@media (max-width: 720px) {
    .admin-active-item {
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
    }
    .admin-active-path {
        grid-column: 2 / -1;
    }
    .admin-active-ago {
        grid-column: 3;
        grid-row: 1;
    }
}
