:root {
            --bg-primary: #0d0d1a;
            --bg-card: #161625;
            --accent: #8b5cf6;
            --accent-hover: #7c3aed;
            --cta: #f97316;
            --cta-hover: #ea580c;
            --text-primary: #e2e8f0;
            --text-secondary: #94a3b8;
            --border: #2d2d44;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Sora', sans-serif;
            line-height: 1.3;
        }

        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        /* HEADER */
        .site-header {
            position: sticky; top: 0; z-index: 1000;
            background: rgba(13,13,26,0.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border);
        }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
        .logo { font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 800; }
        .logo span { background: linear-gradient(135deg, var(--accent), var(--cta)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .nav-links { display: flex; gap: 24px; list-style: none; }
        .nav-links a { font-size: 0.9rem; font-weight: 600; color: var(--text-secondary); transition: color 0.25s; }
        .nav-links a:hover { color: var(--accent); }
        .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
        .hamburger span { width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; }
        .mobile-menu { display: none; position: absolute; top: 68px; left: 0; right: 0; background: rgba(13,13,26,0.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); padding: 20px; }
        .mobile-menu.active { display: block; }
        .mobile-menu a { display: block; padding: 12px 0; color: var(--text-secondary); font-weight: 600; border-bottom: 1px solid var(--border); }

        /* HERO */
        .hero {
            position: relative; min-height: 500px; display: flex; align-items: center; overflow: hidden;
        }
        .hero-bg { position: absolute; inset: 0; }
        .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
        .hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,13,26,0.94) 0%, rgba(13,13,26,0.7) 100%); }
        .hero-content { position: relative; z-index: 2; max-width: 700px; padding: 60px 0; }
        .hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 18px; }
        .hero h1 em { font-style: normal; color: var(--cta); }
        .hero-text { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.8; }
        .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
        .btn-cta {
            display: inline-block; background: var(--cta); color: #fff; padding: 13px 32px; border-radius: 8px;
            font-weight: 700; font-size: 0.95rem; border: none; cursor: pointer; transition: all 0.3s;
        }
        .btn-cta:hover { background: var(--cta-hover); box-shadow: 0 4px 20px rgba(249,115,22,0.35); transform: translateY(-1px); }
        .btn-outline {
            display: inline-block; background: transparent; color: var(--accent); padding: 13px 32px;
            border-radius: 8px; font-weight: 700; font-size: 0.95rem; border: 2px solid var(--accent); cursor: pointer; transition: all 0.3s;
        }
        .btn-outline:hover { background: var(--accent); color: #fff; }

        /* SECTIONS */
        .section { padding: 70px 0; }
        .section-alt { background: rgba(22,22,37,0.5); }
        .section-dark { background: linear-gradient(180deg, #0a0a15 0%, var(--bg-primary) 100%); }
        .section-title { font-size: 2rem; font-weight: 700; margin-bottom: 12px; text-align: center; }
        .section-title span { color: var(--accent); }
        .section-subtitle { color: var(--text-secondary); text-align: center; max-width: 640px; margin: 0 auto 45px; }

        /* SEVİYE GÖSTERGESİ */
        .levels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .level-card {
            background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 32px;
            opacity: 0; transform: translateY(30px); transition: all 0.3s;
        }
        .level-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease; }
        .level-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
        .level-badge {
            display: inline-block; padding: 5px 14px; border-radius: 6px; font-size: 0.78rem;
            font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
        }
        .level-beginner .level-badge { background: rgba(34,197,94,0.15); color: #22c55e; }
        .level-mid .level-badge { background: rgba(245,158,11,0.15); color: #f59e0b; }
        .level-advanced .level-badge { background: rgba(239,68,68,0.15); color: #ef4444; }
        .level-card h3 { font-size: 1.15rem; margin-bottom: 16px; }
        .level-list { list-style: none; }
        .level-list li { padding: 7px 0; padding-left: 18px; position: relative; font-size: 0.9rem; color: var(--text-secondary); }
        .level-list li::before { content: ''; position: absolute; left: 0; top: 14px; width: 6px; height: 6px; border-radius: 50%; }
        .level-beginner .level-list li::before { background: #22c55e; }
        .level-mid .level-list li::before { background: #f59e0b; }
        .level-advanced .level-list li::before { background: #ef4444; }
        .level-list li a { color: var(--text-secondary); transition: color 0.2s; }
        .level-list li a:hover { color: var(--accent); }

        /* STRATEJİ KARTLARI */
        .strategy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
        .strategy-card {
            background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
            opacity: 0; transform: translateY(30px);
        }
        .strategy-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease; }
        .strategy-card:hover { box-shadow: 0 10px 35px rgba(0,0,0,0.25); }
        .strategy-img { height: 200px; overflow: hidden; }
        .strategy-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
        .strategy-card:hover .strategy-img img { transform: scale(1.05); }
        .strategy-body { padding: 24px; }
        .strategy-badges { display: flex; gap: 8px; margin-bottom: 12px; }
        .diff-badge {
            font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 4px; text-transform: uppercase;
        }
        .diff-beginner { background: rgba(34,197,94,0.15); color: #22c55e; }
        .diff-mid { background: rgba(245,158,11,0.15); color: #f59e0b; }
        .diff-advanced { background: rgba(239,68,68,0.15); color: #ef4444; }
        .reading-time { font-size: 0.72rem; color: var(--text-secondary); padding: 3px 10px; background: var(--bg-primary); border-radius: 4px; }
        .strategy-body h3 { font-size: 1.12rem; margin-bottom: 12px; }
        .strategy-body p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

        /* BANKROLL */
        .bankroll-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
        .bankroll-img { border-radius: 14px; overflow: hidden; }
        .bankroll-img img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
        .bankroll-text h3 { font-size: 1.4rem; margin-bottom: 18px; }
        .bankroll-text p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 14px; }

        /* BANKROLL HESAPLAYICI */
        .calc-wrapper {
            background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; margin-top: 40px;
        }
        .calc-wrapper h3 { font-size: 1.15rem; margin-bottom: 20px; text-align: center; }
        .calc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
        .calc-field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text-secondary); }
        .calc-field input {
            width: 100%; padding: 11px 14px; background: var(--bg-primary); border: 1px solid var(--border);
            border-radius: 8px; color: var(--text-primary); font-size: 0.95rem; outline: none; transition: border 0.3s;
        }
        .calc-field input:focus { border-color: var(--accent); }
        .calc-btn {
            display: block; width: 100%; padding: 13px; background: var(--cta); color: #fff;
            font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.95rem;
            border: none; border-radius: 8px; cursor: pointer; transition: all 0.3s; margin-top: 16px;
        }
        .calc-btn:hover { background: var(--cta-hover); box-shadow: 0 4px 18px rgba(249,115,22,0.3); }
        .calc-result {
            margin-top: 20px; padding: 18px; background: rgba(139,92,246,0.08);
            border: 1px solid rgba(139,92,246,0.2); border-radius: 10px; display: none;
        }
        .calc-result p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 6px; }
        .calc-result strong { color: var(--text-primary); }
        .risk-low { color: #22c55e !important; }
        .risk-mid { color: #f59e0b !important; }
        .risk-high { color: #ef4444 !important; }

        /* ORAN OKUMA */
        .odds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .odds-card {
            background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 28px;
            text-align: center; opacity: 0; transform: translateY(30px);
        }
        .odds-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease; }
        .odds-icon { font-size: 2.2rem; margin-bottom: 12px; }
        .odds-card h3 { font-size: 1.05rem; margin-bottom: 12px; }
        .odds-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; text-align: left; }
        .odds-example {
            background: var(--bg-primary); border-radius: 8px; padding: 12px; margin-top: 14px;
            font-size: 0.85rem; color: var(--accent); text-align: center; font-weight: 600;
        }

        /* İLERİ TAKTİKLER */
        .tactics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .tactic-card {
            background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 28px;
            opacity: 0; transform: translateY(30px);
        }
        .tactic-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease; }
        .tactic-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
        .tactic-badge {
            display: inline-block; background: rgba(239,68,68,0.15); color: #ef4444;
            font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 4px;
            text-transform: uppercase; margin-bottom: 14px;
        }
        .tactic-card h3 { font-size: 1.08rem; margin-bottom: 12px; }
        .tactic-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 14px; }
        .tactic-meta { font-size: 0.78rem; color: var(--text-secondary); padding-top: 12px; border-top: 1px solid var(--border); }

        /* FAQ */
        .faq-list { max-width: 820px; margin: 0 auto; }
        .faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
        .faq-question { padding: 18px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
        .faq-question:hover { color: var(--accent); }
        .faq-arrow { font-size: 1.2rem; transition: transform 0.3s; color: var(--accent); }
        .faq-item.active .faq-arrow { transform: rotate(180deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
        .faq-answer-inner { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; }
        .faq-item.active .faq-answer { max-height: 400px; }

        /* FOOTER */
        .site-footer { background: #090912; border-top: 1px solid var(--border); padding: 60px 0 0; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
        .footer-about h4 { font-size: 1.15rem; margin-bottom: 14px; }
        .footer-about h4 span { color: var(--accent); }
        .footer-about p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.8; }
        .footer-links h4, .footer-contact h4 { font-size: 1rem; margin-bottom: 14px; }
        .footer-links ul { list-style: none; }
        .footer-links li { padding: 5px 0; }
        .footer-links a { font-size: 0.88rem; color: var(--text-secondary); transition: color 0.2s; }
        .footer-links a:hover { color: var(--accent); }
        .footer-contact p { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 8px; }
        .responsible-gaming { background: rgba(139,92,246,0.06); border: 1px solid rgba(139,92,246,0.18); border-radius: 10px; padding: 20px; margin: 30px 0; }
        .responsible-gaming h5 { font-family: 'DM Sans', sans-serif; color: var(--accent); font-size: 0.92rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
        .responsible-gaming p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.7; }
        .age-badge { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--accent); color: #fff; border-radius: 50%; font-weight: 800; font-size: 0.82rem; }
        .footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; text-align: center; font-size: 0.82rem; color: var(--text-secondary); }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .levels-grid { grid-template-columns: 1fr; }
            .bankroll-grid { grid-template-columns: 1fr; }
            .tactics-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hamburger { display: flex; }
            .hero h1 { font-size: 1.8rem; }
            .strategy-grid { grid-template-columns: 1fr; }
            .odds-grid { grid-template-columns: 1fr; }
            .calc-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .section-title { font-size: 1.6rem; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 1.5rem; }
            .section { padding: 45px 0; }
        }

/* ARTICLE PAGE */
.article-main {
    padding: 60px 0;
}
.article-main .container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}
.article-content h1 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    line-height: 1.3;
}
.article-content h2 {
    font-size: 1.5rem;
    margin-top: 36px;
    margin-bottom: 16px;
    line-height: 1.3;
}
.article-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 18px;
}
.article-content ul {
    margin: 16px 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.85;
}
.article-content ul li {
    margin-bottom: 8px;
    font-size: 1rem;
}
.article-content strong {
    color: var(--text-primary);
    font-weight: 600;
}
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.article-sidebar .sidebar-widget {
    background: var(--bg-card);
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 24px;
}
.article-sidebar .widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}
.article-sidebar .popular-list {
    list-style: none;
    padding: 0;
}
.article-sidebar .popular-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.article-sidebar .popular-list li:last-child {
    border-bottom: none;
}
.article-sidebar .popular-list a {
    color: var(--text-secondary);
    font-size: 0.92rem;
    transition: color 0.25s;
}
.article-sidebar .popular-list a:hover {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .article-main .container {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .article-content h1 {
        font-size: 1.7rem;
    }
    .article-content h2 {
        font-size: 1.25rem;
    }
}
