/* ============================================
   LUXASHORT.COM — LANDING PAGE STYLES
   Dark Theme | Netflix-style | Streaming UI
   ============================================ */

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

:root {
  --bg: #0a0a0f;
  --bg-card: #16161e;
  --bg-hover: #1e1e2a;
  --surface: #1a1a24;
  --border: #2a2a3a;
  --text: #e4e4e7;
  --text-muted: #9ca3af;
  --accent: #e50914;
  --accent-hover: #ff1a26;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --green: #10b981;
  --gold: #f59e0b;
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}

.logo-icon {
  background: var(--accent);
  color: #fff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.8rem;
}

.logo-text { font-weight: 400; }
.logo-text strong { font-weight: 800; }

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

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: var(--bg-hover);
}

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

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
}

.search-icon { color: var(--text-muted); flex-shrink: 0; }

.search-box input {
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 0.85rem;
  width: 140px;
}

.search-box input::placeholder { color: var(--text-muted); }

.btn-login {
  padding: 8px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-login:hover { background: var(--accent-hover); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(229, 9, 20, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(99, 102, 241, 0.1), transparent),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(245, 158, 11, 0.08), transparent);
}

.hero-content {
  position: relative;
  max-width: 800px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(229, 9, 20, 0.15);
  border: 1px solid rgba(229, 9, 20, 0.3);
  color: #ff6b6b;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #d4d4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(229, 9, 20, 0.3);
}

.btn-outline {
  padding: 14px 32px;
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  border-color: var(--text-muted);
  background: var(--bg-hover);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-stats .stat strong {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.hero-stats .stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === SECTIONS === */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.see-all {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.see-all:hover { text-decoration: underline; }

/* === DRAMA GRID === */
.drama-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.drama-card a {
  display: block;
  transition: transform 0.2s;
}

.drama-card a:hover {
  transform: translateY(-6px);
}

.card-poster {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 10px;
  background: var(--surface);
}

.card-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.poster-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.poster-emoji {
  font-size: 3rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.card-episodes {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}

.card-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.card-badge.hot { background: var(--accent); color: #fff; }
.card-badge.new { background: var(--blue); color: #fff; }
.card-badge.pick { background: var(--gold); color: #000; }

.card-info h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* === GENRES === */
.genre-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.genre-tag {
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.genre-tag:hover {
  background: var(--bg-hover);
  border-color: var(--accent);
  color: #fff;
}

/* === APP SECTION === */
.app-section {
  background: var(--surface);
  max-width: 100%;
  padding: 80px 24px;
}

.app-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: center;
}

.app-text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.app-text p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.app-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #fff;
  color: #000;
  border-radius: var(--radius);
  transition: transform 0.2s;
}

.app-btn:hover { transform: translateY(-2px); }

.app-btn-icon { font-size: 1.5rem; }
.app-btn-text small { display: block; font-size: 0.7rem; color: #555; }
.app-btn-text strong { font-size: 1rem; }

.phone-mockup {
  background: #1a1a24;
  border: 3px solid #333;
  border-radius: 30px;
  padding: 12px;
  max-width: 220px;
  margin: 0 auto;
}

.phone-screen {
  background: var(--bg);
  border-radius: 20px;
  padding: 16px;
  min-height: 350px;
}

.phone-header {
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.phone-card {
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
}

/* === SEO CONTENT === */
.seo-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px;
}

.seo-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.seo-block:last-child { border-bottom: none; }

.seo-block h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.seo-block p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.seo-block a {
  color: var(--accent);
}

.seo-block a:hover {
  text-decoration: underline;
}

.seo-block strong {
  color: var(--text);
}

/* Steps */
.steps {
  margin: 24px 0;
}

.step {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.step-num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.step strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
  font-size: 1rem;
}

.step p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Genre list */
.genre-list {
  margin: 20px 0;
}

.genre-item {
  padding: 12px 16px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.genre-item strong {
  color: #fff;
}

/* Compare table */
.compare-table {
  overflow-x: auto;
  margin: 20px 0;
}

.compare-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th {
  background: var(--surface);
  color: #fff;
  text-align: left;
  padding: 12px 16px;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
}

.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.compare-table tr:hover td {
  background: var(--bg-hover);
}

/* FAQ */
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 20px 16px;
  font-size: 0.9rem;
}

.faq-item a {
  color: var(--accent);
}

/* === FOOTER === */
.site-footer {
  background: #06060a;
  border-top: 1px solid var(--border);
  padding: 60px 24px 30px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.2s;
}

.social-links a:hover {
  background: var(--accent);
  color: #fff;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.footer-seo {
  font-size: 0.75rem !important;
  color: #555 !important;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
  }
  .mobile-menu-btn { display: block; }
  .search-box { display: none; }

  .hero { min-height: 70vh; padding: 100px 20px 60px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-stats { gap: 24px; }
  .hero-stats .stat strong { font-size: 1.3rem; }

  .drama-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
  }

  .app-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .app-visual { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .section-header {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .drama-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .genre-tag { font-size: 0.8rem; padding: 8px 14px; }
}
