/* ===== Variables ===== */
:root {
  --gold: #d4a843;
  --gold-light: #f0d078;
  --gold-dark: #9a7420;
  --crimson: #8b1a1a;
  --crimson-light: #c42b2b;
  --crimson-dark: #5c0f0f;
  --bg: #0a0a0c;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a26;
  --border: rgba(212, 168, 67, 0.2);
  --border-strong: rgba(212, 168, 67, 0.45);
  --text: #e8e4dc;
  --text-muted: #9a958a;
  --discord: #5865f2;
  --youtube: #ff0033;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-gold: 0 0 40px rgba(212, 168, 67, 0.15);
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ===== Rising Sparks (DeathKO style) ===== */
.sparks-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 50;
  mix-blend-mode: screen;
  opacity: 0.72;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    linear-gradient(180deg, rgba(20, 14, 8, 0.98) 0%, rgba(8, 6, 4, 0.96) 100%);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid #3d2810;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 0;
}
.nav__brand { flex-shrink: 0; }
.nav__logo {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.nav__links {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}
.nav__mobile-actions {
  display: none;
  list-style: none;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--gold); }

/* ===== Language Switcher ===== */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  margin-left: 1rem;
  padding: 4px 6px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.lang-switch__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 4px;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.2s, border-color 0.2s, transform 0.15s;
}
.lang-switch__btn img {
  display: block;
  width: 20px;
  height: auto;
  image-rendering: pixelated;
}
.lang-switch__btn:hover {
  opacity: 1;
  transform: scale(1.08);
}
.lang-switch__btn--active {
  opacity: 1;
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(212, 168, 67, 0.35);
}

/* ===== Social Bar ===== */
.social-bar {
  margin-bottom: 2.5rem;
  text-align: center;
}
.social-bar__title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.social-bar__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}
.social-bar__link {
  display: block;
  transition: transform 0.2s, filter 0.2s;
  line-height: 0;
}
.social-bar__link:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.12);
}
.social-bar__link img {
  height: 42px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}
.social-bar__links--hero {
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.social-bar__links--hero .social-bar__link img {
  height: 58px;
  max-width: none;
  width: min(240px, 22vw);
}
.social-bar--footer {
  margin: 1.25rem 0;
}
.social-bar--footer .social-bar__link img {
  height: 36px;
}

/* ===== Quick card icons ===== */
.quick-card__img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 0.25rem;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}
.quick-card__img--wa {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  width: 52px;
  height: 52px;
}
.quick-card__img--whatsapp {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 10px;
}

/* ===== Video hint ===== */
.video-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 5;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(212, 168, 67, 0.4);
  border-radius: 6px;
  font-size: 0.72rem;
  color: #d4a843;
  pointer-events: none;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

/* ===== Knight Online Buttons ===== */
.ko-nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.ko-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 132px;
  height: 36px;
  padding: 0 16px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1008;
  text-shadow: 0 1px 0 rgba(255, 248, 220, 0.45);
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(255, 248, 230, 0.9) 0%, transparent 55%),
    linear-gradient(180deg, #f3e6c8 0%, #e6d4a8 28%, #d4bc86 62%, #c4a66e 100%);
  border: 2px solid #4a3018;
  border-radius: 3px;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.55),
    inset 0 -3px 6px rgba(80, 50, 20, 0.25),
    0 0 0 1px #a07828,
    0 0 0 3px #2a1808,
    0 3px 8px rgba(0, 0, 0, 0.55);
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.ko-btn::before {
  content: '';
  position: absolute;
  inset: 4px 5px;
  border: 1px solid rgba(120, 85, 30, 0.35);
  border-radius: 1px;
  pointer-events: none;
}
.ko-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 40%, rgba(0,0,0,0.06) 100%);
  pointer-events: none;
}
.ko-btn svg {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 15px;
  fill: #2a1808;
  flex-shrink: 0;
}
.ko-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.65),
    inset 0 -3px 6px rgba(80, 50, 20, 0.2),
    0 0 0 1px #c49a38,
    0 0 0 3px #2a1808,
    0 5px 14px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(212, 168, 67, 0.15);
}
.ko-btn:active {
  transform: translateY(1px);
  filter: brightness(0.92);
  box-shadow:
    inset 0 3px 8px rgba(80, 50, 20, 0.35),
    0 0 0 1px #a07828,
    0 0 0 3px #2a1808,
    0 1px 3px rgba(0, 0, 0, 0.5);
}
.ko-btn--lg {
  min-width: 168px;
  height: 42px;
  padding: 0 22px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}
