/* ========================================================
   Jojobet - Güvenli Ödeme Yöntemleri | style.css
   ======================================================== */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0d1117;
  --card-bg:   #161b22;
  --border:    #21262d;
  --green:     #39d353;
  --green-dim: #00a832;
  --gold:      #e6b800;
  --text:      #e6edf3;
  --muted:     #8b949e;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,.5);
  --container: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Headings ── */
h1,h2,h3,h4 { line-height: 1.25; }
h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text);
  margin-bottom: .5rem;
}
h3 { font-size: 1.15rem; color: var(--green); margin-bottom: .35rem; }

.section-sub {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: .98rem;
}

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(13,17,23,.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: .85rem;
  padding-bottom: .85rem;
}

.logo {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--green);
  flex-shrink: 0;
}
.logo:hover { text-decoration: none; }

.nav {
  display: flex;
  gap: 1.4rem;
  margin-left: auto;
}

.nav a {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.nav a:hover { color: var(--text); text-decoration: none; }

.btns { display: flex; gap: .65rem; margin-left: 1rem; }

.btn-login, .btn-reg {
  padding: .45rem 1.1rem;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 600;
  transition: .2s;
}
.btn-login {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn-login:hover { border-color: var(--green); color: var(--green); text-decoration: none; }
.btn-reg {
  background: var(--green);
  color: #0d1117;
}
.btn-reg:hover { background: #50e368; text-decoration: none; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0,0,0,.78) 45%, rgba(0,30,10,.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(230,237,243,.85);
  max-width: 540px;
  margin-bottom: 2rem;
}

.green { color: var(--green); }

.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #0d1117;
  font-weight: 700;
  font-size: 1rem;
  padding: .8rem 2rem;
  border-radius: 8px;
  transition: .2s;
  box-shadow: 0 0 24px rgba(57,211,83,.35);
}
.btn-primary:hover { background: #50e368; text-decoration: none; transform: translateY(-2px); }

/* ── Stats ── */
.stats { background: var(--card-bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 2.5rem 20px;
  gap: 1rem;
}

.stat { padding: 1rem; }

.stat .num {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--green);
  letter-spacing: -1px;
  line-height: 1.1;
}

.stat > div:last-child {
  font-size: .82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: .3rem;
}

/* ── Payment Methods ── */
.payment-section { padding: 5rem 0; }
.payment-section h2 { text-align: center; margin-bottom: .5rem; }

.pay-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.pay-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: .25s;
}
.pay-card:hover {
  border-color: var(--green-dim);
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(57,211,83,.12);
}

.pay-icon {
  font-size: 1.9rem;
  margin-bottom: .55rem;
  line-height: 1;
}

.pay-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .4rem;
}

.pay-info {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ── Games ── */
.games { padding: 5rem 0; background: #0f1420; }
.games h2 { text-align: center; margin-bottom: .5rem; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: .25s;
}
.box:hover {
  border-color: var(--green-dim);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.box h3 { font-size: 1.1rem; margin-bottom: .65rem; }
.box p { color: var(--muted); font-size: .9rem; }

/* ── Bonus ── */
.bonus {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0d1117 0%, #0a2e14 100%);
  text-align: center;
}

.bonus-main {
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(57,211,83,.25);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 0 60px rgba(57,211,83,.1);
}

.tag {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: .78rem;
  font-weight: 800;
  padding: .3rem .85rem;
  border-radius: 4px;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

.percent {
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: .75rem;
  text-shadow: 0 0 40px rgba(57,211,83,.4);
}

.bonus-main > p {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 1.8rem;
}

.btn {
  display: inline-block;
  background: var(--green);
  color: #0d1117;
  font-weight: 700;
  font-size: 1rem;
  padding: .8rem 2.2rem;
  border-radius: 8px;
  transition: .2s;
}
.btn:hover { background: #50e368; text-decoration: none; }

/* ── Article ── */
.article-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.article-section article { max-width: 820px; margin: 0 auto; }

.article-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
  color: var(--green);
}

.article-section h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin: 1.8rem 0 .6rem;
  padding-left: .75rem;
  border-left: 3px solid var(--green);
}

.article-section p {
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ── FAQ ── */
.faq {
  padding: 5rem 0;
  background: #0f1420;
}

.faq h2 { text-align: center; margin-bottom: 2.5rem; }

.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: var(--card-bg);
  border: none;
  color: var(--text);
  font-size: .98rem;
  font-weight: 600;
  padding: 1.1rem 1.4rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
}
.faq-q:hover { background: rgba(57,211,83,.07); }
.faq-q[aria-expanded="true"] { color: var(--green); }

.faq-icon {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--green);
  flex-shrink: 0;
  margin-left: .75rem;
}

.faq-a {
  background: #111820;
  padding: 1rem 1.4rem 1.25rem;
  border-top: 1px solid var(--border);
}
.faq-a p { color: var(--muted); font-size: .92rem; line-height: 1.7; }

/* ── Footer ── */
.footer {
  background: #080c10;
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  text-align: center;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: 2px;
  margin-bottom: .75rem;
}

.footer-desc {
  color: var(--muted);
  font-size: .88rem;
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.footer-links a { color: var(--muted); font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: var(--text); text-decoration: none; }

.footer-copy {
  color: #444d56;
  font-size: .78rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pay-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; gap: .75rem; }
  .nav { display: none; }
  .hero { min-height: 400px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pay-grid { grid-template-columns: repeat(2, 1fr); }
  .grid { grid-template-columns: 1fr; }
  .bonus-main { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .pay-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .btns { display: none; }
}
