/* =============================================
   Jojobet - Canlı Destek Hattı
   style.css
   ============================================= */

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

:root {
  --blue: #1a6af0;
  --blue-dark: #1250c0;
  --red: #d41e3c;
  --red-dark: #a81530;
  --bg: #08080f;
  --bg2: #0e1120;
  --bg3: #141830;
  --text: #e8eaf6;
  --text-muted: #9ba3c0;
  --gold: #f5c500;
  --border: #1e2848;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,.55);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- HEADER ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(8,8,18,.96);
  border-bottom: 2px solid var(--blue);
  padding: 14px 0;
  backdrop-filter: blur(8px);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(245,197,0,.4);
}

.nav {
  display: flex;
  gap: 28px;
}

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

.nav a:hover { color: #fff; }

.btns { display: flex; gap: 10px; }

.btn-login {
  padding: 8px 20px;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  color: var(--blue);
  font-weight: 700;
  font-size: .88rem;
  transition: all .2s;
}

.btn-login:hover { background: var(--blue); color: #fff; }

.btn-reg {
  padding: 8px 20px;
  background: var(--red);
  border-radius: var(--radius);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  transition: background .2s;
}

.btn-reg:hover { background: var(--red-dark); }

/* ---- 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;
  object-position: center;
  z-index: 0;
  max-width: 1920px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8,8,18,.88) 50%, rgba(8,8,18,.55));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
}

.badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  padding: 14px 32px;
  background: var(--blue);
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  transition: all .2s;
  box-shadow: 0 0 20px rgba(26,106,240,.4);
}

.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }

.btn-secondary {
  padding: 14px 32px;
  background: var(--red);
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  transition: all .2s;
}

.btn-secondary:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ---- STATS ---- */
.stats {
  background: var(--bg2);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.stat { padding: 20px; border-radius: var(--radius); }
.blue-stat { background: rgba(26,106,240,.12); border: 1px solid rgba(26,106,240,.3); }
.red-stat  { background: rgba(212,30,60,.12);  border: 1px solid rgba(212,30,60,.3); }

.stat .num {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.stat > div:last-child {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ---- FEATURES ---- */
.features {
  padding: 80px 0;
}

.features h2, .games h2, .bonus h2, .article-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 30px;
  border-radius: var(--radius);
  transition: transform .2s;
}

.feature-card:hover { transform: translateY(-4px); }

.blue-card {
  background: rgba(26,106,240,.1);
  border: 1px solid rgba(26,106,240,.35);
}

.red-card {
  background: rgba(212,30,60,.1);
  border: 1px solid rgba(212,30,60,.35);
}

.feature-card .icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.feature-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- GAMES ---- */
.games {
  padding: 80px 0;
  background: var(--bg2);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.game-box {
  padding: 30px 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s;
}

.game-box:hover { transform: translateY(-4px); }

.blue-box { background: var(--bg3); border: 1px solid rgba(26,106,240,.4); }
.red-box  { background: var(--bg3); border: 1px solid rgba(212,30,60,.4); }

.game-icon { font-size: 2.4rem; }

.game-box h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.game-box p {
  font-size: .88rem;
  color: var(--text-muted);
  flex: 1;
}

.game-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 9px 20px;
  background: var(--blue);
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  transition: background .2s;
}

.game-btn:hover { background: var(--blue-dark); }

/* ---- BONUS ---- */
.bonus {
  padding: 80px 0;
}

.bonus .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.bonus-main {
  background: var(--bg2);
  border: 2px solid var(--blue);
  border-radius: 16px;
  padding: 44px 36px;
  text-align: center;
}

.bonus-tag {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.bonus-percent {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}

.bonus-main h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.bonus-main p {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.btn-bonus {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: var(--radius);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  transition: opacity .2s;
  box-shadow: 0 0 24px rgba(26,106,240,.45);
}

.btn-bonus:hover { opacity: .88; }

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bonus-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
}

.bonus-item span { font-size: 1.4rem; }

.blue-item {
  background: rgba(26,106,240,.1);
  border: 1px solid rgba(26,106,240,.3);
}

.red-item {
  background: rgba(212,30,60,.1);
  border: 1px solid rgba(212,30,60,.3);
}

/* ---- ARTICLE SECTION ---- */
.article-section {
  padding: 80px 0;
  background: var(--bg2);
}

.article-inner {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 44px 40px;
}

.article-inner h2 {
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
}

.article-block {
  margin-bottom: 36px;
}

.article-block h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.article-block p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---- SSS SECTION ---- */
.sss-section {
  padding: 80px 0;
}

.sss-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 48px;
}

.sss-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.sss-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.sss-item h4 {
  font-size: .95rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
}

.sss-item p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bg2);
  border-top: 2px solid var(--border);
  padding: 48px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}

.footer-brand .logo {
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 380px;
  margin-bottom: 14px;
}

.license {
  font-size: .8rem;
  color: var(--text-muted);
  background: rgba(255,255,255,.05);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 6px;
}

.footer-links h4 {
  font-size: .9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: color .2s;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted);
}

/* ---- COLOR HELPERS ---- */
.blue { color: var(--blue); }
.red  { color: var(--red); }
.gold { color: var(--gold); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .bonus .container { grid-template-columns: 1fr; }
  .sss-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 600px) {
  .nav { display: none; }
  .hero-content h1 { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .article-inner { padding: 24px 18px; }
}
