/* VegasSlot — güncel giriş rehberi | shared stylesheet */

:root {
  --bg: #0b0704;
  --bg-alt: #120c07;
  --panel: #1a130b;
  --panel-2: #201709;
  --gold: #d9b25c;
  --gold-light: #f3d98b;
  --gold-dark: #9c7a2e;
  --red: #a6182c;
  --red-light: #d63b4c;
  --text: #f1e6d2;
  --text-dim: #c9b892;
  --text-faint: #96876a;
  --border: #3a2c15;
  --shadow: rgba(0, 0, 0, 0.55);
  --radius: 10px;
  --maxw: 1180px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: "Segoe UI", Tahoma, Verdana, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: radial-gradient(ellipse at top, #170f08 0%, var(--bg) 55%, #050302 100%);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; display: block; height: auto; }

a { color: var(--gold-light); text-decoration: none; }
a:hover { color: var(--gold); }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */

header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, #0d0904 0%, #0d0904cc 100%);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 18px var(--shadow);
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  text-shadow: 0 0 18px rgba(217, 178, 92, 0.35);
}

.brand .spade { color: var(--red-light); padding: 0 2px; }
.brand .chip {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--red-light), var(--red) 60%, #5c0e18 100%);
  border: 2px solid var(--gold);
  vertical-align: middle;
  margin: 0 1px;
}
.brand .brand-dot { color: var(--gold-dark); font-size: 1rem; padding: 0 6px; }

.header-cta {
  display: flex;
  gap: 10px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid var(--gold-dark);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  color: #241804;
  box-shadow: 0 6px 18px rgba(217, 178, 92, 0.3);
}

.btn-primary:hover {
  color: #241804;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(217, 178, 92, 0.45);
}

.btn-small {
  padding: 9px 18px;
  font-size: 0.9rem;
}

.btn-ghost {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold-dark);
}
.btn-ghost:hover { background: rgba(217, 178, 92, 0.08); color: var(--gold-light); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 64px 0 56px;
  background: linear-gradient(180deg, #150e06 0%, #0b0704 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(217, 178, 92, 0.10), transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(166, 24, 44, 0.14), transparent 45%);
  pointer-events: none;
}

.hero-inner { position: relative; max-width: 880px; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--gold-light);
  text-shadow: 0 0 24px rgba(217, 178, 92, 0.25);
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 0 28px;
}

/* ---------- Sections ---------- */

section { padding: 56px 0; }
section.alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--gold-light);
  margin: 0 0 12px;
}

h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--gold-light);
  margin: 28px 0 10px;
}

.section-head { max-width: 720px; margin: 0 0 36px; }
.section-head p { color: var(--text-dim); }

p { margin: 0 0 16px; color: var(--text-dim); }
strong { color: var(--text); }

ul, ol { color: var(--text-dim); padding-left: 22px; margin: 0 0 16px; }
li { margin-bottom: 8px; }

/* ---------- Trust badges ---------- */

.badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.badge {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: left;
}

.badge .icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.badge h4 { margin: 0 0 6px; color: var(--gold-light); font-family: var(--serif); font-size: 1.05rem; }
.badge p { margin: 0; font-size: 0.92rem; color: var(--text-faint); }

/* ---------- Cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.card {
  background: linear-gradient(180deg, var(--panel) 0%, #150f08 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  opacity: 0.7;
}

.card h3 { margin-top: 0; }
.card a.card-link { font-weight: 700; font-size: 0.92rem; }

/* ---------- USP numbered list ---------- */

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.usp {
  border-left: 2px solid var(--gold-dark);
  padding-left: 18px;
}

.usp .num {
  font-family: var(--serif);
  color: var(--gold-dark);
  font-size: 1.6rem;
  display: block;
  margin-bottom: 4px;
}

/* ---------- Steps ---------- */

.steps {
  counter-reset: step;
  display: grid;
  gap: 20px;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.step .step-num {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  color: var(--gold-light);
  font-weight: 700;
}

/* ---------- Stats ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  text-align: center;
}

.stat .num {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--gold-light);
  display: block;
}
.stat .label { font-size: 0.88rem; color: var(--text-faint); }

/* ---------- Tables ---------- */

.table-wrap { overflow-x: auto; margin: 0 0 20px; border: 1px solid var(--border); border-radius: var(--radius); }

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 480px;
  background: var(--panel);
}

th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.95rem;
}

th {
  color: var(--gold-light);
  font-family: var(--serif);
  background: #1c1409;
}

tr:last-child td { border-bottom: none; }

/* ---------- FAQ ---------- */

.faq-list { display: grid; gap: 14px; }

.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
}

.faq-item .q {
  font-weight: 700;
  color: var(--gold-light);
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.faq-item .a { margin: 0; color: var(--text-dim); }

/* ---------- Comparison note ---------- */

.callout {
  background: linear-gradient(135deg, rgba(166, 24, 44, 0.12), rgba(217, 178, 92, 0.06));
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.callout p:last-child { margin-bottom: 0; }

/* ---------- CTA banner ---------- */

.cta-banner {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(180deg, #1a1207 0%, #0b0704 100%);
  border-top: 1px solid var(--border);
}

.cta-banner h2 { margin-bottom: 10px; }
.cta-banner p { max-width: 560px; margin: 0 auto 26px; }

.disclaimer {
  max-width: 680px;
  margin: 22px auto 0;
  font-size: 0.82rem;
  color: var(--text-faint);
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* ---------- Footer ---------- */

footer.site-footer {
  background: #060402;
  border-top: 1px solid var(--border);
  padding: 46px 0 26px;
  font-size: 0.9rem;
  color: var(--text-faint);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  margin-bottom: 28px;
}

.footer-col h5 {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 0.95rem;
  margin: 0 0 14px;
  letter-spacing: 0.04em;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--text-faint); font-size: 0.88rem; }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 0.78rem;
  color: var(--text-faint);
  line-height: 1.7;
}

.footer-brand {
  font-family: var(--serif);
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* ---------- Page (inner article) ---------- */

.page-hero {
  padding: 46px 0 36px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #150e06 0%, #0b0704 100%);
}

.page-hero h1 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.page-hero p.lead { margin-bottom: 0; }

.article { padding: 48px 0; }
.article-body { max-width: 780px; }
.article-body h2:first-child { margin-top: 0; }

.crumb {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-bottom: 14px;
}
.crumb a { color: var(--text-faint); }
.crumb a:hover { color: var(--gold-light); }

.tips-list {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 26px;
}

/* ---------- Guide list (Yazılar index) ---------- */

.guide-list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.guide-list li {
  margin: 0;
}

.guide-list a {
  display: block;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--text);
  font-size: 0.96rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.guide-list a:hover {
  border-color: var(--gold-dark);
  background: var(--panel-2);
  color: var(--gold-light);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-row span {
  border: 1px solid var(--gold-dark);
  color: var(--gold-light);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.82rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 720px) {
  .header-inner { flex-wrap: wrap; }
  .brand { font-size: 1.2rem; }
  section { padding: 40px 0; }
  .hero { padding: 44px 0 36px; }
}

@media (max-width: 480px) {
  .header-cta .btn-small { padding: 8px 14px; font-size: 0.82rem; }
}
