:root {
  --bg: #0f1f1a;
  --bg-soft: #162b24;
  --paper: #f3ebde;
  --ink: #141a18;
  --text-light: #e9e2d7;
  --accent: #c8a86b;
  --accent-2: #e1c997;
  --line: rgba(200, 168, 107, 0.34);
  --ok: #39d98a;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: linear-gradient(180deg, #10221c 0%, #0f1f1a 40%, #0b1613 100%);
  color: var(--text-light);
  line-height: 1.75;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1140px, calc(100% - 2.4rem)); margin-inline: auto; }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 4px; width: 0%;
  background: linear-gradient(90deg, var(--accent), #f7dfac);
  z-index: 999;
}

.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(12px);
  background: rgba(12, 23, 19, 0.82);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: .75rem; font-weight: 700; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #1b322b, #29463d);
  border: 1px solid var(--line);
  color: var(--accent-2);
  font-family: "DM Serif Display", serif;
  letter-spacing: .04em;
}
.brand-text { font-size: .98rem; }
.header-nav { margin-left: auto; display: flex; gap: 1.25rem; }
.header-nav a { opacity: .88; font-size: .95rem; }
.header-nav a:hover { opacity: 1; color: var(--accent-2); }

.btn {
  border: 1px solid transparent;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; font-weight: 700; cursor: pointer;
  padding: .72rem 1.15rem; transition: .28s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent {
  background: linear-gradient(135deg, #b9965d, #d6b680);
  color: #111;
  box-shadow: 0 10px 30px rgba(199, 167, 105, 0.32);
}
.btn-outline {
  border-color: var(--line);
  background: rgba(255,255,255,.03);
  color: var(--accent-2);
}
.btn-mini { padding: .5rem .8rem; font-size: .82rem; border-radius: 10px; }
.btn-lg { padding: .95rem 1.4rem; }
.btn-full { width: 100%; margin-top: 1rem; }

.hero {
  padding: 3.2rem 0 2rem;
  position: relative;
}
.hero::before {
  content: ""; position: absolute; inset: -180px 0 auto;
  height: 420px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(200,168,107,.18), transparent 74%);
}
.hero-grid { display: grid; grid-template-columns: 1.35fr .85fr; gap: 1.4rem; align-items: start; }
.hero-copy h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.14;
  margin: .5rem 0 1rem;
  max-width: 18ch;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--accent-2); font-size: .72rem; font-weight: 700;
}
.hero-copy p { color: #e8dfd0; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1rem 0 1rem; }
.hero-points { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; }
.hero-points li::before { content: "•"; color: var(--accent); margin-right: .45rem; }

.access-card {
  background: rgba(20, 35, 29, 0.96);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}
.access-card h2 { margin-top: .2rem; font-family: "DM Serif Display", serif; font-size: 1.5rem; }
.domain-row { display: flex; gap: .75rem; align-items: center; }
code[data-giris-domain] {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: .45rem .7rem;
  color: var(--accent-2);
  font-weight: 700;
}
.url-inline { word-break: break-all; }
.status-row { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; font-size: .9rem; }
.pulse-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(57,217,138,.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(57,217,138,.6); }
  70% { box-shadow: 0 0 0 12px rgba(57,217,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(57,217,138,0); }
}

.ticker-wrap { margin: 1.3rem 0 2rem; }
.ticker {
  border-block: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  background: rgba(255,255,255,0.02);
}
.ticker + .ticker { border-top: 0; }
.ticker-track {
  display: inline-flex;
  gap: 1.1rem;
  padding: .72rem 0;
  min-width: 200%;
  animation: marquee 28s linear infinite;
}
.ticker-b .ticker-track { animation-direction: reverse; animation-duration: 24s; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section-head h2 {
  margin: .35rem 0 1.1rem;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.2;
}
.announcements, .long-article, .panel-section, .security-block, .review-section, .event-section, .faq-section, .author-box {
  margin-block: 2rem;
}

.slider {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(23, 38, 32, 0.86);
  overflow: hidden;
  position: relative;
}
.slides { display: flex; transition: transform .65s ease; }
.slide { min-width: 100%; padding: 1.25rem 1.2rem 1.4rem; opacity: .72; transform: scale(.985); transition: .5s ease; }
.slide h3 { margin-top: .2rem; font-family: "DM Serif Display", serif; }
.slide.is-active { opacity: 1; transform: scale(1); }
.slider-dots {
  display: flex; gap: .4rem; justify-content: center; padding: 0 0 1rem;
}
.slider-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.34); cursor: pointer;
}
.slider-dots button.active { background: var(--accent-2); }