.ko-btn--xl {
  min-width: 210px;
  height: 50px;
  padding: 0 28px;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
}
.ko-btn--lg svg,
.ko-btn--xl svg {
  width: 17px;
  height: 17px;
}

.ko-toolbar {
  display: none;
  padding: 0.65rem 0;
  background: #080604;
  border-top: 1px solid rgba(61, 40, 16, 0.6);
}
.ko-nav--toolbar {
  justify-content: center;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.ko-nav--toolbar::-webkit-scrollbar { display: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn--sm { padding: 0.45rem 0.9rem; font-size: 0.8rem; }
.btn--lg { padding: 0.85rem 1.75rem; font-size: 1rem; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #1a1000;
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 168, 67, 0.45);
}
.btn--outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--gold-light);
}
.btn--outline:hover {
  background: rgba(212, 168, 67, 0.08);
  border-color: var(--gold);
}
.btn--discord {
  background: var(--discord);
  color: #fff;
}
.btn--discord:hover { background: #4752c4; transform: translateY(-2px); }
.btn--whatsapp {
  background: #25d366;
  color: #fff;
}
.btn--whatsapp:hover { background: #1ebe57; transform: translateY(-2px); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 4rem 0 5rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139, 26, 26, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(212, 168, 67, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0f0a0a 0%, var(--bg) 100%);
}
.hero__particles {
  display: none;
}

/* ===== Countdown ===== */
.countdown-block {
  margin-bottom: 2rem;
}
.countdown-block__soon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.countdown-block__diamond {
  color: var(--gold);
  font-size: 0.55rem;
  opacity: 0.85;
}
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
  padding: 0.85rem 0.65rem 0.65rem;
  background: rgba(8, 5, 2, 0.75);
  border: 1px solid rgba(212, 168, 67, 0.45);
  border-radius: 6px;
  box-shadow:
    0 0 20px rgba(212, 168, 67, 0.12),
    inset 0 0 24px rgba(212, 168, 67, 0.06);
}
.countdown__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1;
  color: #ffd878;
  text-shadow:
    0 0 12px rgba(255, 180, 60, 0.9),
    0 0 28px rgba(255, 140, 30, 0.55),
    0 0 48px rgba(255, 100, 20, 0.25);
}
.countdown__num--flip {
  animation: countdownFlip 0.35s ease;
}
@keyframes countdownFlip {
  0% { transform: translateY(-6px); opacity: 0.4; }
  100% { transform: translateY(0); opacity: 1; }
}
.countdown__lbl {
  margin-top: 0.45rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.countdown__sep {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(212, 168, 67, 0.5);
  margin-top: -1rem;
  user-select: none;
}
.countdown-block__date {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.countdown--live .countdown__num {
  color: #6dff8a;
  text-shadow: 0 0 20px rgba(80, 255, 120, 0.6);
}
.hero__content {
  position: relative;
  text-align: center;
  z-index: 1;
}
.hero__badge {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__logo {
  width: min(320px, 75vw);
  height: auto;
  margin: 0 auto 1.5rem;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(212, 168, 67, 0.4));
  animation: float 4s ease-in-out infinite;
}
.hero__victoria {
  width: min(1080px, 98vw);
  height: auto;
  margin: 0 auto 1.75rem;
  display: block;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid rgba(212, 168, 67, 0.3);
  filter: drop-shadow(0 0 32px rgba(212, 168, 67, 0.4));
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero__title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}
.hero__title-main {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.08em;
}
.hero__title-sub {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 600;
  color: var(--crimson-light);
  letter-spacing: 0.25em;
}
.hero__desc {
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}
.hero__desc strong { color: var(--gold-light); }
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 0;
}
.ko-nav--hero {
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}
.stat {
  padding: 1rem;
  background: rgba(18, 18, 26, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.stat__label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== Quick Links ===== */
.quick-links {
  padding: 0 0 3rem;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}
.quick-links__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.quick-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.25s;
}
.quick-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.quick-card--whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.15);
}
.quick-card__icon { font-size: 1.5rem; }
.quick-card__title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-light);
}
.quick-card__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== Sections ===== */
.section {
  padding: 5rem 0;
}
.section--dark {
  background: linear-gradient(180deg, transparent, rgba(18, 18, 26, 0.6), transparent);
}
.section--arthaux {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(92, 15, 15, 0.25) 0%, transparent 60%),
    var(--bg);
  border-top: 1px solid rgba(139, 26, 26, 0.3);
  border-bottom: 1px solid rgba(139, 26, 26, 0.3);
}
.section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.section__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section__tag--legacy { color: var(--crimson-light); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.section__subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ===== Info Grid ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.info-panel {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.info-panel h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}
.info-panel--highlight {
  border-color: rgba(196, 43, 43, 0.4);
  background: linear-gradient(135deg, rgba(92, 15, 15, 0.2), var(--bg-card));
}
.info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}
.info-list li span { color: var(--text-muted); }
.info-list li strong { color: var(--text); font-weight: 600; }
.info-panel__note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.tag--removed {
  background: rgba(196, 43, 43, 0.15);
  border: 1px solid rgba(196, 43, 43, 0.4);
  color: #ff6b6b;
  text-decoration: line-through;
}
.feature-mini li {
  padding: 0.45rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.feature-mini li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 0.65rem;
}
.quote-block {
  text-align: center;
  padding: 2rem;
  border-left: 3px solid var(--gold);
  background: rgba(212, 168, 67, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.quote-block cite {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Features Grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.25s;
}
.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.feature-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(212, 168, 67, 0.2);
  margin-bottom: 0.5rem;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ===== Video ===== */
.video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-strong);
  box-shadow: var(--shadow-gold);
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-wrap--arthaux {
  border-color: rgba(196, 43, 43, 0.4);
  box-shadow: 0 0 40px rgba(139, 26, 26, 0.2);
}
.video-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* ===== Promo Gallery (Tanıtım Konusu) ===== */
.promo-gallery {
  margin-top: 2rem;
  text-align: center;
}
.promo-gallery__header {
  width: min(720px, 100%);
  height: auto;
  margin: 0 auto 1.25rem;
  display: block;
  border-radius: var(--radius);
  border: 2px solid var(--border-strong);
  box-shadow: var(--shadow-gold);
}
.promo-gallery__body {
  max-width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-strong);
  box-shadow: var(--shadow-gold);
  background: var(--bg-card);
}
.promo-gallery__image {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
.promo-gallery__action {
  margin-top: 1.5rem;
}

/* ===== ARTHAUX ===== */
.arthaux-banner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, rgba(92, 15, 15, 0.3), rgba(18, 18, 26, 0.9));
  border: 1px solid rgba(196, 43, 43, 0.35);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}
