/* ================================================
   StreamitAZ — Landing Page Styles
   ================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:        #040404;
  --surface:   #111111;
  --border:    #222222;
  --accent:    #111111;
  --accent2:   #ff6b35;
  --text:      #ffffff;
  --text-muted:#999999;
  --radius:    12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* ------------------------------------------------
   NAVBAR
------------------------------------------------ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(4,4,4,0.95), transparent);
  backdrop-filter: blur(8px);
}

.navbar-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
}

.logo-icon {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-accent { color: var(--accent); }

.btn-nav {
  padding: 8px 20px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-nav:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

/* ------------------------------------------------
   HERO
------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* POSTER WALL */
.poster-wall {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  overflow: hidden;
  transform: rotate(-5deg) scale(1.15);
  transform-origin: center center;
}

.poster-row {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  width: max-content;
}

.poster-row.row-left  { animation: scrollLeft  35s linear infinite; }
.poster-row.row-right { animation: scrollRight 40s linear infinite; }
.poster-row.row-left2 { animation: scrollLeft  45s linear infinite; }
.poster-row.row-right2{ animation: scrollRight 30s linear infinite; }
.poster-row.row-left3 { animation: scrollLeft  38s linear infinite; }

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.poster-item {
  width: 100px;
  height: 133px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #1a1a1a;
}

.poster-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.4s;
}

.poster-item img.loaded { opacity: 1; }

/* OVERLAY — qaranlıq qradient */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(4,4,4,0.75) 0%, rgba(4,4,4,0.45) 60%, transparent 100%),
    linear-gradient(to bottom, rgba(4,4,4,0.6) 0%, rgba(4,4,4,0.1) 40%, rgba(4,4,4,0.1) 60%, rgba(4,4,4,0.9) 100%);
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  gap: 20px;
}

.hero-logo .play-icon {
  width: 100px;
  height: 100px;
  background: var(--accent);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  box-shadow: 0 0 60px rgba(229,9,20,0.5);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 40px rgba(229,9,20,0.4); }
  50%       { box-shadow: 0 0 80px rgba(229,9,20,0.7); }
}

.hero-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--text-muted);
  max-width: 480px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #ffffff;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: -0.3px;
}

.btn-primary:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.15);
}

/* ------------------------------------------------
   FEATURES
------------------------------------------------ */
.features {
  background: var(--bg);
  padding: 80px 24px;
  position: relative;
  z-index: 10;
}

.features-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(229,9,20,0.4);
  transform: translateY(-4px);
}

.feature-icon { font-size: 32px; }

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ------------------------------------------------
   FOOTER
------------------------------------------------ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 24px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer a {
  color: var(--accent);
  text-decoration: none;
}

/* ------------------------------------------------
   RESPONSIVE
------------------------------------------------ */
@media (max-width: 600px) {
  .poster-item {
    width: 72px;
    height: 96px;
  }

  .hero-logo .play-icon {
    width: 80px;
    height: 80px;
    font-size: 34px;
    border-radius: 18px;
  }

  .btn-primary {
    padding: 14px 28px;
    font-size: 15px;
  }

  .features { padding: 60px 16px; }
}