/**
 * Kurul #10K — Design System & Main Stylesheet
 * Anime / Gaming / Discord Community Theme
 * Dark Red & White Palette with Subtle Glassmorphism and Glow
 */

/* ==========================================================================
   1. CSS VARIABLES / CENTRALIZED COLOR SYSTEM
   ========================================================================== */
:root {
  /* Background layers (Intensive Deep Red Palette) */
  --bg-void: #0d0204;
  --bg-base: #170407;
  --bg-surface: #24060b;
  --bg-elevated: #31090f;
  --bg-card: #3d0c13;
  --bg-card-hover: #4c0f18;

  /* Lines & Borders (Crisp White & Radiant Glow) */
  --line-subtle: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.28);
  --line-glow: rgba(239, 68, 68, 0.5);

  /* Primary Theme: Intensive Red & Vivid Crimson Accents */
  --red-darkest: #2b050a;
  --red-deep: #520a13;
  --red: #991b1b;
  --red-bright: #dc2626;
  --red-vivid: #ef4444;
  --red-glow: rgba(220, 38, 38, 0.45);
  --red-glow-strong: rgba(239, 68, 68, 0.65);

  /* Aliases for consistency */
  --navy-darkest: #2b050a;
  --navy-deep: #520a13;
  --navy: #991b1b;
  --navy-bright: #dc2626;
  --navy-vivid: #ef4444;
  --navy-glow: rgba(220, 38, 38, 0.45);
  --navy-glow-strong: rgba(239, 68, 68, 0.65);

  --sky-darkest: #2b050a;
  --sky-deep: #520a13;
  --sky: #991b1b;
  --sky-bright: #dc2626;
  --sky-vivid: #ef4444;
  --sky-glow: rgba(220, 38, 38, 0.45);

  /* Secondary Theme: Crisp Pure White & Bright Slate Highlights */
  --white: #ffffff;
  --white-pure: #ffffff;
  --white-dim: #f1f5f9;
  --gray: #e2e8f0;
  --gray-dim: #94a3b8;
  --gray-dark: #334155;

  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Radii & Transitions */
  --radius-xs: 2px;
  --radius-s: 4px;
  --radius-m: 8px;
  --radius-l: 12px;
  --radius-pill: 9999px;

  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-normal: 0.35s var(--ease-smooth);
  --transition-slow: 0.6s var(--ease-smooth);

  /* Nav & Layout */
  --nav-height: 76px;
  --container-width: 1240px;
}

/* ==========================================================================
   2. RESET & GLOBAL BASE
   ========================================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  background: var(--bg-void);
  color-scheme: dark;
}

body {
  background: var(--bg-base);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Accessibility: Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

::selection {
  background: var(--red-bright);
  color: var(--white-pure);
}

:focus-visible {
  outline: 2px solid var(--red-vivid);
  outline-offset: 3px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

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

ul, ol {
  list-style: none;
}

/* ==========================================================================
   3. BACKGROUND ATMOSPHERE & CANVAS
   ========================================================================== */
#ambientCanvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
}

.bg-ambient-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 1000px 700px at 15% -10%, rgba(82, 10, 19, 0.95) 0%, transparent 65%),
    radial-gradient(ellipse 900px 700px at 90% 40%, rgba(153, 27, 27, 0.45) 0%, transparent 70%),
    radial-gradient(ellipse 1100px 800px at 50% 110%, rgba(220, 38, 38, 0.4) 0%, transparent 75%),
    radial-gradient(circle 800px at 50% 50%, rgba(43, 5, 10, 0.6) 0%, transparent 100%);
  opacity: 0.95;
}

/* ==========================================================================
   4. LAYOUT & UTILITIES
   ========================================================================== */
.wrap {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }
}

.section-pad {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 860px) {
  .section-pad {
    padding: 85px 0;
  }
}

.divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--line-strong) 20%, var(--line-strong) 80%, transparent 100%);
  margin: 0 auto;
}

.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "造";
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gray-dim);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--white);
}