.arthaux-banner h3 {
  font-family: var(--font-display);
  color: var(--crimson-light);
  margin-bottom: 0.5rem;
}
.arthaux-banner p {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 700px;
}
.arthaux-banner__badge {
  flex-shrink: 0;
  padding: 0.5rem 1.25rem;
  background: var(--crimson-dark);
  border: 1px solid var(--crimson-light);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-light);
}
.arthaux-playlist {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.playlist-item {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--bg-card);
}
.playlist-item:hover { border-color: var(--border-strong); }
.playlist-item.active {
  border-color: var(--crimson-light);
  box-shadow: 0 0 16px rgba(196, 43, 43, 0.4);
}
.playlist-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.playlist-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.playlist-item:hover .playlist-item__overlay,
.playlist-item.active .playlist-item__overlay { opacity: 1; }
.playlist-item__num {
  position: absolute;
  top: 4px;
  left: 4px;
  background: rgba(0,0,0,0.7);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

/* ===== Links Grid ===== */
.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.link-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.25s;
  position: relative;
}
.link-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  padding-left: 1.75rem;
}
.link-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.link-card__title {
  font-weight: 600;
  font-size: 1rem;
}
.link-card__arrow {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  opacity: 0;
  transition: all 0.25s;
}
.link-card:hover .link-card__arrow {
  opacity: 1;
  right: 1rem;
}
.link-card--discord:hover { border-color: var(--discord); }
.link-card--youtube:hover { border-color: var(--youtube); }
.link-card--whatsapp:hover { border-color: #25d366; }

/* ===== Social CTA ===== */
.social-cta {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}
.social-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.social-cta__box {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.social-cta__box--discord {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(10, 10, 12, 0.9));
  border-color: rgba(88, 101, 242, 0.3);
}
.social-cta__box--whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12), rgba(10, 10, 12, 0.9));
  border-color: rgba(37, 211, 102, 0.3);
}
.social-cta__status {
  color: #43b581;
  font-size: 0.85rem;
  font-weight: 600;
}
.social-cta__status--wa { color: #25d366; }
.social-cta__box h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0.5rem 0;
}
.social-cta__box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

