/* ============================================
   JUICE ROLEPLAY — PREMIUM CSS
   ============================================ */

/* ---- Tokens ---- */
:root {
  --accent: #ff2d6f;
  --accent-dim: rgba(255,45,111,0.15);
  --accent-glow: rgba(255,45,111,0.35);
  --white: #ffffff;
  --off-white: rgba(255,255,255,0.88);
  --muted: rgba(255,255,255,0.45);
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.07);
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-md: 0 10px 32px rgba(0,0,0,0.55);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.7);
  --font-display: 'Bebas Neue', 'Montserrat', sans-serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --font-mono: 'Space Mono', monospace;
  --radius: 10px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  font-family: var(--font-body);
  color: var(--white);
  background: #000;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; }
a { text-decoration: none; }

/* ============================================
   GRAIN CANVAS
   ============================================ */
.grain-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  mix-blend-mode: overlay;
}

/* ============================================
   CURSOR GLOW
   ============================================ */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,111,0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  mix-blend-mode: screen;
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  z-index: 100;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.topbar.scrolled {
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}
.brand-icon-wrap {
  position: relative;
  width: 32px;
  height: 32px;
}
.brand-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.brand-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0;
  animation: brandPulse 3s ease-in-out infinite;
}
@keyframes brandPulse {
  0%, 100% { opacity: 0; transform: scale(0.9); }
  50% { opacity: 0.4; transform: scale(1.1); }
}
.brand-text {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--white);
}
.brand-text em {
  font-style: normal;
  color: var(--accent);
}

/* Nav */
.topbar-nav {
  display: flex;
  gap: 4px;
}
.nav-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
  color: var(--white);
  background: var(--surface);
}

/* Topbar right */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Alpha badge */
.alpha-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
  font-family: var(--font-mono);
}
.alpha-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Login button */
.btn-login {
  position: relative;
  overflow: hidden;
  padding: 9px 20px;
  border-radius: 8px;
  border: 0;
  background: linear-gradient(135deg, var(--accent), #ff6b9a);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,45,111,0.3);
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s ease;
}
.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,45,111,0.45);
}
.btn-login:active { transform: translateY(0); }
.btn-login-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: loginShine 3s ease-in-out infinite 1s;
}
@keyframes loginShine {
  0% { transform: translateX(-100%); }
  30%, 100% { transform: translateX(200%); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Background slider */
.bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1200ms ease, transform 14000ms linear;
  will-change: opacity, transform;
  background-color: #050505;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Hero overlays */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.55) 80%,
    rgba(0,0,0,0.95) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-scanlines {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.04) 2px,
    rgba(0,0,0,0.04) 4px
  );
}

/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 2;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,45,111,0.12) 0%, transparent 70%);
  top: -100px;
  left: -150px;
}
.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(88,101,242,0.1) 0%, transparent 70%);
  bottom: 0px;
  right: -100px;
  animation-delay: -4s;
  animation-duration: 10s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 100px 24px 60px;
  max-width: 900px;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.7s var(--ease-out) 0.2s forwards;
}
.eyebrow-bar {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.eyebrow-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
}

/* Title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(90px, 20vw, 180px);
  line-height: 0.9;
  letter-spacing: -2px;
  color: var(--white);
  display: flex;
  gap: 2px;
}
.title-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) scaleY(0.8);
  animation: charReveal 0.6s var(--ease-spring) calc(0.4s + var(--i) * 0.06s) forwards;
  text-shadow:
    0 0 60px rgba(255,45,111,0.15),
    0 4px 24px rgba(0,0,0,0.8);
}
@keyframes charReveal {
  to { opacity: 1; transform: translateY(0) scaleY(1); }
}

/* Subtitle */
.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--off-white);
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.7s var(--ease-out) 0.85s forwards;
}

/* CTA row */
.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.7s var(--ease-out) 1s forwards;
}

/* Discord button */
.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #5865f2, #7289da);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 24px rgba(88,101,242,0.3);
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s ease;
}
.btn-discord:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(88,101,242,0.45);
}
.btn-discord:active { transform: translateY(-1px); }
.discord-icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
  user-select: none;
}

/* Connect box */
.connect-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  text-align: left;
  backdrop-filter: blur(12px);
}
.connect-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
kbd {
  font-family: var(--font-mono);
  font-size: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1px 5px;
  border-radius: 4px;
  color: var(--accent);
}
.connect-cmd {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}
.connect-cmd code {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--white);
}
.copy-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent);
  padding: 2px 7px;
  border: 1px solid var(--accent-glow);
  border-radius: 4px;
  background: var(--accent-dim);
  transition: background 0.2s, color 0.2s;
}
.connect-cmd:hover .copy-badge {
  background: var(--accent);
  color: var(--white);
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.7s var(--ease-out) 1.15s forwards;
}
.stat {
  text-align: center;
}
.stat-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.stat-key {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
}
.stat-sep {
  width: 1px;
  height: 28px;
  background: var(--border);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: fadeUp 0.7s var(--ease-out) 1.5s both;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
  margin: 0 auto;
}
.scroll-wheel {
  width: 3px;
  height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(8px); opacity: 0; }
}

