:root {
    --bg: #0c0e14;
    --card: #141824;
    --line: rgba(255, 255, 255, 0.08);
    --txt: #e9ecf3;
    --muted: rgba(233, 236, 243, 0.6);
    --gold: #d4af37;
    --green: #2ecc71;
}
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--txt);
    line-height: 1.6;
}
.wrap { max-width: 820px; margin: 0 auto; padding: 24px 18px 60px; }
header { text-align: center; padding: 24px 0 8px; }
.brand { color: var(--gold); font-weight: 800; letter-spacing: 0.5px; font-size: 1.1rem; }
h1 { font-size: 1.9rem; line-height: 1.25; margin: 14px 0 6px; }
h1 .y { color: var(--gold); }
.updated { color: var(--muted); font-size: 0.85rem; margin-bottom: 18px; text-align: center; }
.lede { color: var(--muted); font-size: 1.02rem; }
.cta {
    display: inline-block; background: linear-gradient(135deg, var(--gold), #f0d77a);
    color: #1a1300; font-weight: 800; text-decoration: none; padding: 14px 28px;
    border-radius: 12px; margin: 10px 0; font-size: 1.05rem; min-height: 50px;
}
.cta:hover { filter: brightness(1.06); }
.center { text-align: center; }
.list { list-style: none; padding: 0; margin: 22px 0; }
.list li {
    display: flex; align-items: center; gap: 14px; background: var(--card);
    border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; margin-bottom: 10px;
}
.list .rank { font-weight: 800; color: var(--gold); font-size: 1.3rem; min-width: 28px; }
.list .name { font-weight: 700; }
.list .bonus { color: var(--green); font-size: 0.9rem; }
.list .go { margin-left: auto; }
.list .go a {
    background: var(--green); color: #04220f; font-weight: 700; text-decoration: none;
    padding: 9px 16px; border-radius: 9px; white-space: nowrap;
}
.list li.top { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold) inset; }
h2 { font-size: 1.3rem; margin: 34px 0 10px; }
.faq { margin: 8px 0; }
.faq details {
    background: var(--card); border: 1px solid var(--line); border-radius: 12px;
    padding: 4px 16px; margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 700; padding: 12px 0; }
.faq p { color: var(--muted); margin: 0 0 14px; }
nav.crumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 6px; }
nav.crumb a { color: var(--gold); text-decoration: none; }
.related a { color: var(--gold); text-decoration: none; }
footer {
    margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line);
    color: var(--muted); font-size: 0.82rem; text-align: center;
}
.age { display: inline-block; border: 1px solid var(--muted); border-radius: 50%;
    width: 26px; height: 26px; line-height: 24px; text-align: center; font-size: 0.7rem; }

/* Hero logo + promo banner */
.hero-logo img { max-width: 200px; height: auto; }
.promo { display: block; margin: 18px auto; max-width: 740px; }
.promo img { width: 100%; height: auto; border-radius: 12px; border: 1px solid var(--line); }

/* Özellik grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 22px 0; }
.feature { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 14px; text-align: center; }
.feature .ic { font-size: 1.6rem; }
.feature b { display: block; margin-top: 6px; font-size: 0.92rem; }
.feature span { color: var(--muted); font-size: 0.78rem; }
@media (max-width: 600px) { .features { grid-template-columns: repeat(2, 1fr); } }

/* Review/rating */
.stars { color: var(--gold); letter-spacing: 1px; font-size: 0.85rem; }
.score { color: var(--gold); font-weight: 800; font-size: 0.95rem; }
.list .meta { display: flex; flex-direction: column; gap: 2px; }