/* ===== Footer ===== */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer__logo {
  height: 80px;
  width: auto;
  max-width: 200px;
  margin: 0 auto 1rem;
  opacity: 0.95;
  object-fit: contain;
}
.footer__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.footer__copy {
  font-size: 0.75rem;
  color: rgba(154, 149, 138, 0.6);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .quick-links__grid { grid-template-columns: repeat(3, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .links-grid { grid-template-columns: repeat(2, 1fr); }
  .arthaux-playlist { grid-template-columns: repeat(3, 1fr); }
  .social-cta__grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav__actions.ko-nav { display: none; }
  .ko-toolbar { display: block; }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .social-bar__links--hero .social-bar__link img {
    height: 40px;
    width: min(180px, 40vw);
  }
  .lang-switch {
    order: 3;
    margin-left: 0;
    margin-right: 0.5rem;
  }
  .social-bar__link img {
    height: 34px;
    max-width: 140px;
  }
  .quick-links__grid { grid-template-columns: repeat(2, 1fr); }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 12, 0.98);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 0;
  }
  .nav__links.open { display: flex; }
  .nav__links li { padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav__actions { display: none; }
  .nav__links.open .nav__mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding-top: 0.75rem;
    align-items: stretch;
  }
  .nav__mobile-actions .ko-btn {
    width: 100%;
    min-width: unset;
  }
  .header .nav { position: relative; flex-wrap: wrap; }
  .features-grid { grid-template-columns: 1fr; }
  .links-grid { grid-template-columns: 1fr; }
  .arthaux-banner { flex-direction: column; text-align: center; }
  .arthaux-playlist { grid-template-columns: repeat(2, 1fr); }
  .discord-cta__inner { flex-direction: column; text-align: center; }
  .social-cta__box { text-align: center; }
  .countdown__unit { min-width: 58px; padding: 0.65rem 0.4rem 0.5rem; }
  .countdown__sep { font-size: 1.4rem; margin-top: -0.75rem; }
  .countdown-block__soon { font-size: 0.72rem; letter-spacing: 0.22em; }
  .countdown-block__date { font-size: 0.72rem; padding: 0 0.5rem; }
}
.ticker,
.top-ticker,
.news-ticker,
.ticker-wrapper,
.ticker-area,
.marquee,
.marquee-wrapper {
    display: none !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}.link-card--youtube {
    display: none !important;
}body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 30%, rgba(190, 95, 25, 0.18), transparent 35%),
        radial-gradient(circle at 50% 70%, rgba(255, 180, 60, 0.08), transparent 45%);
    z-index: -1;
}/* ===== ORTA BÜYÜK AÇILIŞ SAYAÇ PANELİ ===== */

.countdown-block {
    max-width: 680px !important;
    margin: 45px auto 35px auto !important;
    padding: 28px 34px 30px !important;

    background: linear-gradient(
        180deg,
        rgba(38, 24, 15, 0.88),
        rgba(13, 8, 6, 0.94)
    ) !important;

    border: 1px solid rgba(190, 125, 35, 0.65) !important;
    border-radius: 10px !important;

    box-shadow:
        0 0 35px rgba(255, 160, 45, 0.18),
        inset 0 0 35px rgba(255, 180, 70, 0.06) !important;

    backdrop-filter: blur(6px) !important;
    text-align: center !important;
    position: relative !important;
}

