* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  touch-action: pan-x pan-y;
}

:root {
  --accent:        #a0a0bc;
  --accent-bright: #d0d0e8;
  --accent2:       #ff2d78;
  --bg:            #07070a;
  --bg2:           #0d0d12;
  --text:          #dcdce8;
  --muted:         #666678;
  --border:        rgba(255,255,255,0.07);
  --border-mid:    rgba(255,255,255,0.13);
  --green:         #70c08c;
  --yellow:        #d4b84a;
  --red:           #d95555;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
}

/* ── COOKIE OVERLAY ───────────────────────────────── */
.cookie-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cookie-overlay.cookie-hide { opacity: 0 !important; }

.cookie-modal {
  background: #111118;
  border: 1px solid var(--border-mid);
  border-radius: 16px;
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,0.8);
}

.cookie-modal-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }

.cookie-modal-title {
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.cookie-modal-desc {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.cookie-modal-desc a { color: var(--accent-bright); text-decoration: underline; }

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  cursor: pointer;
  gap: 1rem;
  transition: border-color 0.2s, background 0.2s;
}

.cookie-option:hover { background: rgba(255,255,255,0.05); border-color: var(--border-mid); }
.cookie-option.disabled { opacity: 0.45; cursor: default; }
.cookie-option input[type="checkbox"] { display: none; }

.cookie-option-info { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.cookie-option-name { font-weight: 700; font-size: 0.9rem; color: #fff; }
.cookie-option-desc { font-size: 0.75rem; color: var(--muted); }

.cookie-toggle {
  width: 40px; height: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  position: relative; flex-shrink: 0;
  transition: background 0.25s;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.25s;
}

.cookie-toggle.locked { background: var(--accent); }
.cookie-toggle.locked::after { transform: translateX(18px); }
.cookie-option input:checked ~ .cookie-toggle { background: var(--accent); }
.cookie-option input:checked ~ .cookie-toggle::after { transform: translateX(18px); }

.cookie-modal-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.cookie-btn {
  flex: 1; min-width: 120px;
  padding: 0.75rem 1rem;
  border: none; border-radius: 8px;
  font-weight: 700; font-size: 0.9rem;
  cursor: pointer; transition: opacity 0.2s, transform 0.15s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn:active { transform: scale(0.97); }
.cookie-btn.accept-all { background: rgba(255,255,255,0.9); color: #07070a; }
.cookie-btn.save-sel   { background: rgba(255,255,255,0.07); color: #fff; border: 1px solid var(--border-mid); }

/* ── NAV ──────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0; z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  background: rgba(7,7,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900; font-size: 1.1rem;
  color: #fff; text-decoration: none;
  letter-spacing: 0.12em;
}

.nav-links { display: flex; gap: 1.8rem; list-style: none; }

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: color 0.2s;
}

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

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}

.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all 0.3s ease; transform-origin: center;
}

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

@media (max-width: 700px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(7,7,10,0.98);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 0.9rem 1.5rem; border-bottom: 1px solid var(--border); }
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  padding: 4rem 1.5rem 3rem;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(160,160,188,0.06) 0%, transparent 65%),
    radial-gradient(ellipse at 75% 25%, rgba(255,255,255,0.03) 0%, transparent 50%),
    linear-gradient(160deg, #07070a 0%, #0b0b14 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 25%, rgba(7,7,10,0.65) 100%);
}

.hero-content { position: relative; z-index: 1; }

.hero-sub {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.5em;
  color: var(--muted);
  margin-bottom: 1rem; text-transform: uppercase;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900; line-height: 1;
  display: flex; flex-direction: column; align-items: center; gap: 0;
  margin-bottom: 1rem;
}

.hero-name-baris {
  font-size: clamp(1.4rem, 4.8vw, 3.2rem);
  letter-spacing: 0.55em;
  color: #a0a0b8;
  margin-bottom: -0.05em;
}

.hero-name-erman {
  font-size: clamp(4rem, 15vw, 10rem);
  letter-spacing: 0.05em;
  background: linear-gradient(150deg, #ffffff 0%, #c8c8e0 50%, #888899 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0 clamp(0.7em, 2vw, 1.5em);
  font-size: clamp(0.62rem, 1.7vw, 1.05rem);
  letter-spacing: clamp(0.06em, 0.32vw, 0.2em);
  color: var(--muted);
  margin: 0 auto 2.5rem;
  text-transform: uppercase;
  padding: 0 0.75rem;
  line-height: 1.4;
  width: 100%;
}

.hero-tagline span {
  display: inline-block;
  white-space: nowrap;
}

.hero-label-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 1.8rem;
  padding: 0 1rem;
}

.hero-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.7rem, 1.4vw, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  padding: 0.55em 1.3em;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
  max-width: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

@media (max-width: 700px) {
  .hero-tagline   { margin-bottom: 1.4rem; }
  .hero-label-wrap { margin-bottom: 1.1rem; }
  .hero-location  { margin-bottom: 1.4rem; margin-top: 0.2rem; }
}

@media (max-width: 480px) {
  .hero-label {
    white-space: normal;
    line-height: 1.4;
    font-size: 0.74rem;
    padding: 0.5em 1em;
  }
  .hero-label-wrap { margin-bottom: 1rem; }
}

.hero-location {
  font-size: clamp(0.7rem, 2.4vw, 0.82rem);
  color: var(--accent);
  letter-spacing: 0.08em;
  margin: 0 auto 2rem;
  padding: 0 1.25rem;
  line-height: 1.5;
  max-width: 36ch;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.75);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.2em;
  text-decoration: none; text-transform: uppercase;
  cursor: pointer; border-radius: 4px;
  transition: all 0.25s ease;
}

.btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
  box-shadow: 0 0 24px rgba(255,255,255,0.08);
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0;
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero-btns .btn {
    width: 220px;
    text-align: center;
    justify-content: center;
  }
}

.btn-live {
  border-color: rgba(239,68,68,0.5);
  color: rgba(239,68,68,0.85);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-live:hover {
  background: rgba(239,68,68,0.1);
  border-color: rgba(239,68,68,0.8);
  color: #ef4444;
  box-shadow: 0 0 24px rgba(239,68,68,0.15);
}
.live-dot-hero {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ef4444; box-shadow: 0 0 6px #ef4444;
  animation: blink-hero 2s ease-in-out infinite; flex-shrink: 0;
}
.btn-live:hover .live-dot-hero { background: #ef4444; }
@keyframes blink-hero { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

/* ── SECTIONS ─────────────────────────────────────── */
.section { padding: 5rem 1.5rem; }
.section.dark { background: var(--bg2); }

.container { max-width: 1100px; margin: 0 auto; }

@media (max-width: 700px) {
  .section { padding: 3rem 1rem; }
  .hero { min-height: 78vh; padding: 3rem 1rem 2rem; }
  .hero + .section { padding-top: 2rem; }
}

.hero + .section { padding-top: 2.8rem; }

.section-title {
  font-weight: 800; font-size: 1.9rem;
  letter-spacing: 0.02em; margin-bottom: 0.5rem;
  color: #fff; position: relative; display: inline-block;
}

.section-title::after {
  content: '';
  display: block; width: 40px; height: 2px;
  background: rgba(255,255,255,0.25);
  margin-top: 0.6rem;
  border-radius: 2px;
}

.section-sub {
  color: var(--muted); margin-bottom: 3rem; margin-top: 0.9rem; font-size: 1rem;
}

/* ── ABOUT ────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}

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

.about-text p { font-size: 1.05rem; color: var(--text); line-height: 1.85; }

.equipment-box {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
}

.eq-list { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1rem; }

.eq-item {
  display: flex; align-items: center; gap: 0.85rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 0.7rem 1rem;
  border-left: 2px solid rgba(255,255,255,0.18);
  transition: background 0.2s, border-color 0.2s;
}

.eq-item:hover {
  background: rgba(255,255,255,0.05);
  border-left-color: rgba(255,255,255,0.4);
}

.eq-item-icon { font-size: 1.3rem; flex-shrink: 0; }
.eq-item-info { display: flex; flex-direction: column; }
.eq-item-name { font-weight: 700; font-size: 0.92rem; color: #fff; }
.eq-item-desc { font-size: 0.76rem; color: var(--muted); }

/* ── GENRES ───────────────────────────────────────── */
.genre-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}

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

.genre-col-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.25em;
  text-transform: uppercase; margin-bottom: 1.4rem;
}

.genre-col-title.green  { color: var(--green); }
.genre-col-title.yellow { color: var(--yellow); }
.genre-col-title.red    { color: var(--red); }

.genre-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-left: 2px solid;
  padding: 1rem 1.2rem;
  margin-bottom: 0.85rem;
  border-radius: 8px;
  transition: background 0.2s;
}

.genre-card:hover { background: rgba(255,255,255,0.04); }
.genre-card.strong { border-left-color: var(--green); }
.genre-card.medium { border-left-color: var(--yellow); }
.genre-card.none   { border-left-color: var(--red); opacity: 0.45; }

.genre-name {
  display: block; font-size: 1.05rem; font-weight: 600;
  margin-bottom: 0.5rem; letter-spacing: 0.03em;
}

.bar-wrap {
  background: rgba(255,255,255,0.06);
  border-radius: 999px; height: 5px; overflow: hidden; margin-bottom: 0.3rem;
}

.bar {
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0.65));
  border-radius: 999px;
  animation: fillBar 1.5s ease forwards;
}

.bar.med {
  background: linear-gradient(90deg, rgba(212,184,74,0.5), rgba(212,184,74,0.85));
}

@keyframes fillBar { from { width: 0 !important; } }

.bar-label { font-size: 0.78rem; color: var(--muted); }

/* ── WARUM MICH (USPs) ─────────────────────────────── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

.usp-card {
  position: relative;
  background: rgba(255,255,255,0.028);
  border: 1px solid var(--border);
  border-left: 2px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 1.7rem 1.4rem 1.6rem;
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
}

.usp-card:hover {
  background: rgba(255,255,255,0.05);
  border-left-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
}

.usp-card--hero {
  background: linear-gradient(135deg, rgba(239,68,68,0.07) 0%, rgba(255,255,255,0.025) 60%);
  border-left-color: rgba(239,68,68,0.6);
}

.usp-card--hero:hover { border-left-color: rgba(239,68,68,0.95); }

.usp-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.04em;
  color: #fff; margin-bottom: 0.7rem; line-height: 1.35;
}

.usp-text {
  font-size: 0.9rem; color: var(--muted); line-height: 1.7;
}

/* ── CONTACT ──────────────────────────────────────── */
.contact-row {
  display: flex; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 1.5rem;
}

.contact-box {
  display: flex; align-items: center; gap: 1.2rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  flex: 1 1 260px; max-width: 480px;
  transition: background 0.2s, border-color 0.2s;
}

.contact-box:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--border-mid);
}

