@font-face {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/onest-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/onest-800.woff2') format('woff2');
}

:root {
  /* Koyu nötr zemin (logonun buz mavisiyle hafif serinletilmiş) */
  --bg:        #0a0c11;
  --bg2:       #0e1117;
  --panel:     #12151d;
  --panel2:    #181c25;

  /* PRIMARY — şık mat altın / bronz (butonlar & vurgular) */
  --gold:      #a29576;
  --gold-lt:   #cabfa1;
  --gold-hi:   #e6dcc4;
  --gold-dk:   #6f6551;

  /* SECONDARY — logo buz mavisi (ince aksanlar) */
  --blue:      #4d82bd;
  --blue-lt:   #8fc4e6;
  --blue-hi:   #cbe8ff;
  --blue-dk:   #223c66;
  --teal:      #4d82bd;
  --teal-lt:   #8fc4e6;
  --teal-dk:   #223c66;

  --discord:   #5865f2;

  /* Text */
  --text:      #dde2e8;
  --text2:     #b3ae9d;
  --muted:     #c6c1b3;

  --border:    rgba(162,149,118,.24);
  --sect-border: 1px solid rgba(162,149,118,.16);

  --font: 'Onest', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --maxw: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}
h1, h2, h3, h4, .font-head { font-family: var(--font); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.icon { width: 1em; height: 1em; fill: currentColor; flex-shrink: 0; }

/* Scroll fade-in */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform; }
.fade-in.visible { opacity: 1; transform: none; will-change: auto; }

/* Section arka plan görseli — düşük opaklık */
.has-bg { position: relative; }
.section-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  opacity: .07;
}
.section-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, var(--bg) 0%, transparent 30%, transparent 70%, var(--bg) 100%); }
.has-bg > .container,
.has-bg > .slider { position: relative; z-index: 2; }

/* Section heading */
.sec-head { text-align: center; margin-bottom: 54px; }
.sec-label {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 800; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.sec-label::before, .sec-label::after { content: ''; width: 26px; height: 1px; background: rgba(162,149,118,.5); }
.section-heading {
  font-family: var(--font); font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem); line-height: 1.14; color: #fff;
  letter-spacing: .5px;
}
.section-heading em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold-hi), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-desc { margin: 16px auto 0; color: var(--muted); font-size: .96rem; line-height: 1.85; max-width: 620px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 30px; font-family: var(--font);
  font-size: 13px; font-weight: 800; letter-spacing: 1.4px;
  text-transform: uppercase; border-radius: 6px; cursor: pointer; border: none;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
/* Primary — şık mat altın/bronz */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 45%, var(--gold-dk) 100%);
  color: #21201a;
  box-shadow: 0 4px 20px rgba(162,149,118,.3), inset 0 1px 0 rgba(255,255,255,.35);
  border: 1px solid rgba(162,149,118,.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(162,149,118,.5); }
.btn-primary .icon { color: #2a281f; }
/* Discord */
.btn-discord {
  background: linear-gradient(135deg, #7079f5 0%, var(--discord) 55%, #3c46c9 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(88,101,242,.35), inset 0 1px 0 rgba(255,255,255,.25);
  border: 1px solid rgba(120,130,250,.5);
}
.btn-discord:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(88,101,242,.55); }
.btn-discord .icon { color: #fff; }
/* Ghost */
.btn-ghost {
  background: rgba(255,255,255,.04); color: var(--gold-lt);
  border: 1px solid rgba(162,149,118,.35);
}
.btn-ghost:hover { background: rgba(162,149,118,.12); border-color: var(--gold); color: var(--gold-hi); transform: translateY(-2px); }

/* ============================= HEADER ============================= */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 200;
  transition: background .35s, border-color .35s, box-shadow .35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8,10,13,.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-color: rgba(162,149,118,.16);
  box-shadow: 0 6px 34px rgba(0,0,0,.55);
}
.header-inner {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 16px 40px; max-width: 1400px; margin: 0 auto;
}

/* Ortalanmış underline nav (ikonlu) + sağda Discord butonu */
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: 13px; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase; color: rgba(169,180,196,.75);
  padding: 8px 0; transition: color .22s;
}
.main-nav a .icon { font-size: 15px; color: var(--gold); transition: color .22s; }
.main-nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-hi));
  transition: right .28s ease; border-radius: 2px;
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover .icon { color: var(--gold-hi); }
.main-nav a:hover::after { right: 0; }
.main-nav a.active { color: var(--gold-hi); }
.main-nav a.active::after { right: 0; }

