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

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

:root {
  /* Colors */
  --bg-deep: #0a0a0a;
  --bg-offset: #121212;
  --accent: #00f2ff; /* Neon Cyan */
  --accent-glow: rgba(0, 242, 255, 0.5);
  --accent-muted: #008891;
  --text: #f8fafc;
  --text-muted: #94a3b8;

  /* Tokens */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-neon: 0 0 15px var(--accent-glow);
  --shadow-glass: 0 8px 32px 0 rgba(0,0,0,0.8);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-heading: 'Zodiak', serif;
  --font-body: 'Supreme', sans-serif;
}

@font-face {
  font-family: 'Zodiak';
  src: url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&display=swap');
}

body {
  font-family: var(--font-body), system-ui, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading), 'Playfair Display', serif;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* === STRUCTURAL BASELINES === */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 5%;
  width: 100%;
}

section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-alt {
  background: var(--bg-offset);
}

/* === ZIGZAG DIVIDERS === */
.zigzag-divider {
  height: 60px;
  width: 100%;
  background: var(--bg-deep);
  clip-path: polygon(0 0, 5% 40%, 10% 0, 15% 40%, 20% 0, 25% 40%, 30% 0, 35% 40%, 40% 0, 45% 40%, 50% 0, 55% 40%, 60% 0, 65% 40%, 70% 0, 75% 40%, 80% 0, 85% 40%, 90% 0, 95% 40%, 100% 0, 100% 100%, 0 100%);
  margin-top: -60px;
  z-index: 2;
  position: relative;
}

/* === PREMIUM UI BLOCKS === */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-glass);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
  border-color: var(--accent-muted);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 242, 255, 0.1);
}

.btn-primary {
  background: var(--accent);
  color: #000;
  padding: 1.2rem 2.5rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-neon);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px -10px var(--accent-glow);
  filter: brightness(1.2);
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--accent-muted);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* === NAVIGATION === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.site-nav.scrolled {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 10px;
}

.site-title-small {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
}

.nav-tabs {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px;
  border-radius: 12px;
}

.nav-tab {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.nav-tab.active {
  background: var(--accent);
  color: #000;
}

.nav-tab:hover:not(.active) {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

/* === HERO SECTION === */
.hero-arena {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  background: radial-gradient(circle at 50% 50%, rgba(0, 242, 255, 0.15) 0%, transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 40px;
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-stats-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 2.5rem;
}

.rating-stars {
  color: #ffcc00;
  font-weight: 800;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual .main-screen {
  max-width: 320px;
  width: 100%;
  border-radius: 40px;
  border: 8px solid #222;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.8), 0 0 50px var(--accent-glow);
}

/* === MAGAZINE EDITORIAL BLOCKS (FEATURES) === */
.editorial-grid {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.editorial-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.editorial-block:nth-child(even) {
  direction: rtl;
}

.editorial-block:nth-child(even) .editorial-text {
  direction: ltr;
}

.editorial-number {
  font-family: var(--font-heading);
  font-size: 8rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent-muted);
  opacity: 0.3;
  margin-bottom: -1.5rem;
}

.editorial-text h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.editorial-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.editorial-image-wrapper {
  position: relative;
}

.editorial-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
}

/* === STATS SVG RINGS === */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-circle-item {
  text-align: center;
}

.svg-ring-container {
  position: relative;
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
}

.svg-ring-container svg {
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 8;
}

.ring-progress {
  fill: none;
  stroke: var(--accent);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  transition: stroke-dashoffset 2s ease-out;
}

.stat-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* === MASONRY REVIEWS === */
.review-masonry {
  columns: 3;
  column-gap: 24px;
}

.review-card {
  break-inside: avoid;
  margin-bottom: 24px;
  background: var(--bg-offset);
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
}

.review-stars {
  color: #ffcc00;
  margin-bottom: 15px;
}

.review-text {
  font-size: 1rem;
  margin-bottom: 20px;
  font-style: italic;
}

.review-user {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
}

/* === SCREENSHOT GALLERY FAN === */
.gallery-fan-arena {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.fan-container {
  position: relative;
  width: 320px;
  height: 512px;
}

.fan-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: 4px solid #222;
}

.fan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.fan-card:nth-child(1) { transform: rotate(-8deg) translateX(-100px); z-index: 1; }
.fan-card:nth-child(2) { transform: rotate(-4deg) translateX(-50px); z-index: 2; }
.fan-card:nth-child(3) { transform: rotate(0deg) translateX(0); z-index: 3; }
.fan-card:nth-child(4) { transform: rotate(4deg) translateX(50px); z-index: 2; }
.fan-card:nth-child(5) { transform: rotate(8deg) translateX(100px); z-index: 1; }

.fan-card:hover {
  transform: scale(1.1) rotate(0) translateY(-30px);
  z-index: 10;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), 0 0 30px var(--accent-glow);
  border-color: var(--accent);
}

/* === FAQ ACCORDION === */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
}

.faq-trigger {
  width: 100%;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-inner {
  padding-bottom: 25px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* === DOWNLOAD CTA === */
.download-lux-arena {
  text-align: center;
  padding: 120px 0;
}

.lux-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin: 0 auto 30px;
  box-shadow: var(--shadow-neon);
}

.lux-tagline {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 40px;
}

/* === FOOTER === */
.newsletter-footer {
  background: #050505;
  padding: 100px 0 40px;
  border-top: 1px solid var(--glass-border);
}

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

.footer-brand .site-title-small {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links h4 {
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: var(--text);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.newsletter-box h4 {
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.newsletter-form input {
  flex: 1;
  background: var(--bg-offset);
  border: 1px solid var(--glass-border);
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  color: #fff;
}

.newsletter-form button {
  background: var(--accent);
  color: #000;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* === FLOATING CTA === */
.floating-cta {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-cta.visible {
  transform: translateY(0);
}

/* === ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item {
  opacity: 0;
  transform: translateY(20px);
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats-badge { justify-content: center; }
  .editorial-block { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .editorial-block:nth-child(even) { direction: ltr; }
  .editorial-number { font-size: 5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .review-masonry { columns: 2; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-tabs { display: none; }
  .nav-logo { width: 32px; height: 32px; }
  .hero-content h1 { font-size: 3rem; }
  .stats-row { gap: 30px; }
  .review-masonry { columns: 1; }
  .gallery-fan-arena { height: 500px; }
  .fan-container { width: 220px; height: 352px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .floating-cta { right: 20px; bottom: 20px; }
}