.lede {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.6;
  margin-top: 14px;
}

/* Scroll reveal helper */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   5. BUTTONS & CHIPS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  border-radius: var(--radius-s);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(180deg, var(--red-bright), var(--red));
  color: var(--white-pure);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 10px 25px -8px var(--red-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, var(--red-vivid), var(--red-bright));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15) inset, 0 16px 36px -6px var(--red-glow-strong);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--white-dim);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--red-bright);
  color: var(--white);
  background: rgba(168, 35, 46, 0.08);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   6. NAVIGATION BAR
   ========================================================================== */
header.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 8, 9, 0.78);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--line);
  transition: background var(--transition-normal), border-color var(--transition-normal);
}

.nav-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18.5px;
  letter-spacing: 0.04em;
  color: var(--white);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-s);
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, var(--bg-card), var(--bg-void));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--red-bright);
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 0 20px -4px var(--red-glow);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.brand:hover .brand-mark {
  transform: rotate(-4deg) scale(1.05);
  border-color: var(--red-bright);
}

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

nav.nav-links a {
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white-dim);
  border-radius: var(--radius-xs);
  transition: color var(--transition-fast), background var(--transition-fast);
}

nav.nav-links a:hover,
nav.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

nav.nav-links a.active {
  color: var(--red-bright);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-s);
  background: var(--bg-surface);
  cursor: pointer;
  padding: 9px;
  transition: border-color var(--transition-fast);
}

.burger:hover {
  border-color: var(--red-bright);
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  z-index: 99;
  background: rgba(12, 8, 9, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 32px 24px;
  overflow-y: auto;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  display: block;
  padding: 16px 8px;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  color: var(--white-dim);
}

.mobile-menu a:hover {
  color: var(--red-bright);
  padding-left: 14px;
}

.mobile-menu .mobile-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 992px) {
  nav.nav-links { display: none; }
  .burger { display: flex; }
}

/* ==========================================================================
   7. HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 60px) 0 90px;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.server-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: rgba(24, 15, 18, 0.6);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--white-dim);
  margin-bottom: 24px;
}

.server-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4dbb6f;
  box-shadow: 0 0 10px #4dbb6f;
  animation: pulse-green 2s infinite ease-in-out;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 6.8vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  background: linear-gradient(180deg, #ffffff 30%, #ded1ce 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 span.accent {
  background: linear-gradient(180deg, var(--red-bright), #e84550);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lede {
  font-size: 18px;
  margin-top: 22px;
  max-width: 540px;
  color: var(--white-dim);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.stat-item b {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.stat-item span.label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-top: 4px;
}

.stat-item span.note {
  font-size: 10px;
  color: var(--gray-dim);
  display: block;
  margin-top: 2px;
  font-style: italic;
  font-family: var(--font-mono);
}

/* Hero Visual & Placeholders */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.banner-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-width: 540px;
  border-radius: var(--radius-m);
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, var(--bg-card), var(--bg-void));
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.04) inset, 0 0 40px -15px var(--red-glow);
}

.banner-image-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  overflow: hidden;
}

.banner-video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-sound-toggle {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(13, 2, 4, 0.85);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
}

.hero-sound-toggle:hover {
  background: var(--red-bright);
  border-color: var(--red-vivid);
  transform: translateY(-2px);
  box-shadow: 0 0 20px -2px var(--red-glow);
}

.hero-sound-toggle.unmuted {
  background: var(--red-deep);
  border-color: var(--red-bright);
  box-shadow: 0 0 15px -2px var(--red-glow);
}

.placeholder-fill {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background:
    repeating-linear-gradient(135deg, rgba(124, 21, 33, 0.12) 0 2px, transparent 2px 14px),
    radial-gradient(ellipse at 50% 40%, rgba(168, 35, 46, 0.25), transparent 70%);
  text-align: center;
  padding: 28px;
}

.placeholder-fill .ph-icon {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--red-bright);
  opacity: 0.85;
}

