/* ===== CSS VARIABLES ===== */
:root {
  --primary: #e5a00d;
  --secondary: #06beb6;
  --accent: #0070ba;
  --dark: #0a0a0a;
  --light: #ffffff;
  --gray: #888888;
  --text: #e0e0e0;
  --jellyseerr-color: #8a2be2;
  --subscribe-color: #28a745;
  --bg-color: #111111;
  --section-bg: #1a1a1a;
  --card-bg: #222222;
}

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

body, html {
  font-family: 'Inter', sans-serif;
  color: var(--light);
  background: var(--bg-color);
  scroll-behavior: smooth;
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.subscribe-nav {
  background: var(--subscribe-color);
  color: white !important;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
}

.status-nav {
  background: var(--primary);  /* ← Change this line */
  color: white !important;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: var(--light);
}

.subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-btn, .subscribe-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
}

.scroll-btn {
  background: var(--primary);
  color: #000;
}

.subscribe-btn {
  background: var(--subscribe-color);
  color: white;
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 70px 0;
  text-align: center;
}

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

.section-title {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section p {
  max-width: 600px;
  margin: 0 auto 25px;
  color: var(--text);
  font-size: 0.95rem;
}

/* ===== CARD STYLES ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.card-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--light);
}

.card p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

/* ===== BUTTON STYLES ===== */
.jellyseerr-btn, .plex-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 0.95rem;
  margin-top: 10px;
}

.jellyseerr-btn {
  background: var(--jellyseerr-color);
}

.plex-btn {
  background: var(--primary);
}

/* ===== PLEX CLIENTS GRID ===== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin: 40px auto 30px;
  max-width: 900px;
}

.client {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 20px 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.client-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.client-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--light);
}

.client p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

.watch-anywhere {
  margin-top: 25px;
  font-size: 0.95rem;
  color: var(--text);
}

/* ===== QUALITY TIPS SECTION ===== */
.quality-tips {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  margin: 30px auto;
  text-align: left;
  max-width: 700px;
  border-left: 4px solid var(--primary);
}

.quality-tips h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.3rem;
  text-align: center;
}

.quality-tips ol {
  padding-left: 20px;
}

.quality-tips li {
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text);
}

.happy-viewing {
  margin-top: 20px;
  font-style: italic;
  text-align: center;
  color: var(--gray);
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 40px 20px;
  background: var(--dark);
  font-size: 0.9rem;
  color: var(--gray);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary);
}

/* ===== MOVIE BACKGROUND ANIMATION ===== */
.movie-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5% 0;
}

/* ===== PERFECT SMOOTH MOVIE ANIMATION - NO FLICKER ===== */
.movie-row {
  display: flex;
  width: 400%;
}

.row-1, .row-3, .row-5 {
  animation: slideLeftSmooth 360s linear infinite;
}

.row-2, .row-4 {
  animation: slideRightSmooth 360s linear infinite;
}

.row-1 { animation-duration: 400s; }
.row-2 { animation-duration: 410s; }
.row-3 { animation-duration: 420s; }
.row-4 { animation-duration: 430s; }
.row-5 { animation-duration: 440s; }

@keyframes slideLeftSmooth {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slideRightSmooth {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.movie-poster {
  width: 140px;
  height: 210px;
  object-fit: cover;
  border-radius: 6px;
  opacity: 0.25;
  filter: blur(1px) brightness(0.85);
  flex-shrink: 0;
  margin: 0 15px;
}

/* ===== SUBSCRIPTION OPTIONS ===== */
.subscription-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.subscription-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.subscription-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--light);
  margin-bottom: 10px;
}

.price span {
  font-size: 1rem;
  color: var(--gray);
}

.subscription-card p {
  color: var(--gray);
  margin-bottom: 25px;
  font-size: 0.9rem;
}

.subscribe-option-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 25px;
  border-radius: 25px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 16px;
  background: var(--accent);
  width: 100%;
  justify-content: center;
}

.subscribe-option-btn:hover {
  background: #005ea6;
  color: white;
}

/* ===== VIP ACCESS STYLES ===== */
.vip-form-container {
  max-width: 100%;
  margin: 20px 0;
  padding: 0;
}

.vip-form {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  max-width: 400px;
}

.vip-input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--primary);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--light);
  font-size: 0.9rem;
}