/* Sağda sabit Discord butonu */
.header-discord-btn {
  position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  padding: 10px 22px; font-size: 11px;
}
.header-discord-btn:hover { transform: translateY(-50%) translateY(-2px); }
.header-discord {
  display: flex; align-items: center; gap: 7px; padding: 9px 16px;
  border: 1px solid rgba(88,101,242,.35); border-radius: 6px;
  font-family: var(--font); font-size: 11px; font-weight: 700; letter-spacing: 1px;
  color: rgba(230,225,215,.82); background: rgba(88,101,242,.08); transition: all .2s;
}
.header-discord .icon { color: #7289da; font-size: 15px; }
.header-discord:hover { background: rgba(88,101,242,.18); border-color: rgba(88,101,242,.6); color: #fff; }

.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px; border-radius: 6px;
  -webkit-tap-highlight-color: transparent;
}
.burger span { display: block; width: 26px; height: 2px; background: var(--gold-lt); border-radius: 2px; transition: .3s; }

/* Mobile menu */
#mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 400;
  background: rgba(8,10,13,.98); flex-direction: column; align-items: center; justify-content: center;
}
#mobile-menu.open { display: flex; }
.mobile-close {
  position: absolute; top: 20px; right: 24px; background: none; border: none; cursor: pointer;
  color: rgba(202,191,161,.7); font-size: 1.8rem; line-height: 1; padding: 8px; transition: color .2s;
}
.mobile-close:hover { color: #fff; }
.mobile-nav { display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 320px; }
.mobile-nav a {
  display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 18px 0;
  font-family: var(--font); font-size: 1rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(202,191,161,.82); border-bottom: 1px solid rgba(255,255,255,.06); transition: color .2s;
}
.mobile-nav a:first-child { border-top: 1px solid rgba(255,255,255,.06); }
.mobile-nav a:hover { color: #fff; }
.mobile-nav a .icon { font-size: 1rem; }

/* ============================= HERO ============================= */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden; text-align: center; padding: 120px 20px 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: #06080b url('../img/hero-bg.jpg') center/cover no-repeat;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, transparent 20%, rgba(6,8,11,.6) 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,8,11,.55) 0%, rgba(6,8,11,.35) 45%, rgba(10,12,16,.97) 100%);
}
.hero-content {
  position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center;
  animation: hero-in .9s cubic-bezier(.2,.8,.3,1) both;
}
@keyframes hero-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.hero-logo {
  max-width: 460px; width: 88%; height: auto;
  filter: drop-shadow(0 0 50px rgba(74,143,176,.4)) drop-shadow(0 10px 30px rgba(0,0,0,.9));
  animation: logo-glow 5s ease-in-out infinite; margin-bottom: 22px;
}
@keyframes logo-glow {
  0%,100% { filter: drop-shadow(0 0 50px rgba(74,143,176,.4)) drop-shadow(0 10px 30px rgba(0,0,0,.9)); }
  50%     { filter: drop-shadow(0 0 80px rgba(134,188,214,.6)) drop-shadow(0 10px 30px rgba(0,0,0,.9)); }
}
.hero-tagline {
  font-family: var(--font); font-size: clamp(1.4rem, 3vw, 2.3rem); font-weight: 800;
  letter-spacing: 4px; text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-hi) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 16px;
}
.hero-sub { color: var(--muted); font-size: 1.02rem; max-width: 560px; margin-bottom: 26px; }
.hero-meta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 34px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px;
  background: rgba(18,21,28,.8); border: 1px solid rgba(162,149,118,.32); border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  font-family: var(--font); font-size: .92rem; font-weight: 700; letter-spacing: 1px; color: var(--gold-lt);
}
.hero-chip .icon { color: var(--gold); font-size: 1.05em; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 50px; }
.hero-actions .btn { padding: 16px 38px; font-size: 14px; }

