* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #f7941d;
  --orange-hover: #ffaa33;
  --orange-dark: #d97b0a;
  --bg: #000000;
  --text: #ffffff;
  --text-soft: #cccccc;
  --btn-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  --max-width: 680px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

.kw {
  color: var(--orange);
  font-weight: 700;
}

/* Sayfa — mobil ve PC'de ortalanmış tek kolon */
.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 20px 60px;
  text-align: center;
}

/* Logo — casi beyaz, bom turuncu, alt çizgi */
.brand-logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 28px;
}

.logo-text {
  display: block;
  font-size: clamp(2.8rem, 10vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  text-transform: lowercase;
}

.logo-casi {
  color: var(--text);
}

.logo-bom {
  color: var(--orange);
}

.logo-swoosh {
  display: block;
  width: 72px;
  height: 14px;
  margin: 4px auto 0;
  margin-left: auto;
  margin-right: 0;
  padding-left: 42%;
}

/* Ana CTA butonu */
.btn-cta {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 20px auto;
  padding: 16px 20px;
  background: var(--orange);
  color: #000000;
  font-size: clamp(0.95rem, 3.5vw, 1.1rem);
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  border-radius: 12px;
  border: 2px solid var(--orange-dark);
  box-shadow: var(--btn-shadow);
  transition: background 0.25s, transform 0.2s;
  line-height: 1.4;
}

.btn-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
}

/* Tagline */
.tagline {
  font-size: clamp(1rem, 3.5vw, 1.15rem);
  color: var(--text);
  margin: 24px 0 16px;
  line-height: 1.6;
  font-weight: 500;
}

/* Büyük marka başlığı */
.brand-title {
  font-size: clamp(2.4rem, 9vw, 3.2rem);
  font-weight: 800;
  color: var(--text);
  margin: 20px 0;
  line-height: 1.2;
}

/* SEO H1 */
.seo-h1 {
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  font-weight: 700;
  color: var(--orange);
  margin: 8px 0 24px;
  line-height: 1.5;
}

/* Giriş bloğu */
.top-block {
  padding-bottom: 10px;
}

.intro-text {
  text-align: left;
  font-size: 0.95rem;
  color: var(--text-soft);
  margin: 24px 0;
  line-height: 1.8;
}

/* Numaralı liste formatı */
.content-block {
  margin: 32px 0;
  text-align: left;
}

.block-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  text-align: center;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  counter-reset: service;
  padding: 0;
}

.service-list > li {
  counter-increment: service;
  margin-bottom: 22px;
  padding-left: 0;
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.service-list > li::before {
  content: counter(service) ". ";
  color: var(--text);
  font-weight: 700;
}

.service-list strong {
  color: var(--text);
  font-weight: 700;
}

/* Alt bölümler */
.section-block {
  margin: 40px 0;
  text-align: left;
}

.section-block .block-heading {
  margin-bottom: 16px;
}

.section-text {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Basit özellik listesi */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid #1a1a1a;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.feature-list li strong {
  color: var(--orange);
}

/* Oyun listesi */
.game-list {
  list-style: none;
  padding: 0;
}

.game-list li {
  padding: 12px 0;
  border-bottom: 1px solid #1a1a1a;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.game-list li span {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.8rem;
  margin-left: 8px;
}

/* Bonus satırları */
.bonus-list {
  list-style: none;
  padding: 0;
}

.bonus-list li {
  padding: 16px 0;
  border-bottom: 1px solid #1a1a1a;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.bonus-list .bonus-tag {
  display: inline-block;
  background: var(--orange);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.bonus-list .bonus-val {
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 800;
  display: block;
  margin: 4px 0;
}

/* İstatistik satırı */
.stats-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.stat-item {
  flex: 1 1 40%;
  text-align: center;
  padding: 14px 8px;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
}

.stat-item .num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
}

.stat-item .lbl {
  font-size: 0.75rem;
  color: var(--text-soft);
  text-transform: uppercase;
}

/* FAQ */
.faq-block {
  margin: 40px 0;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #1a1a1a;
}

.faq-question {
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: inherit;
  gap: 12px;
}

.faq-toggle {
  color: var(--orange);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 0 16px;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.8;
}

/* Footer */
.site-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #1a1a1a;
  text-align: center;
}

.site-footer p {
  font-size: 0.8rem;
  color: #666;
  line-height: 2;
}

.site-footer a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.85rem;
  display: inline-block;
  margin: 0 8px;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-links {
  margin-bottom: 16px;
}

/* Ayırıcı */
.divider-space {
  height: 8px;
}

/* PC'de de aynı mobil format — sadece biraz daha geniş padding */
@media (min-width: 768px) {
  .page {
    padding: 40px 24px 80px;
  }

  .btn-cta {
    padding: 18px 24px;
    font-size: 1.1rem;
  }
}