.contact-icon { font-size: 2rem; flex-shrink: 0; }

.contact-box p { color: var(--muted); font-size: 0.85rem; margin-bottom: 0.3rem; }

.contact-box a {
  color: #fff; font-size: 1.1rem; font-weight: 700;
  text-decoration: none; letter-spacing: 0.02em;
}

.contact-box a:hover { text-decoration: underline; text-decoration-color: rgba(255,255,255,0.4); }

.contact-teaser { color: var(--text); font-size: 0.97rem; font-weight: 600; }

.contact-box--clickable { cursor: pointer; }

.contact-box--clickable[aria-expanded="true"] .pricing-arrow { transform: rotate(180deg); }

.pricing-arrow {
  width: 1.1rem; height: 1.1rem; margin-left: auto;
  transition: transform 0.3s ease; flex-shrink: 0;
  color: var(--muted);
}

.pricing-details {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease; overflow: hidden;
}

.pricing-details.open { grid-template-rows: 1fr; }
.pricing-details > * { overflow: hidden; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.9rem; margin-top: 1.2rem;
}

.pricing-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 1rem 1.2rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}

.pricing-label { color: var(--muted); font-size: 0.83rem; }
.pricing-value { color: #fff; font-size: 0.97rem; font-weight: 700; }

.pricing-note {
  color: var(--muted); font-size: 0.88rem;
  margin-top: 1.2rem; margin-bottom: 0.5rem; line-height: 1.65;
}

/* ── STORIES ──────────────────────────────────────── */
.phone-wrap { display: flex; justify-content: center; padding: 1rem 0 2rem; }

.phone-frame {
  position: relative;
  width: 320px; height: 580px;
  background: #000;
  border-radius: 40px;
  border: 6px solid #1a1a22;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 40px 100px rgba(0,0,0,0.85),
    0 0 60px rgba(160,160,188,0.07);
  overflow: hidden; user-select: none;
}

.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 22px;
  background: #000; border-radius: 999px;
  z-index: 20; border: 2px solid #1a1a1a;
}