/* Shared fade up */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 80px 0;
  position: relative;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
}
.section-desc {
  margin-top: 10px;
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
}

/* ============================================
   PROMO VIDEO
   ============================================ */
.section-promo {
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
}
.video-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.video-frame::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Corner accents */
.video-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--accent);
  border-style: solid;
  z-index: 10;
  pointer-events: none;
}
.video-corner-tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.video-corner-tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.video-corner-bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.video-corner-br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

/* ============================================
   HABERLER
   ============================================ */
/* ============================================
   HABERLER — PREMIUM REDESIGN
   ============================================ */
.section-news {
  background: linear-gradient(180deg, #000 0%, #05020a 50%, #000 100%);
  position: relative;
  overflow: hidden;
}
.section-news::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}
.section-news::after {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255,45,111,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* News track & layout */
.news-track {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.news-list {
  display: flex;
  gap: 18px;
  overflow: hidden;
  flex: 1;
  padding: 12px 2px 20px;
  scroll-behavior: smooth;
}

/* Nav buttons */
.news-nav {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,45,111,0.2);
  background: rgba(255,45,111,0.05);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 0 0 0 rgba(255,45,111,0);
}
.news-nav:hover {
  background: rgba(255,45,111,0.12);
  border-color: rgba(255,45,111,0.45);
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(255,45,111,0.15);
}
.news-nav:active { transform: scale(0.95); }

/* ---- News Card ---- */
.news-card {
  min-width: 300px;
  max-width: 300px;
  background: rgba(10,10,15,0.9);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
}
.news-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,45,111,0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
}
.news-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s var(--ease-out), box-shadow 0.35s ease, border-color 0.35s ease;
}
.news-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 56px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,45,111,0.15), 0 0 40px rgba(255,45,111,0.06);
  border-color: rgba(255,45,111,0.25);
}
.news-card:hover::before { opacity: 1; }
.news-card:hover .news-cover-img { transform: scale(1.06); }
.news-card:hover .news-category-badge { opacity: 1; }

/* Cover image */
.news-cover-wrap {
  height: 170px;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0508, #120010);
  flex-shrink: 0;
  position: relative;
}
.news-cover-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(10,10,15,0.95), transparent);
  z-index: 2;
}
.news-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  filter: brightness(0.9) saturate(1.1);
}
.news-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-mono);
  color: var(--accent);
  background: rgba(255,45,111,0.12);
  border: 1px solid rgba(255,45,111,0.3);
  padding: 4px 9px;
  border-radius: 20px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

/* Card body */
.news-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  position: relative;
  z-index: 2;
}
.news-head {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.2px;
  transition: color 0.2s;
}
.news-card:hover .news-head { color: #fff; }
.news-excerpt {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.news-date-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}
.news-date-tag::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}
.news-read {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
  transition: gap 0.2s;
}
.news-card:hover .news-read { gap: 8px; }
.news-read::after {
  content: '→';
  transition: transform 0.2s;
}
.news-card:hover .news-read::after { transform: translateX(3px); }

/* Empty */
.news-empty {
  font-size: 14px;
  color: var(--muted);
  padding: 40px 20px;
  text-align: center;
  width: 100%;
}

/* Ghost button */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--off-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.15);
  background: var(--surface-hover);
  transform: translateY(-1px);
}

/* ============================================
   MODAL
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal[aria-hidden="false"] {
  pointer-events: auto;
  opacity: 1;
}
.modal[aria-hidden="false"] .modal-box {
  transform: translateY(0) scale(1);
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.modal-box {
  position: relative;
  z-index: 1;
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 16px;
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s var(--ease-out);
}
.modal-box::-webkit-scrollbar { width: 4px; }
.modal-box::-webkit-scrollbar-track { background: transparent; }
.modal-box::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: color 0.2s, background 0.2s;
}
.modal-close:hover {
  color: var(--white);
  background: var(--surface-hover);
}
.modal-cover {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
}
.modal-inner {
  padding: 22px 24px 28px;
}
.modal-date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 8px;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 14px;
}
.modal-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--off-white);
}

/* ============================================
   AUDIO PLAYER — PREMIUM REDESIGN
   ============================================ */