.placeholder-fill b {
  font-size: 13.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.placeholder-fill span {
  font-size: 11.5px;
  color: var(--gray-dim);
  font-family: var(--font-mono);
  max-width: 260px;
}

.profile-float {
  position: absolute;
  left: -24px;
  bottom: -24px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  border: 4px solid var(--bg-base);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1.5px var(--red-bright), 0 0 40px -6px var(--red-glow);
  overflow: hidden;
  z-index: 4;
}

.profile-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 980px) {
  .profile-float {
    left: 10px;
    bottom: -20px;
    width: 100px;
    height: 100px;
  }
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-dim);
  z-index: 3;
}

.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--red-bright), transparent);
  animation: scrollpulse 2.2s ease-in-out infinite;
}

@keyframes scrollpulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ==========================================================================
   8. ABOUT / SUNUCUMUZ SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about-card {
  padding: 32px 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  transition: border-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.about-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -15px rgba(0, 0, 0, 0.6);
}

.about-icon-badge {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 8px;
  height: 42px;
}

.about-card-icon {
  height: 38px;
  width: auto;
  max-width: 64px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 10px rgba(220, 38, 38, 0.45));
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.about-card:hover .about-card-icon {
  transform: scale(1.12) rotate(-4deg);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 18px rgba(239, 68, 68, 0.8));
}

.about-card .num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--red-bright);
  letter-spacing: 0.12em;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 14px 0 10px;
  font-weight: 600;
  color: var(--white);
}

.about-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ==========================================================================
   9. FEATURES / ÖZELLİKLER SECTION
   ========================================================================== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .feat-grid { grid-template-columns: 1fr; }
}

.feat-card {
  background: var(--bg-base);
  padding: 38px 30px;
  transition: background var(--transition-normal);
  position: relative;
}

.feat-card:hover {
  background: var(--bg-elevated);
}

.feat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.feat-icon {
  width: 58px;
  height: 48px;
  border-radius: var(--radius-s);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 6px;
  box-shadow: 0 4px 15px -2px rgba(0, 0, 0, 0.5), 0 0 16px -4px var(--red-glow);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.feat-card:hover .feat-icon {
  transform: scale(1.1) rotate(-3deg);
  border-color: var(--red-bright);
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.7), 0 0 24px -2px var(--red-glow-strong);
}

.feat-card-fan {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 8px rgba(220, 38, 38, 0.45));
}

.feat-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray-dim);
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feat-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--white);
}

.feat-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ==========================================================================
   10. STAFF / YETKİLİLER HIERARCHY & CARDS
   ========================================================================== */
.staff-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.staff-cat {
  margin-top: 64px;
}

.staff-cat:first-of-type {
  margin-top: 20px;
}

.staff-cat-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.staff-cat-label h3 {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-dim);
  white-space: nowrap;
}

.staff-cat-label .rule {
  flex: 1;
  height: 1px;
  background: var(--line-strong);
}

.staff-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* Individual Staff Card */
.staff-card {
  --rc: var(--red-bright);
  --sc: #f5b0b0;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.staff-card:hover {
  transform: translateY(-6px);
  border-color: var(--rc);
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.7), 0 0 32px -10px var(--rc);
}

.staff-card .banner {
  height: 72px;
  width: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--rc) 40%, var(--bg-void)), color-mix(in srgb, var(--sc) 20%, var(--bg-void)));
  position: relative;
  background-size: cover;
  background-position: center;
}

.staff-card .avatar-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--bg-elevated);
  box-shadow: 0 0 0 2px var(--rc), 0 0 16px -2px var(--rc);
  position: absolute;
  left: 20px;
  top: 38px;
  background: var(--bg-card);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.staff-card .avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-card .avatar-fallback {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--rc);
}

.staff-body {
  padding: 44px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.staff-card .role-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--rc);
  background: color-mix(in srgb, var(--rc) 12%, transparent);
  border: 1px solid var(--rc);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-bottom: 12px;
  width: fit-content;
}

