:root {
  --bg: #0b0d13;
  --border: #1e2230;
  --text: #ffffff;
  --muted: #b6bdd6;
}

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

body {
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,143,220,.22), transparent 40%),
    radial-gradient(circle at bottom right, rgba(154,255,177,.18), transparent 45%),
    linear-gradient(180deg, #0b0d13 0%, #090a12 100%);
  color: var(--text);
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 60px;
  background: rgba(11,13,19,.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-left {
  display: flex;
  gap: 12px;
}

.logo { font-weight: 900; }

.season {
  font-size: 13px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

.nav-badge {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #9affb1;
  background: rgba(154,255,177,.12);
  border: 1px solid rgba(154,255,177,.35);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
}

.hero-badge {
  margin-bottom: 24px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  color: #9affb1;
  background: rgba(154,255,177,.12);
  border: 1px solid rgba(154,255,177,.35);
  display: inline-block;
}

.hero-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-title span {
  background: linear-gradient(135deg, #ff6ec7, #ffb6e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 38px;
}

.hero-btn {
  padding: 18px 36px;
  border-radius: 999px;
  font-weight: 800;
  color: black;
  text-decoration: none;
  background: linear-gradient(135deg, #ff3ea5, #ff86d0);
}

.hero-ip {
  margin-top: 28px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  gap: 14px;
}

.hero-ip button {
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  color: white;
}

/* VIDEO */
.hero-video {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SECTIONS */
.section-soft {
  padding: 100px 60px;
  border-top: 1px solid rgba(255,255,255,.04);
}

/* FEATURES */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}

.card {
  padding: 26px;
  border-radius: 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
}

/* FAQ – FIXED TYPOGRAPHY (KITSERA BALANCE) */
.faq-list {
  max-width: 820px;
}

.faq-item {
  margin-bottom: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  overflow: hidden;
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  color: white;
  font-weight: 800;
  font-size: 17px;          /* ⬅️ SORU BÜYÜDÜ */
  letter-spacing: .2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-size: 20px;
  color: var(--muted);
  transition: transform .35s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  color: var(--muted);
  font-size: 14.5px;        /* ⬅️ CEVAP KÜÇÜLDÜ */
  line-height: 1.6;
  transition:
    max-height .45s ease,
    padding .35s ease,
    opacity .3s ease;
  opacity: 0;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 180px;
  padding: 0 26px 22px;
  opacity: 1;
}

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


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

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  transition: .35s;
}

.gallery-item:hover img {
  filter: blur(2px);
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: .35s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* JOIN */
.join {
  text-align: center;
}

.gradient-text {
  background: linear-gradient(135deg, #ff8fdc, #9affb1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* FOOTER */
footer {
  padding: 60px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.discord-btn {
  padding: 14px 34px;
  border-radius: 999px;
  background: #5865F2;
  color: white;
  font-weight: 800;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-grid,
  .why-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 44px;
  }
}
