/* =========================================================
   tipbomgiris.com — Global Stylesheet
   Palette: siyah / koyu füme + turuncu vurgu + beyaz
   Mobile-first, responsive, no dependencies
   (Değişken adları geriye dönük uyumluluk için korunmuştur:
    --navy-* artık siyah/füme tonlarını, --gold-* turuncuyu tutar.)
   ========================================================= */

:root {
  --navy-900: #0a0a0a;   /* en koyu — sayfa zemini (siyah) */
  --navy-800: #141414;   /* füme — header/footer */
  --navy-700: #1f1f1f;   /* form/giriş alanları */
  --navy-600: #2a2a2a;   /* açık füme */
  --navy-500: #353535;   /* en açık füme */
  --gold-500: #ff7a00;   /* turuncu vurgu */
  --gold-600: #e66e00;   /* turuncu hover */
  --gold-soft: rgba(255, 122, 0, 0.12);
  --white: #ffffff;
  --text: #ededed;
  --muted: #a8a8a8;
  --line: rgba(255, 255, 255, 0.10);
  --card: #161616;
  --card-2: #1e1e1e;
  --success: #2ecc71;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --maxw: 1120px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--navy-900);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold-500); text-decoration: none; }
a:hover { color: var(--gold-600); 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.6rem); margin: 0 0 .6rem; }
h2 { font-size: clamp(1.35rem, 3vw, 1.9rem); margin: 2.4rem 0 .8rem; }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.3rem); margin: 1.6rem 0 .5rem; }
p { margin: 0 0 1rem; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--gold-500); color: var(--navy-900);
  padding: 10px 16px; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; height: 66px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.15rem; color: var(--white);
}
.brand:hover { text-decoration: none; }
.brand .logo { width: 30px; height: 30px; }
.brand b { color: var(--gold-500); }

.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: .96rem; font-weight: 600; display: block;
}
.nav-links a:hover { background: var(--gold-soft); color: var(--gold-500); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--gold-500); }

.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; line-height: 1;
}

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: 66px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy-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 a:hover { color: var(--gold-500); }
.breadcrumb [aria-current="page"] { color: var(--text); }

/* ---------- Hero ---------- */
.hero {
  padding: 56px 0 40px;
  background:
    radial-gradient(1100px 420px at 80% -10%, rgba(255,122,0,0.12), transparent 60%),
    linear-gradient(180deg, var(--navy-800), var(--navy-900));
  border-bottom: 1px solid var(--line);
}
.hero .eyebrow {
  display: inline-block; font-size: .8rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold-500);
  background: var(--gold-soft); padding: 6px 12px; border-radius: 999px;
  margin-bottom: 16px; font-weight: 700;
}
.hero p.lead { font-size: 1.1rem; color: var(--muted); max-width: 720px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 22px; border-radius: 999px;
  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(--gold-500); color: var(--navy-900); }
.btn-primary:hover { background: var(--gold-600); color: var(--navy-900); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--line); }
.btn-ghost:hover { background: rgba(255,255,255,0.06); color: var(--white); }

/* ---------- Giriş banner (büyük buton + güncel domain) ---------- */
.giris-banner {
  margin: 26px 0 6px;
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.giris-banner .gb-logo {
  display: block; height: 48px; width: auto; margin: 0 auto 12px;
}
.giris-banner .gb-label {
  display: block; font-size: .85rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted); 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(--gold-500); margin-bottom: 16px;
  word-break: break-all;
}
.giris-banner .gb-domain:hover { color: var(--gold-600); }
.btn-giris {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--gold-500); color: var(--navy-900);
  font-size: clamp(1.05rem, 2.6vw, 1.35rem); font-weight: 800;
  padding: 16px 34px; border-radius: 999px; border: 0;
  box-shadow: 0 8px 22px rgba(255, 122, 0, 0.32);
  transition: transform .08s ease, background .2s ease;
}
.btn-giris:hover { background: var(--gold-600); color: var(--navy-900); 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; }
.section .container > p,
.section .container > ul,
.section .container > ol { color: var(--text); }
.section ul, .section ol { padding-left: 1.2rem; }
.section li { margin-bottom: .5rem; }

.lead-block { max-width: 820px; }

/* ---------- Cards / grid ---------- */
.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: linear-gradient(180deg, var(--card-2), 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(--gold-soft); color: var(--gold-500); font-size: 1.3rem;
}

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

/* ---------- 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(--gold-500); 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; }

/* ---------- Contact form (visual only) ---------- */
.form { max-width: 560px; }
.form label { display: block; font-weight: 600; margin: 14px 0 6px; color: var(--text); }
.form input, .form textarea {
  width: 100%; background: var(--navy-700); border: 1px solid var(--line);
  border-radius: var(--radius-sm); color: var(--white); padding: 12px 14px; font: inherit;
}
.form input:focus, .form textarea:focus { outline: 2px solid var(--gold-500); border-color: var(--gold-500); }
.form textarea { min-height: 130px; resize: vertical; }
.form-note { margin-top: 14px; padding: 12px 14px; border-radius: var(--radius-sm); display: none; }
.form-note.show { display: block; background: rgba(46,204,113,0.12); border: 1px solid rgba(46,204,113,0.4); color: #d6ffe6; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-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(--gold-500); }
.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-500);
  color: var(--gold-500); font-weight: 800; font-size: .85rem; margin-right: 8px;
}