/* Countdown */
.hero-countdown { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.countdown-label {
  font-family: var(--font); font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(182,174,155,.6); display: flex; align-items: center; gap: 12px;
}
.countdown-label::before, .countdown-label::after { content: ''; width: 40px; height: 1px; background: rgba(162,149,118,.3); }
.countdown-row { display: flex; gap: 8px; align-items: flex-start; }
.cd-sep { font-family: var(--font); font-size: 1.6rem; font-weight: 800; color: rgba(162,149,118,.35); margin-top: 12px; }
.cd-unit {
  width: 88px; padding: 16px 8px 12px;
  background: linear-gradient(180deg, rgba(23,27,35,.9), rgba(12,14,19,.5));
  border: 1px solid rgba(162,149,118,.28); border-radius: 6px; text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04);
}
.cd-unit .num { font-family: var(--font); font-size: 2.2rem; font-weight: 800; color: var(--gold-hi); line-height: 1; }
.cd-unit .lbl { margin-top: 8px; font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.75); }

/* ====================== EARN MONEY SECTION ====================== */
.earn-section {
  position: relative; overflow: hidden; padding: 100px 0; border-bottom: var(--sect-border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}
.earn-glow { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse at 80% 40%, rgba(162,149,118,.12) 0%, transparent 55%),
              radial-gradient(ellipse at 12% 75%, rgba(74,143,176,.12) 0%, transparent 55%); }
.earn-inner {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center;
}
.earn-text h2 {
  font-family: var(--font); font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 800; color: #fff;
  line-height: 1.15; margin-bottom: 20px; letter-spacing: .5px;
}
.earn-text h2 .hl { background: linear-gradient(90deg, var(--gold-hi), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.earn-text p { color: var(--muted); font-size: .98rem; line-height: 1.9; margin-bottom: 18px; max-width: 560px; }
.earn-points { display: flex; flex-direction: column; gap: 14px; margin: 26px 0 30px; }
.earn-point { display: flex; align-items: flex-start; gap: 14px; }
.earn-point .ep-ic {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--gold-hi);
  background: linear-gradient(135deg, rgba(162,149,118,.28), rgba(23,27,35,.7));
  border: 1px solid rgba(162,149,118,.4); box-shadow: 0 0 16px rgba(0,0,0,.3);
}
.earn-point h4 { font-family: var(--font); font-size: 1rem; color: #fff; margin-bottom: 3px; font-weight: 700; }
.earn-point p { margin: 0; font-size: .9rem; color: var(--text2); }

.earn-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.earn-card {
  width: 100%; max-width: 420px; padding: 40px 34px; border-radius: 18px; text-align: center;
  background: linear-gradient(160deg, var(--panel2), var(--bg));
  border: 1px solid rgba(162,149,118,.28);
  box-shadow: 0 24px 70px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.04);
  position: relative; overflow: hidden;
}
.earn-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(162,149,118,.18), transparent 60%); pointer-events: none; }
.earn-card .ec-coin {
  width: 92px; height: 92px; margin: 0 auto 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 42px; color: #2a281f;
  background: radial-gradient(circle at 35% 30%, var(--gold-hi), var(--gold) 55%, var(--gold-dk));
  box-shadow: 0 0 34px rgba(162,149,118,.5), inset 0 2px 6px rgba(255,255,255,.5);
  animation: coin-float 3.5s ease-in-out infinite;
}
@keyframes coin-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.earn-card h3 { font-family: var(--font); font-size: 1.3rem; color: #fff; margin-bottom: 10px; font-weight: 800; }
.earn-card p { font-size: .9rem; color: var(--text2); line-height: 1.8; margin-bottom: 22px; }
.earn-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 999px;
  font-family: var(--font); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--teal-lt); background: rgba(74,143,176,.12); border: 1px solid rgba(74,143,176,.35);
}
.earn-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-lt); box-shadow: 0 0 8px var(--teal-lt); }