.staff-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.staff-card .uname {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray);
  margin-top: 3px;
}

.staff-badges-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  white-space: nowrap;
}

.staff-card p.desc {
  font-size: 13px;
  color: var(--gray);
  margin-top: 12px;
  line-height: 1.5;
  flex: 1;
}

/* Empty Role Card Placeholder */
.staff-card.empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border-style: dashed;
  border-color: var(--line);
  background: rgba(24, 15, 18, 0.3);
  padding: 24px;
  text-align: center;
}

.staff-card.empty:hover {
  border-color: var(--rc);
  transform: translateY(-3px);
}

.staff-card.empty .role-name {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--rc);
  border: 1px solid var(--rc);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.staff-card.empty span.label {
  font-size: 12px;
  color: var(--gray-dim);
  font-family: var(--font-mono);
}

/* Kurucu Tier Visual Prominence */
.staff-cat[data-tier="kurucu"] .staff-row {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.staff-cat[data-tier="kurucu"] .staff-card {
  min-height: 300px;
  border-width: 1.5px;
}

.staff-cat[data-tier="kurucu"] .banner {
  height: 100px;
}

.staff-cat[data-tier="kurucu"] .avatar-wrap {
  width: 90px;
  height: 90px;
  top: 52px;
}

.staff-cat[data-tier="kurucu"] .staff-body {
  padding: 58px 26px 28px;
}

.staff-cat[data-tier="kurucu"] h4 {
  font-size: 22px;
}

/* ==========================================================================
   11. EVENTS SECTION
   ========================================================================== */
.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

@media (max-width: 1080px) {
  .event-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .event-grid { grid-template-columns: 1fr; }
}

.event-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--bg-elevated);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: var(--red-bright);
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.7);
}

.event-thumb {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, rgba(124, 21, 33, 0.16) 0 2px, transparent 2px 14px), var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.event-card:hover .event-thumb img {
  transform: scale(1.05);
}

.event-thumb span.ph {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--gray-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-cat {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  background: rgba(12, 8, 9, 0.85);
  border: 1px solid var(--line-strong);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  color: var(--white-dim);
  backdrop-filter: blur(8px);
}

.event-body {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-body h4 {
  font-family: var(--font-display);
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--white);
}

.event-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
  flex: 1;
}

.event-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--red-bright);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-time::before {
  content: "●";
  font-size: 8px;
}

/* ==========================================================================
   12. GALLERY & LIGHTBOX
   ========================================================================== */
.gallery-grid {
  columns: 3 280px;
  column-gap: 18px;
  margin-top: 24px;
}

@media (max-width: 640px) {
  .gallery-grid {
    columns: 2 160px;
    column-gap: 12px;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  background: var(--bg-card);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--red-bright);
  box-shadow: 0 16px 36px -12px var(--red-glow);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item .placeholder-fill {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 180px;
}

.gallery-item:nth-child(2n) .placeholder-fill {
  aspect-ratio: 4 / 5;
}

.gallery-item:nth-child(3n) .placeholder-fill {
  aspect-ratio: 1 / 1;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 8, 9, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.gallery-overlay h5 {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--white);
}

.gallery-overlay span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--red-bright);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(7, 4, 5, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 24px;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-m);
  border: 1px solid var(--line-strong);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.lightbox-info {
  margin-top: 16px;
  text-align: center;
}

.lightbox-info h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
}

.lightbox-info p {
  font-size: 13px;
  color: var(--gray);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--bg-surface);
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.lightbox-close:hover {
  border-color: var(--red-bright);
  color: var(--red-bright);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--bg-surface);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: var(--red-bright);
  color: var(--red-bright);
}

/* ==========================================================================
   13. RULES SECTION
   ========================================================================== */
.rules-list {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}

.rule-item {
  display: flex;
  gap: 22px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-elevated);
  transition: background var(--transition-fast);
}

.rule-item:last-child {
  border-bottom: none;
}

.rule-item:hover {
  background: var(--bg-card);
}

