/* =========================================================
   tipbomgirisyap.com — Global Stylesheet
   Palette: koyu bordo/kırmızı + beyaz + altın vurgu
   Farklı arayüz: top-bar, ortalanmış hero kutusu
   Mobile-first, no dependencies
   ========================================================= */

:root {
  --bg-900: #120406;     /* en koyu zemin */
  --bg-800: #1c0709;     /* koyu bordo panel */
  --bg-700: #270a0e;     /* alanlar */
  --red:    #e23744;     /* canlı kırmızı aksan */
  --red-d:  #c12733;
  --gold:   #f4c452;     /* altın vurgu */
  --gold-d: #e0ad38;
  --red-soft: rgba(226, 55, 68, 0.14);
  --gold-soft: rgba(244, 196, 82, 0.12);
  --white: #ffffff;
  --text: #f3e7e8;
  --muted: #c2a7aa;
  --line: rgba(255, 255, 255, 0.10);
  --card: #1e0a0d;
  --card-2: #270c10;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 12px 34px rgba(0, 0, 0, 0.5);
  --maxw: 1080px;
  --font: Verdana, "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin:0; font-family:var(--font); background:var(--bg-900); color:var(--text); line-height:1.7; font-size:16.5px; -webkit-font-smoothing:antialiased; }
a { color: var(--red); text-decoration:none; }
a:hover { color: var(--gold); text-decoration:underline; }
img { max-width:100%; height:auto; display:block; }
.container { width:100%; max-width:var(--maxw); margin:0 auto; padding:0 20px; }

h1,h2,h3 { color:var(--white); line-height:1.25; font-weight:700; }
h1 { font-size:clamp(1.7rem,4.5vw,2.5rem); margin:0 0 .6rem; }
h2 { font-size:clamp(1.3rem,3vw,1.8rem); margin:2.2rem 0 .8rem; position:relative; padding-left:14px; }
h2::before { content:""; position:absolute; left:0; top:.2em; bottom:.2em; width:5px; border-radius:3px; background:var(--red); }
h3 { font-size:clamp(1.05rem,2.2vw,1.25rem); margin:1.4rem 0 .5rem; }
p { margin:0 0 1rem; }

.skip-link { position:absolute; left:-999px; top:0; z-index:1000; background:var(--red); color:#fff; padding:10px 16px; border-radius:0 0 8px 0; font-weight:700; }
.skip-link:focus { left:0; }

/* Top-bar (ince üst şerit — farklı arayüz öğesi) */
.topbar { background:var(--red); color:#fff; font-size:.82rem; text-align:center; padding:6px 12px; font-weight:600; }
.topbar a { color:#fff; text-decoration:underline; }

/* Header / Nav */
.site-header { position:sticky; top:0; z-index:50; background:rgba(18,4,6,0.95); backdrop-filter:blur(8px); border-bottom:1px solid var(--line); }
.nav { display:flex; align-items:center; justify-content:space-between; gap:16px; height:64px; }
.brand { display:flex; align-items:center; gap:10px; font-weight:800; font-size:1.12rem; color:var(--white); }
.brand:hover { text-decoration:none; }
.brand .logo { width:30px; height:30px; }
.brand b { color:var(--red); }
.nav-links { display:flex; align-items:center; gap:4px; list-style:none; margin:0; padding:0; }
.nav-links a { color:var(--text); padding:9px 12px; border-radius:8px; font-size:.95rem; font-weight:600; display:block; }
.nav-links a:hover { background:var(--red-soft); color:var(--red); text-decoration:none; }
.nav-links a[aria-current="page"] { color:var(--red); }
.nav-toggle { display:none; background:transparent; border:1px solid var(--line); color:var(--white); width:44px; height:40px; border-radius:9px; cursor:pointer; font-size:1.3rem; }
@media (max-width:820px){
  .nav-toggle { display:inline-flex; align-items:center; justify-content:center; }
  .nav-links { position:absolute; left:0; right:0; top:64px; flex-direction:column; align-items:stretch; gap:0; background:var(--bg-800); border-bottom:1px solid var(--line); padding:8px 16px 16px; display:none; }
  .nav-links.open { display:flex; }
  .nav-links a { padding:13px 8px; border-bottom:1px solid var(--line); }
}

/* Breadcrumb */
.breadcrumb { padding:14px 0 0; }
.breadcrumb ol { list-style:none; display:flex; flex-wrap:wrap; gap:6px; margin:0; padding:0; font-size:.85rem; color:var(--muted); }
.breadcrumb li::after { content:"›"; margin-left:6px; color:var(--muted); }
.breadcrumb li:last-child::after { content:""; }
.breadcrumb a { color:var(--muted); }
.breadcrumb [aria-current="page"] { color:var(--text); }

/* Hero — ortalanmış (farklı arayüz) */
.hero { padding:56px 0 30px; text-align:center; background: radial-gradient(900px 460px at 50% -20%, rgba(226,55,68,0.20), transparent 62%), linear-gradient(180deg, var(--bg-800), var(--bg-900)); border-bottom:1px solid var(--line); }
.hero .eyebrow { display:inline-block; font-size:.8rem; letter-spacing:.08em; text-transform:uppercase; color:var(--gold); background:var(--gold-soft); padding:6px 14px; border-radius:999px; margin-bottom:16px; font-weight:700; }
.hero p.lead { font-size:1.1rem; color:var(--muted); max-width:680px; margin-left:auto; margin-right:auto; }
.cta-row { display:flex; flex-wrap:wrap; gap:12px; margin-top:22px; justify-content:center; }

/* Buttons */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:13px 24px; border-radius:10px; font-weight:700; font-size:.98rem; cursor:pointer; border:1px solid transparent; transition:transform .08s ease, background .2s ease; }
.btn:hover { text-decoration:none; transform:translateY(-1px); }
.btn-primary { background:var(--red); color:#fff; }
.btn-primary:hover { background:var(--red-d); color:#fff; }
.btn-ghost { background:transparent; color:var(--white); border-color:var(--line); }
.btn-ghost:hover { background:rgba(255,255,255,0.06); }

/* Giriş banner — hero içinde ortalanmış büyük kutu */
.giris-banner { max-width:520px; margin:26px auto 6px; background:linear-gradient(180deg, var(--card-2), var(--card)); border:2px solid var(--red); border-radius:var(--radius); padding:28px 22px; text-align:center; box-shadow:var(--shadow); }
.giris-banner .gb-logo { display:block; height:50px; width:auto; margin:0 auto 12px; }
.giris-banner .gb-label { display:block; font-size:.85rem; letter-spacing:.06em; text-transform:uppercase; color:var(--gold); margin-bottom:8px; font-weight:700; }
.giris-banner .gb-domain { display:inline-block; font-size:clamp(1.2rem,3.4vw,1.7rem); font-weight:800; color:var(--red); margin-bottom:16px; word-break:break-all; }
.giris-banner .gb-domain:hover { color:var(--gold); }
.btn-giris { display:inline-flex; align-items:center; justify-content:center; gap:10px; width:100%; background:linear-gradient(90deg,var(--red),var(--red-d)); color:#fff; font-size:clamp(1.05rem,2.6vw,1.35rem); font-weight:800; padding:16px 28px; border-radius:12px; border:0; box-shadow:0 8px 22px rgba(226,55,68,0.4); transition:transform .08s ease, filter .2s ease; }
.btn-giris:hover { filter:brightness(1.08); color:#fff; text-decoration:none; transform:translateY(-2px); }
.btn-giris .arrow { font-size:1.2em; line-height:1; }
.giris-banner .gb-note { margin:14px 0 0; font-size:.82rem; color:var(--muted); }

/* Sections */
main { padding-bottom:40px; }
.section { padding:8px 0; }
.lead-block { max-width:820px; }
.section ul, .section ol { padding-left:1.2rem; }
.section li { margin-bottom:.5rem; }

/* Cards */
.grid { display:grid; gap:18px; }
.grid-2 { grid-template-columns:repeat(2,1fr); }
.grid-3 { grid-template-columns:repeat(3,1fr); }
@media (max-width:820px){ .grid-2,.grid-3{ grid-template-columns:1fr; } }
.card { background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:22px; box-shadow:var(--shadow); }
.card h3 { margin-top:0; }
.card .ico { width:42px; height:42px; border-radius:10px; margin-bottom:12px; display:flex; align-items:center; justify-content:center; background:var(--red-soft); color:var(--red); font-size:1.3rem; }

/* Notice */
.notice { border-left:4px solid var(--gold); background:var(--gold-soft); padding:16px 18px; border-radius:var(--radius-sm); margin:18px 0; color:var(--text); }
.notice strong { color:var(--gold); }

/* FAQ accordion */
.faq { margin-top:12px; }
.faq-item { border:1px solid var(--line); border-radius:var(--radius-sm); margin-bottom:12px; overflow:hidden; background:var(--card); }
.faq-q { width:100%; text-align:left; background:transparent; border:0; color:var(--white); font-size:1.02rem; font-weight:700; padding:16px 48px 16px 18px; cursor:pointer; position:relative; }
.faq-q::after { content:"+"; position:absolute; right:18px; top:50%; transform:translateY(-50%); color:var(--red); font-size:1.4rem; line-height:1; }
.faq-q[aria-expanded="true"]::after { content:"–"; }
.faq-a { padding:0 18px; max-height:0; overflow:hidden; transition:max-height .25s ease, padding .25s ease; color:var(--muted); }
.faq-a.open { padding:0 18px 16px; max-height:600px; }

/* Footer */
.site-footer { background:var(--bg-800); border-top:1px solid var(--line); padding:40px 0 24px; margin-top:40px; color:var(--muted); font-size:.94rem; }
.footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:26px; }
@media (max-width:820px){ .footer-grid{ grid-template-columns:1fr; gap:22px; } }
.site-footer h4 { color:var(--white); font-size:1rem; margin:0 0 12px; }
.site-footer ul { list-style:none; margin:0; padding:0; }
.site-footer li { margin-bottom:8px; }
.site-footer a { color:var(--muted); }
.site-footer a:hover { color:var(--red); }
.resp-gaming { margin-top:26px; padding-top:18px; border-top:1px solid var(--line); font-size:.85rem; color:var(--muted); text-align:center; }
.badge-18 { display:inline-flex; align-items:center; justify-content:center; width:34px; height:34px; border-radius:50%; border:2px solid var(--gold); color:var(--gold); font-weight:800; font-size:.85rem; margin-right:8px; }