/* ======================= SYSTEMS SLIDER ======================= */
.systems-section { position: relative; overflow: hidden; padding: 100px 0; border-bottom: var(--sect-border);
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%); }
.slider {
  position: relative; margin-top: 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.slider-viewport { overflow: hidden; padding: 30px 0 40px; }
.slider-track {
  display: flex; align-items: stretch; gap: 26px;
  transition: transform .5s cubic-bezier(.25,.8,.3,1);
  will-change: transform; touch-action: pan-y;
}
/* Dikey kart: görsel üstte, yazı altta */
.sys-card {
  flex: 0 0 340px; width: 340px;
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--panel2) 0%, var(--bg) 100%);
  border: 1px solid rgba(162,149,118,.2); border-radius: 16px; overflow: hidden;
  transition: opacity .5s ease, transform .5s ease, box-shadow .5s ease, border-color .5s ease;
  opacity: .3; transform: scale(.88); filter: saturate(.75);
}
.sys-card.is-active {
  opacity: 1; transform: scale(1); filter: none;
  border-color: rgba(162,149,118,.6);
  box-shadow: 0 22px 60px rgba(0,0,0,.5), 0 0 24px rgba(162,149,118,.18), 0 0 0 1px rgba(162,149,118,.2);
}
.sys-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg2); }
.sys-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.sys-card.is-active:hover .sys-media img { transform: scale(1.05); }
.sys-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,12,16,.9) 100%);
}
.sys-body { padding: 22px 24px 26px; text-align: center; }
.sys-tag {
  display: inline-block; font-family: var(--font); font-size: 10px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.sys-body h3 {
  font-family: var(--font); font-size: 1.25rem; font-weight: 800; color: #fff;
  letter-spacing: .6px; text-transform: uppercase; margin-bottom: 10px;
}
.sys-body p { color: var(--muted); font-size: .92rem; line-height: 1.8; }

.slider-nav { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 10px; }
.slider-btn {
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  background: linear-gradient(135deg, rgba(162,149,118,.18), rgba(23,27,35,.7));
  border: 1px solid rgba(162,149,118,.35); color: var(--gold-lt);
  transition: all .22s ease;
}
.slider-btn:hover { background: linear-gradient(135deg, var(--gold), var(--gold-dk)); color: #1a1913; border-color: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.4); }
.slider-btn:active { transform: translateY(0); }
.slider-dots { display: flex; gap: 10px; }
.slider-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer; padding: 0;
  background: rgba(162,149,118,.3); transition: all .25s ease;
}
.slider-dots button.active { background: linear-gradient(135deg, var(--gold-hi), var(--gold)); transform: scale(1.3); box-shadow: 0 0 10px rgba(162,149,118,.6); }

/* ====================== PARTNERS ====================== */
.partners-section {
  position: relative; overflow: hidden; padding: 100px 0; border-bottom: var(--sect-border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}
.partners-section::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(74,143,176,.12), transparent 55%); }
.partners-section .container { position: relative; z-index: 2; }
.sc-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.sc-card {
  display: flex; flex-direction: column; align-items: center;
  background: linear-gradient(180deg, var(--panel2) 0%, var(--bg) 100%);
  border: 1px solid rgba(162,149,118,.2); border-radius: 12px; overflow: hidden; padding-bottom: 16px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.sc-card:hover { border-color: rgba(162,149,118,.5); box-shadow: 0 8px 28px rgba(0,0,0,.4); transform: translateY(-4px); }
.sc-badge {
  display: block; width: 100%; text-align: center; font-family: var(--font); font-size: 9px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold-hi);
  background: linear-gradient(90deg, rgba(36,74,92,.5), rgba(162,149,118,.22), rgba(36,74,92,.5));
  border-bottom: 1px solid rgba(162,149,118,.3); padding: 7px 4px; margin-bottom: 16px;
}
.sc-ring {
  width: 92px; height: 92px; border-radius: 50%; padding: 3px; margin-bottom: 12px;
  background: linear-gradient(135deg, var(--teal-dk), var(--gold), var(--teal-dk));
  box-shadow: 0 0 16px rgba(0,0,0,.4); transition: box-shadow .25s;
}
.sc-card:hover .sc-ring { box-shadow: 0 0 24px rgba(134,188,214,.5); }
.sc-ring img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid var(--bg); }
.sc-name { font-family: var(--font); font-size: .74rem; font-weight: 800; color: #fff; letter-spacing: .5px; text-transform: uppercase; text-align: center; padding: 0 8px; }
.sc-plat { margin-top: 6px; font-family: var(--font); font-size: 10px; letter-spacing: 1px; color: var(--teal-lt); font-weight: 700; text-transform: uppercase; }

/* ====================== CTA ====================== */
.cta-section { position: relative; overflow: hidden; padding: 130px 0;
  background: linear-gradient(180deg, var(--bg2), var(--bg)); }
.cta-glow { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse at 25% 50%, rgba(162,149,118,.16) 0%, transparent 55%),
             radial-gradient(ellipse at 85% 50%, rgba(74,143,176,.12) 0%, transparent 55%); }