.rule-item .rn {
  font-family: var(--font-mono);
  color: var(--red-bright);
  font-size: 14px;
  font-weight: 700;
  padding-top: 2px;
}

.rule-item .rt {
  flex: 1;
}

.rule-item .rt b {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--white);
}

.rule-item .rt p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.5;
}

/* ==========================================================================
   14. FAQ SECTION
   ========================================================================== */
.faq-list {
  margin-top: 24px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  transition: border-color var(--transition-fast);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 6px;
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition-fast);
}

.faq-q:hover {
  color: var(--red-bright);
}

.faq-q .plus {
  font-family: var(--font-mono);
  color: var(--red-bright);
  font-size: 20px;
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.6;
  padding: 0 6px;
}

.faq-item.open .faq-a {
  max-height: 250px;
  padding: 0 6px 24px;
}

/* ==========================================================================
   15. DISCORD CTA SECTION
   ========================================================================== */
.cta-section {
  padding: 130px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 800px 450px at 50% 100%, rgba(168, 35, 46, 0.35), transparent 70%), var(--bg-void);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 800;
  color: var(--white);
}

.cta-section p {
  color: var(--white-dim);
  font-size: 17px;
  margin: 18px auto 38px;
  max-width: 520px;
}

/* ==========================================================================
   16. FOOTER
   ========================================================================== */
footer {
  padding: 70px 0 40px;
  background: var(--bg-void);
  position: relative;
  z-index: 2;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.footer-brand .brand {
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--gray-dim);
  font-size: 13px;
  font-family: var(--font-mono);
}

.footer-links {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-col h5 {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-dim);
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

.footer-col a {
  display: block;
  font-size: 13.5px;
  color: var(--white-dim);
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: var(--red-bright);
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-s);
  background: var(--bg-surface);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--white-dim);
  transition: border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.social-btn:hover {
  border-color: var(--red-bright);
  color: var(--red-bright);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 30px;
  font-size: 12px;
  color: var(--gray-dim);
  font-family: var(--font-mono);
}

.admin-trigger-link {
  color: var(--gray-dim);
  text-decoration: none;
  font-size: 11.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast);
  cursor: pointer;
}

.admin-trigger-link:hover {
  color: var(--red-bright);
}

/* ==========================================================================
   17. SOCIAL MEDIA SECTION CARDS
   ========================================================================== */
.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 28px;
}

@media (max-width: 1100px) {
  .social-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .social-cards-grid {
    grid-template-columns: 1fr;
  }
}

.social-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 36px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.8);
}

.discord-card:hover {
  border-color: #5865f2;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.8), 0 0 35px -10px rgba(88, 101, 242, 0.4);
}

.tiktok-card:hover {
  border-color: #fe2c55;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.8), 0 0 35px -10px rgba(254, 44, 85, 0.4);
}

.instagram-card:hover {
  border-color: #e1306c;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.8), 0 0 35px -10px rgba(225, 48, 108, 0.4);
}

.artist-card:hover {
  border-color: #ec4899;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.8), 0 0 35px -10px rgba(236, 72, 153, 0.4);
}

.social-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.social-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  background: var(--bg-card);
  transition: transform var(--transition-fast);
}

.social-card:hover .social-icon-badge {
  transform: scale(1.08) rotate(-4deg);
}

.discord-badge {
  color: #5865f2;
  box-shadow: 0 0 20px -4px rgba(88, 101, 242, 0.35);
  border-color: rgba(88, 101, 242, 0.4);
}

.tiktok-badge {
  color: #fe2c55;
  box-shadow: 0 0 20px -4px rgba(254, 44, 85, 0.35);
  border-color: rgba(254, 44, 85, 0.4);
}

.instagram-badge {
  color: #e1306c;
  box-shadow: 0 0 20px -4px rgba(225, 48, 108, 0.35);
  border-color: rgba(225, 48, 108, 0.4);
}

.artist-badge {
  color: #ec4899;
  box-shadow: 0 0 20px -4px rgba(236, 72, 153, 0.35);
  border-color: rgba(236, 72, 153, 0.4);
}