.audio-card {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  width: 290px;
  background: rgba(6,4,10,0.88);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(255,45,111,0.15);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.03), 0 0 40px rgba(255,45,111,0.07);
  animation: audioSlideIn 0.7s var(--ease-out) 1.8s both;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.audio-card:hover {
  border-color: rgba(255,45,111,0.28);
  box-shadow: 0 24px 70px rgba(0,0,0,0.85), 0 0 0 1px rgba(255,255,255,0.04), 0 0 60px rgba(255,45,111,0.1);
}
@keyframes audioSlideIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Top row: cover + info + play */
.audio-top-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

/* Cover art */
.audio-cover-btn {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 0;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}
.audio-cover-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 30px rgba(255,45,111,0.25);
}
.audio-cover-btn:active { transform: scale(0.96); }
.audio-cover-dim {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
  transition: background 0.2s;
}
.audio-cover-btn:hover .audio-cover-dim { background: rgba(0,0,0,0.18); }

/* Spinning vinyl ring when playing */
.audio-vinyl-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--accent);
  border-right-color: rgba(255,45,111,0.3);
  opacity: 0;
  transition: opacity 0.3s;
  animation: vinylSpin 2s linear infinite;
  pointer-events: none;
}
.audio-card.playing .audio-vinyl-ring { opacity: 1; }
@keyframes vinylSpin {
  to { transform: rotate(360deg); }
}

.play-icon {
  position: relative;
  z-index: 2;
  font-size: 15px;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
  transition: transform 0.2s;
  line-height: 1;
}
.audio-cover-btn:hover .play-icon { transform: scale(1.2); }

/* Meta info */
.audio-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.audio-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.1px;
}
.audio-artist {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.2px;
}
.audio-status-dot {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}
.audio-eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 10px;
  opacity: 0;
  transition: opacity 0.3s;
}
.audio-card.playing .audio-eq-bars { opacity: 1; }
.audio-eq-bar {
  width: 2.5px;
  background: var(--accent);
  border-radius: 1px;
  animation: eqBar 0.8s ease-in-out infinite;
  transform-origin: bottom;
}
.audio-eq-bar:nth-child(1) { height: 4px; animation-delay: 0s; animation-duration: 0.7s; }
.audio-eq-bar:nth-child(2) { height: 8px; animation-delay: 0.1s; animation-duration: 0.9s; }
.audio-eq-bar:nth-child(3) { height: 5px; animation-delay: 0.2s; animation-duration: 0.6s; }
.audio-eq-bar:nth-child(4) { height: 7px; animation-delay: 0.05s; animation-duration: 0.8s; }
@keyframes eqBar {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}
.audio-status-text {
  font-size: 9.5px;
  font-family: var(--font-mono);
  color: var(--accent);
  letter-spacing: 1px;
  font-weight: 600;
}
.audio-card:not(.playing) .audio-status-text::after { content: 'DURDURULDU'; }
.audio-card.playing .audio-status-text::after { content: 'ÇALINIYOR'; }

/* Bottom row: seek + volume */
.audio-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.audio-seek-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.audio-time {
  font-size: 9.5px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.3);
  min-width: 28px;
  letter-spacing: 0.3px;
}
.audio-time.right { text-align: right; }
.audio-vol-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.audio-vol-icon {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  line-height: 1;
  flex-shrink: 0;
}
.audio-info {
  display: none; /* hidden — replaced by audio-title */
}
.audio-controls {
  display: none; /* replaced by new layout */
}

/* Range sliders — redesigned */
.seek, .volume {
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  transition: height 0.15s;
  background: rgba(255,255,255,0.1);
}
.seek { flex: 1; }
.volume { flex: 1; }
.seek:hover, .volume:hover { height: 4px; }
.seek::-webkit-slider-thumb, .volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px rgba(255,45,111,0.6), 0 2px 6px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.seek:hover::-webkit-slider-thumb, .volume:hover::-webkit-slider-thumb {
  transform: scale(1.3);
  box-shadow: 0 0 14px rgba(255,45,111,0.8);
}
.seek::-moz-range-thumb, .volume::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
}

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  z-index: 400;
  background: rgba(10,10,10,0.9);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s var(--ease-out);
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .topbar { padding: 0 16px; }
  .topbar-nav { display: none; }
  .brand-text { font-size: 15px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-stats { gap: 16px; padding: 10px 18px; }
  .section-inner { padding: 0 16px; }
  .section { padding: 60px 0; }
  .news-card { min-width: 260px; max-width: 260px; }
  .modal-cover { height: 180px; }
  .modal-title { font-size: 22px; }
  .audio-card { right: 12px; bottom: 12px; width: 248px; }
  .audio-cover-btn { width: 44px; height: 44px; }
  .seek { min-width: 0; }
  .alpha-badge { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