.cta-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.cta-text h2 { font-family: var(--font); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: .5px; }
.cta-text h2 em { font-style: normal; color: var(--gold-hi); }
.cta-actions { display: flex; flex-direction: column; gap: 12px; min-width: 240px; }
/* Discord ve Oyunu İndir butonları birebir aynı ebat */
.cta-actions .btn { width: 100%; padding: 15px 30px; font-size: 13px; }

/* ====================== FOOTER ====================== */
.site-footer {
  background: radial-gradient(circle at top, rgba(74,143,176,.1), transparent 60%), linear-gradient(180deg, var(--bg2), #05070a);
  position: relative; overflow: hidden; border-top: 2px solid rgba(162,149,118,.28); padding: 60px 0 24px;
}
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; align-items: start; }
.footer-brand img { height: 54px; width: auto; margin-bottom: 20px; filter: drop-shadow(0 10px 28px rgba(0,0,0,.6)); }
.footer-brand p { font-size: .88rem; line-height: 1.85; color: var(--text2); margin-bottom: 22px; max-width: 420px; }
.footer-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600; color: var(--gold-lt);
  border: 1px solid rgba(162,149,118,.28); background: rgba(162,149,118,.08);
}
.footer-chip .icon { color: var(--gold); font-size: .9rem; }
.footer-col h4 { font-family: var(--font); font-size: .72rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: .9rem; color: var(--text2); transition: color .2s, padding-left .2s; display: block; }
.footer-col ul li a:hover { color: #fff; padding-left: 6px; }
.footer-socials { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.fsn-item {
  display: flex; align-items: center; justify-content: center; gap: 9px; padding: 10px; border-radius: 10px;
  font-size: .82rem; font-weight: 600; border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.03); color: rgba(255,255,255,.75); transition: all .22s;
}
.fsn-item .icon { font-size: 1rem; }
.fsn-item:hover { transform: translateY(-2px); color: #fff; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.07); }
.fsn-item.discord .icon { color: #7289da; }
.fsn-item.instagram .icon { color: #e1306c; }
.fsn-item.facebook .icon { color: #1877f2; }
.fsn-item.youtube .icon { color: #ff0000; }
.fsn-item.tiktok .icon { color: #fff; }
.footer-bottom {
  padding-top: 22px; margin-top: 44px; border-top: 1px solid rgba(162,149,118,.14);
  display: flex; justify-content: space-between; align-items: center; gap: 15px; flex-wrap: wrap;
}
.footer-bottom .copy { font-size: .8rem; color: rgba(182,174,155,.9); }
.footer-bottom .legal { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.footer-bottom .legal a { font-size: .8rem; color: var(--text2); transition: color .2s; }
.footer-bottom .legal a:hover { color: #fff; }
.footer-bottom .legal span { color: rgba(182,174,155,.5); margin: 0 6px; }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1060px) {
  .earn-inner { grid-template-columns: 1fr; gap: 44px; }
  .earn-visual { order: -1; }
  .sc-grid { grid-template-columns: repeat(4, 1fr); }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: row; min-width: unset; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .main-nav, .header-discord-btn { display: none; }
  .burger { display: flex; }
  .header-inner { justify-content: flex-end; }
  .sys-card { flex: 0 0 300px; width: 300px; }
}
@media (max-width: 680px) {
  .container { padding: 0 20px; }
  .earn-section, .systems-section, .partners-section, .cta-section { padding: 72px 0; }
  .sc-grid { grid-template-columns: repeat(3, 1fr); }
  .sc-ring { width: 74px; height: 74px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .cta-actions { flex-direction: column; }
  .hero-logo { max-width: 320px; }
  .cd-unit { width: 70px; padding: 13px 6px 10px; }
  .cd-unit .num { font-size: 1.7rem; }
  .cd-sep { font-size: 1.3rem; }
  .countdown-row { gap: 5px; }
  .sys-card { flex: 0 0 82vw; width: 82vw; padding: 28px 22px; }
  .slider-track { gap: 16px; }
}
@media (max-width: 420px) {
  .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .sc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .fade-in { opacity: 1; transform: none; }
  .slider-track { transition: none; }
}

/* ---- Earn görseli — yazıya dönük 3D salınım + süzülme ---- */
.earn-figure { position: relative; display: flex; align-items: center; justify-content: center; perspective: 1000px; }
.earn-figure::after {
  content: ''; position: absolute; width: 78%; height: 26px; left: 11%; bottom: -6px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,.55), transparent 70%);
  filter: blur(6px); animation: earnShadow 6s ease-in-out infinite;
}
.earn-img {
  width: 100%; max-width: 460px; height: auto; border-radius: 14px;
  transform-style: preserve-3d;
  filter: drop-shadow(0 22px 40px rgba(0,0,0,.55)) drop-shadow(0 0 34px rgba(162,149,118,.25));
  animation: earnFloat 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes earnFloat {
  0%   { transform: translateY(0)     rotateY(-14deg) rotateZ(-1deg); }
  50%  { transform: translateY(-16px) rotateY(-6deg)  rotateZ(1deg); }
  100% { transform: translateY(0)     rotateY(-14deg) rotateZ(-1deg); }
}
@keyframes earnShadow {
  0%,100% { transform: scale(1);   opacity: .55; }
  50%     { transform: scale(.86); opacity: .35; }
}
@media (prefers-reduced-motion: reduce) {
  .earn-img { animation: none; transform: rotateY(-10deg); }
  .earn-figure::after { animation: none; }
}

/* ---- Partner: alt "Seri Partner" parlak degrade ---- */
.sc-plat.sc-seri {
  font-weight: 800;
  background: linear-gradient(90deg, #cba36a 0%, #fff2cf 25%, #e6cfa0 50%, #fff2cf 75%, #cba36a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: sc-shine 3s linear infinite;
  text-shadow: none;
}
@keyframes sc-shine { to { background-position: -200% center; } }
@media (prefers-reduced-motion: reduce) { .sc-plat.sc-seri { animation: none; } }

/* ---- Earn görseli daha büyük ---- */
.earn-img { max-width: 560px; }
@media (min-width: 1061px) { .earn-inner { grid-template-columns: 1fr 1.15fr; } }

/* ---- Popup: Yakında ---- */
.soon-overlay {
  position: fixed; inset: 0; z-index: 9000; display: flex; align-items: center; justify-content: center;
  padding: 20px; background: rgba(6,8,11,.8); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility .28s ease;
}
.soon-overlay.open { opacity: 1; visibility: visible; }
.soon-box {
  position: relative; width: 100%; max-width: 440px; text-align: center;
  padding: 46px 34px 34px; border-radius: 18px;
  background: linear-gradient(180deg, #171c25, #0c0f15);
  border: 1px solid rgba(162,149,118,.35);
  box-shadow: 0 30px 80px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.05);
  transform: translateY(14px) scale(.97); transition: transform .28s cubic-bezier(.2,.8,.3,1);
}
.soon-overlay.open .soon-box { transform: none; }
.soon-close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 9px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: var(--text2);
  cursor: pointer; font-size: 1rem; transition: all .2s;
}
.soon-close:hover { background: rgba(162,149,118,.2); color: #fff; border-color: var(--gold); }
.soon-icon {
  width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; font-size: 30px; color: var(--gold-hi);
  background: linear-gradient(135deg, rgba(162,149,118,.28), rgba(23,27,35,.7));
  border: 1px solid rgba(162,149,118,.45); box-shadow: 0 0 26px rgba(162,149,118,.25);
}
.soon-box h3 {
  font-family: var(--font); font-weight: 800; font-size: 1.4rem; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--gold-hi), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.soon-box p { color: var(--muted); font-size: .96rem; line-height: 1.8; margin-bottom: 24px; }
.soon-socials { display: flex; gap: 10px; justify-content: center; }
.soon-socials .fsn-item { flex: 1; max-width: 130px; }

/* ---- Bölüme özel arka planlar (CTA hero-bg olarak kalır) ---- */
#kazan .section-bg    { background-image: url('../img/legalsatis-bg.png'); }
#partners .section-bg { background-image: url('../img/partner-bg.jpg'); }