.social-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--gray);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.artist-tag {
  color: #f472b6;
  border-color: rgba(236, 72, 153, 0.35);
  background: rgba(236, 72, 153, 0.08);
}

.social-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.social-handle {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--red-bright);
  margin-top: 4px;
  margin-bottom: 14px;
  display: block;
}

.discord-card .social-handle { color: #8a96ff; }
.tiktok-card .social-handle { color: #ff6b87; }
.instagram-card .social-handle { color: #f77737; }
.artist-card .social-handle { color: #f472b6; }

.social-card p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 26px;
  flex: 1;
}

.social-action-btn {
  width: 100%;
  justify-content: space-between;
  padding: 13px 20px;
  font-weight: 700;
}

.disabled-link {
  opacity: 0.6;
  cursor: not-allowed !important;
  border-style: dashed !important;
}

.disabled-link:hover {
  transform: none !important;
  border-color: var(--line-strong) !important;
  color: var(--white-dim) !important;
}

/* ==========================================================================
   18. ADVANCED MOBILE / TOUCH SCREEN POLISH (< 768px & < 480px)
   ========================================================================== */
@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .wrap {
    padding: 0 18px;
  }

  .section-pad {
    padding: 70px 0;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .h2 {
    font-size: clamp(24px, 6.5vw, 36px);
  }

  .hero {
    padding: calc(var(--nav-height) + 24px) 0 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(28px, 8.5vw, 44px);
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 36px;
    padding-top: 24px;
  }

  .banner-frame {
    aspect-ratio: 16 / 9;
  }

  .profile-float {
    width: 80px;
    height: 80px;
    left: 12px;
    bottom: -16px;
    border-width: 3px;
  }

  .scroll-cue {
    display: none;
  }

  .staff-cat .staff-row {
    grid-template-columns: 1fr;
  }

  .event-grid {
    grid-template-columns: 1fr;
  }

  .social-cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 36px;
  }

  .footer-links {
    gap: 36px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; font-size: 16px; }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat-item b {
    font-size: 28px;
  }

  .social-card {
    padding: 26px 20px;
  }

  .toast-container {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .toast {
    max-width: 100%;
  }
}

/* ==========================================================================
   19. ATATÜRK MEMORIAL MONUMENT SECTION
   ========================================================================== */
.ataturk-monument-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 500px at 50% 50%, rgba(168, 35, 46, 0.12), transparent 75%),
    linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-void) 100%);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 100px 0;
}

.ataturk-monument-card {
  background: linear-gradient(135deg, rgba(31, 20, 24, 0.85) 0%, rgba(18, 12, 14, 0.95) 100%);
  border: 1px solid rgba(247, 241, 236, 0.14);
  border-radius: var(--radius-l);
  padding: 56px;
  position: relative;
  box-shadow: 0 30px 90px -20px rgba(0, 0, 0, 0.9), 0 0 50px -15px rgba(168, 35, 46, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.ataturk-monument-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 52px;
  align-items: center;
}

@media (max-width: 960px) {
  .ataturk-monument-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .ataturk-monument-card {
    padding: 36px 24px;
  }
}

.ataturk-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ataturk-frame {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-m);
  border: 2px solid rgba(247, 241, 236, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px -10px rgba(168, 35, 46, 0.35);
  overflow: hidden;
  position: relative;
  background: #000;
}

.ataturk-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(115%) brightness(95%);
  transition: transform var(--transition-slow), filter var(--transition-slow);
}

.ataturk-monument-card:hover .ataturk-img {
  transform: scale(1.03);
  filter: grayscale(100%) contrast(120%) brightness(100%);
}

.ataturk-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.ataturk-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  background: rgba(18, 12, 14, 0.9);
  border: 1px solid var(--line-strong);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.ataturk-date-badge .star-icon {
  color: var(--red-bright);
  font-size: 11px;
}

.ataturk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 12px;
}