.vip-check-btn {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: var(--primary);
  color: #000;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.vip-input::placeholder {
  color: var(--gray);
}

.vip-check-btn:hover {
  background: #ffb700;
}

.vip-message {
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
}

.vip-message.success {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid #28a745;
}

.vip-message.error {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
  border: 1px solid #dc3545;
}

.vip-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(45deg, var(--primary), #ffb700);
  color: #000;
  padding: 5px 15px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 0.8rem;
}

.vip-plan {
  position: relative;
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.vip-btn {
  background: linear-gradient(45deg, var(--primary), #ffb700) !important;
  color: #000 !important;
}

/* ===== COMPACT VIP LAYOUT ===== */
.vip-compact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  justify-items: center;
  margin-bottom: 30px;
  text-align: center;
}

.vip-left {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.vip-left .section-title,
.vip-left .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.vip-right {
  display: flex;
  justify-content: center;
  align-items: start;
  width: 100%;
}

.vip-right .subscription-card {
  margin: 0;
  max-width: 300px;
  width: 100%;
}

/* ===== BENEFITS STYLES ===== */
.benefits-toggle-container {
  margin: 30px auto 0 auto;
  text-align: center;
  width: 100%;
  max-width: 800px;
  grid-column: 1 / -1;
}

.benefits-toggle-btn {
  width: 100%;
  min-width: 200px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.benefits-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
}

/* Remove dropdown and always show benefits */
.dropdown-content {
  display: block;
  background: transparent;
  border: nothing;
  padding: 0;
  margin-top: 15px;
}

.benefits-grid-horizontal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item i {
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.benefit-item h4 {
  color: var(--light);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.benefit-item p {
  color: var(--gray);
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.3;
}

/* ===== MOBILE MENU BUTTON (ALWAYS HIDDEN ON DESKTOP) ===== */
.mobile-menu-btn {
  display: none;
}

.mobile-menu {
  display: none;
}

.mobile-menu-close {
  display: none;
}

.mobile-backdrop {
  display: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 8px 10px;
    width: 44px;
    height: 44px;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    padding: 70px 20px 30px 20px;
    flex-direction: column;
    gap: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
  }

  .mobile-menu.active {
    display: flex;
    right: 0;
  }

  .mobile-menu a {
    color: var(--text);
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 6px;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    background: rgba(255, 255, 255, 0.03);
  }

  .mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(2px);
  }

  .mobile-menu .status-nav,
  .mobile-menu .subscribe-nav {
    margin-top: 10px;
    text-align: center;
    font-weight: 600;
    border: none !important;
  }

  .mobile-menu .status-nav {
    background: var(--primary);
    color: #000 !important;
  }

  .mobile-menu .subscribe-nav {
    background: var(--subscribe-color);
    color: white !important;
  }

  .mobile-menu-close {
    display: flex;
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
  }

  .mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .mobile-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .mobile-backdrop.active {
    display: block;
    opacity: 1;
  }

  /* Rest of your original mobile styles for sections */
  h1 {
    font-size: 2.2rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .footer-links {
    gap: 15px;
  }
  
  .movie-poster {
    width: 150px;
    height: 225px;
  }
  
  .subscription-options {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .subscription-card {
    padding: 25px 20px;
  }
  
  .price {
    font-size: 2rem;
  }
  
  .vip-form {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }
  
  .benefits-toggle-btn {
    min-width: 250px;
    margin: 0 auto;
  }
  
  .vip-right .subscription-card {
    max-width: 400px;
  }
  
  .benefit-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .benefit-item {
    padding: 10px;
  }
  
  .vip-compact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding-top: 50px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .movie-poster {
    width: 120px;
    height: 180px;
  }
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--section-bg);
  padding: 50px 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.stat-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 25px 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(229, 160, 13, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .stat-card {
    padding: 20px 10px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .stat-card {
    padding: 18px 15px;
  }
}

/* ===== CONTACT LINKS STYLES ===== */
.contact-links {
  margin: 25px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.contact-message {
  color: var(--text);
  margin-bottom: 15px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-message i {
  color: var(--primary);
}

.contact-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: none;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
}

.discord-btn {
  background: #5865F2;
  color: white;
}

.contact-btn:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-btn {
    width: 200px;
    justify-content: center;
  }
}