.breadcrumb-row p {
  font-size: .93rem;
  color: #d7cfbf;
  border-bottom: 1px dashed var(--line);
  padding-bottom: .65rem;
}
.steps-list { padding-left: 1rem; display: grid; gap: .8rem; }
.steps-list li { background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.07); border-radius: 14px; padding: .9rem; }
.steps-list h3 { margin: 0 0 .35rem; font-size: 1.1rem; color: #f3e4c5; }

.two-col-cards { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin: 1rem 0; }
.two-col-cards article,
.category-grid article,
.rules-grid article {
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  padding: 1rem;
}
.clean-list { padding-left: 1rem; }
.clean-list li { margin-bottom: .35rem; }

.category-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; margin: 1rem 0 1.3rem; }
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: .7rem;
  margin: 1rem 0;
}
.stats-strip div {
  border-radius: 12px;
  padding: .85rem;
  border: 1px solid var(--line);
  background: rgba(200,168,107,.08);
}
.stats-strip strong { display: block; font-size: 1.3rem; color: #f2ddba; }
.stats-strip span { font-size: .86rem; color: #e4d9c4; }

.rules-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .8rem; }
.rules-grid h3 { margin-top: 0; color: #f3dfbe; }

.review-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: .9rem; }
.rating-card, .review-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.02);
  padding: 1rem;
}
.big-rating {
  font-size: 3rem;
  margin: 0;
  font-family: "DM Serif Display", serif;
  color: var(--accent-2);
}
.big-rating span { font-size: 1.2rem; }
.star-bars div { display: grid; grid-template-columns: 78px 1fr; align-items: center; gap: .5rem; margin: .35rem 0; }
.star-bars i { display: block; height: 8px; border-radius: 999px; background: rgba(255,255,255,.14); overflow: hidden; }
.star-bars b { display: block; height: 100%; background: linear-gradient(90deg, #c7a264, #efd7ad); }
.review-body { color: #f0e5d3; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.pros-cons h4 { margin-bottom: .5rem; }
.pros-cons ul { margin: 0; padding-left: 1rem; }

.event-section {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(200,168,107,.09), rgba(255,255,255,.02));
  padding: 1.2rem;
}
.countdown { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: .6rem; margin: 1rem 0 1.2rem; }
.countdown div { border-radius: 12px; border: 1px solid rgba(255,255,255,.14); padding: .65rem .4rem; text-align: center; }
.countdown span { font-size: 1.6rem; font-weight: 800; color: #f5deb2; }
.countdown small { display: block; font-size: .75rem; opacity: .9; }

.faq-list { display: grid; gap: .65rem; }
.faq-list details {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.02);
  padding: .82rem .9rem;
}
.faq-list summary { cursor: pointer; font-weight: 600; }
.faq-list p { margin-bottom: 0; color: #ece3d3; }

.author-box {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.site-footer {
  margin-top: 2rem;
  padding: 1.6rem 0 6rem;
  border-top: 1px solid var(--line);
  color: #d9d0bf;
}
.back-to-top {
  display: inline-flex;
  margin-top: .8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .5rem .9rem;
  opacity: 0;
  pointer-events: none;
  transition: .3s ease;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }

.mobile-dock {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: none;
  z-index: 75;
  border-top: 1px solid var(--line);
  background: rgba(12, 22, 18, 0.96);
  backdrop-filter: blur(10px);
}
.mobile-dock a {
  flex: 1;
  text-align: center;
  padding: .85rem .4rem;
  font-weight: 700;
  color: var(--accent-2);
}
.mobile-dock a + a { border-left: 1px solid rgba(255,255,255,.08); }

@media (max-width: 980px) {
  .hero-grid, .review-grid { grid-template-columns: 1fr; }
  .header-nav { display: none; }
}
@media (max-width: 760px) {
  .container { width: min(1140px, calc(100% - 1.25rem)); }
  .two-col-cards,
  .category-grid,
  .stats-strip,
  .rules-grid,
  .pros-cons,
  .countdown { grid-template-columns: 1fr; }
  .mobile-dock { display: flex; }
  body { padding-bottom: 62px; }
}