.ataturk-eyebrow .crescent-mark {
  font-size: 15px;
  color: #ffffff;
}

.ataturk-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  color: var(--white-pure);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 22px;
}

.ataturk-quote {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2.2vw, 21px);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--red-bright);
  margin: 0 0 20px 0;
}

@media (max-width: 960px) {
  .ataturk-quote {
    padding-left: 0;
    border-left: none;
    border-top: 2px solid var(--red-bright);
    padding-top: 14px;
  }
}

.ataturk-subquote {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 30px;
}

.ataturk-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

@media (max-width: 960px) {
  .ataturk-footer-row {
    justify-content: center;
  }
}

.ataturk-signature {
  height: 58px;
  max-width: 220px;
  width: auto;
  opacity: 0.95;
  filter: drop-shadow(0 2px 10px rgba(56, 189, 248, 0.35));
}

.ataturk-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ataturk-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.15);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   20. REKLAM & SPONSORLUK (ADVERTISING & SPONSORSHIP)
   ========================================================================== */
.pricing-subhead {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-subhead h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.pricing-icon {
  font-size: 24px;
}

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

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--red-bright);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.8), 0 0 30px -10px var(--red-glow);
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(38, 24, 29, 0.95) 0%, rgba(24, 15, 18, 0.95) 100%);
  border-color: var(--red-bright);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.7), 0 0 35px -10px var(--red-glow);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--red-bright), var(--red-vivid));
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(168, 35, 46, 0.5);
  white-space: nowrap;
}

.featured-badge.vip {
  background: linear-gradient(90deg, #f6d14d, #fdefb8);
  color: #241400;
  box-shadow: 0 4px 14px rgba(246, 209, 77, 0.4);
}

.pricing-card-header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  text-align: center;
}

.pricing-duration {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--red-bright);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.pricing-price .amount {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  color: var(--white-pure);
  line-height: 1;
}

.pricing-price .currency {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white-dim);
}

.pricing-period {
  font-size: 12.5px;
  color: var(--gray);
  display: block;
  margin-top: 6px;
  font-family: var(--font-mono);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.5;
}

.pricing-features li .check {
  color: var(--red-bright);
  font-weight: 900;
  font-size: 15px;
  line-height: 1.2;
}

.pricing-btn {
  width: 100%;
  padding: 13px 20px;
  font-weight: 700;
  justify-content: space-between;
}

/* Notice Bar */
.ad-notice-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background: rgba(18, 12, 14, 0.75);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-m);
  padding: 24px 28px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .ad-notice-bar {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }
}

.notice-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--gray);
}

.notice-item strong,
.notice-item b {
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}

.notice-item a {
  color: var(--red-bright);
  text-decoration: underline;
}

.notice-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Sponsorship Box */
.sponsorship-box {
  background: linear-gradient(135deg, rgba(26, 17, 21, 0.9) 0%, rgba(18, 12, 14, 0.95) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-l);
  padding: 48px;
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.7);
  position: relative;
}

@media (max-width: 768px) {
  .sponsorship-box {
    padding: 30px 20px;
  }
}

.sponsorship-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.sponsorship-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-bright);
  background: rgba(168, 35, 46, 0.15);
  border: 1px solid rgba(207, 51, 63, 0.35);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.sponsorship-header h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.sponsorship-header p {
  color: var(--gray);
  font-size: 15px;
  margin-top: 10px;
}

.sponsorship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

@media (max-width: 1024px) {
  .sponsorship-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 580px) {
  .sponsorship-grid {
    grid-template-columns: 1fr;
  }
}

.sponsorship-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 24px 20px;
  text-align: center;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sponsorship-card:hover {
  transform: translateY(-4px);
  border-color: var(--red-bright);
  box-shadow: 0 10px 30px -10px var(--red-glow);
}

.spons-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.sponsorship-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.sponsorship-card p {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.5;
}

.sponsorship-cta {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sponsorship-cta p {
  font-size: 14.5px;
  color: var(--white-dim);
}