/* Üst altın çizgi */
.countdown-block::before {
    content: "";
    position: absolute;
    top: 26px;
    left: 80px;
    right: 80px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(210, 145, 45, 0.75),
        transparent
    );
}

/* Üste küçük taç ikonu */
.countdown-block::after {
    content: "♛";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);

    width: 34px;
    height: 34px;
    border-radius: 50%;

    background: linear-gradient(180deg, #3a230d, #120806);
    border: 1px solid rgba(210, 145, 40, 0.75);

    color: #ffc94a;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    box-shadow: 0 0 18px rgba(255, 170, 45, 0.25);
}

/* Çok yakında yazısı */
.countdown-block__soon {
    display: block !important;
    margin-top: 28px !important;
    margin-bottom: 14px !important;

    color: #e8d6aa !important;
    font-size: 14px !important;
    letter-spacing: 5px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

/* Sayaç kutularının dizilimi */
.countdown {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 14px !important;
    flex-wrap: nowrap !important;
}

/* Gün / Saat / Dakika / Saniye kutuları */
.countdown__unit {
    width: 98px !important;
    height: 76px !important;

    background: linear-gradient(
        180deg,
        rgba(50, 31, 18, 0.95),
        rgba(17, 10, 7, 0.96)
    ) !important;

    border: 1px solid rgba(200, 130, 35, 0.75) !important;
    border-radius: 5px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    box-shadow:
        inset 0 0 16px rgba(255, 165, 45, 0.08),
        0 0 16px rgba(255, 145, 35, 0.12) !important;
}

/* Sayılar */
.countdown__num {
    color: #ffc94a !important;
    font-size: 34px !important;
    font-weight: 900 !important;
    line-height: 1 !important;

    text-shadow:
        0 0 8px rgba(255, 190, 70, 0.65),
        0 2px 0 #4b2608 !important;
}

/* Gün / Saat / Dakika / Saniye yazıları */
.countdown__label {
    color: #e7d7b4 !important;
    font-size: 10px !important;
    letter-spacing: 2px !important;
    font-weight: 700 !important;
    margin-top: 8px !important;
    text-transform: uppercase !important;
}

/* Aradaki iki nokta işaretleri */
.countdown__sep {
    color: rgba(255, 190, 70, 0.45) !important;
    font-size: 24px !important;
    font-weight: 700 !important;
}

/* Alt tarih yazısı */
.countdown-block__date {
    margin-top: 16px !important;
    color: #d8c7ad !important;
    font-size: 14px !important;
    letter-spacing: 0.3px !important;
}.hero__badge {
    display: none !important;
}

.countdown-block {
    margin-top: 20px !important;
}.hero {
    padding-top: 30px !important;
    
.hero__victoria {
    display: none !important;
}body {
    background:
        linear-gradient(rgba(5, 3, 3, 0.72), rgba(5, 3, 3, 0.88)),
        url("../img/Discordarkaplan.png") center top / cover no-repeat fixed !important;
}.hero__victoria {
    display: none !important;
}

.hero__bg {
    background:
        linear-gradient(rgba(5, 3, 3, 0.50), rgba(5, 3, 3, 0.78)),
        url("../img/Wallpaper.png") center center / cover no-repeat !important;
    opacity: 1 !important;
}

.hero__bg img,
.hero__bg video {
    display: none !important;
}.hero__bg {
    background:
        linear-gradient(rgba(5, 3, 3, 0.45), rgba(5, 3, 3, 0.72)),
        url("../img/Wallpaper2.png") center center / cover no-repeat !important;

    filter: blur(4px) !important;
    transform: scale(1.05) !important;
    opacity: 0.9 !important;
}

.hero {
    position: relative !important;
    overflow: hidden !important;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;

    background:
        radial-gradient(circle at center,
            rgba(0,0,0,0.05) 0%,
            rgba(0,0,0,0.18) 35%,
            rgba(0,0,0,0.42) 100%);
}

.hero > * {
    position: relative !important;
    z-index: 2 !important;
}.hero__title-main,
.hero__title-sub {
    display: none !important;
}.hero__logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 18px rgba(255, 180, 60, 0.18));
}