.story-progress {
  position: absolute; top: 42px; left: 10px; right: 10px;
  display: flex; gap: 4px; z-index: 15;
}

.progress-seg {
  flex: 1; height: 2px;
  background: rgba(255,255,255,0.2);
  border-radius: 999px; overflow: hidden;
}

.progress-fill {
  height: 100%; width: 0%;
  background: rgba(255,255,255,0.85);
  border-radius: 999px;
}

.story-header {
  position: absolute; top: 52px; left: 12px; right: 12px;
  display: flex; align-items: center; gap: 8px;
  z-index: 15; padding-top: 6px;
}

.story-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, #606075, #a0a0bc);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', sans-serif; font-size: 0.5rem;
  font-weight: 700; color: #fff; flex-shrink: 0;
}

.story-meta { display: flex; flex-direction: column; flex: 1; }
.story-name { font-family: 'Orbitron', sans-serif; font-size: 0.65rem; font-weight: 700; color: #fff; letter-spacing: 0.05em; }
.story-time { font-size: 0.6rem; color: rgba(255,255,255,0.45); }
.story-close { color: rgba(255,255,255,0.55); font-size: 0.9rem; cursor: pointer; }

.story-slides { position: absolute; inset: 0; }

.story-slide {
  position: absolute; inset: 0;
  display: none; flex-direction: column;
}

.story-slide.active { display: flex; }
.story-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.sc-wrap {
  max-width: 700px; margin: 0 auto;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.sc-blocked {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem;
  text-align: center; color: #888; font-size: 0.95rem; line-height: 1.7;
}

.sc-blocked strong { color: #bbb; }
.sc-blocked .cookie-btn { margin-top: 1rem; }

.story-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1rem 1.2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  z-index: 5;
}

.story-tag {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  font-size: 0.62rem; letter-spacing: 0.1em;
  padding: 2px 9px; border-radius: 999px;
  margin-bottom: 6px;
  font-family: 'Orbitron', sans-serif;
}

.story-caption p { color: #fff; font-size: 0.85rem; font-weight: 600; }

.tap-zone {
  position: absolute; top: 0; bottom: 0; width: 40%;
  z-index: 10; cursor: pointer;
}
.tap-left  { left: 0; }
.tap-right { right: 0; }

/* ── FOOTER ───────────────────────────────────────── */
.footer {
  text-align: center; padding: 2rem;
  background: var(--bg2); color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}
