/* ==========================================================================
   vodotv.store - Main Stylesheet
   Theme: Midnight Navy (#172B4D), Accent (#f59e0b), Light Gray (#F5F7F9)
   Mobile-First & Fully Responsive Layout
   ========================================================================== */

/* Global Reset & Base Rules */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #FFFFFF;
  color: #17202A;
  line-height: 1.6;
  scroll-behavior: smooth;
}

section, header, footer, main, nav, article {
  width: 100%;
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* Container Utility */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  color: #172B4D;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  word-break: break-word;
  overflow-wrap: break-word;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.3rem; }
  h3 { font-size: 1.6rem; }
}

p {
  margin-bottom: 16px;
  color: #4A5568;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: #f59e0b;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
  background-color: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
  background-color: #172B4D;
  color: #FFFFFF;
}

.btn-secondary:hover {
  background-color: #0f1c33;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: #172B4D;
  color: #172B4D;
}

.btn-outline:hover {
  background-color: #172B4D;
  color: #FFFFFF;
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background-color: #1da851;
  transform: translateY(-2px);
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #172B4D;
}

.header__logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.header__nav-list {
  display: flex;
  list-style: none;
  gap: 24px;
}

.header__nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: #172B4D;
  transition: color 0.2s ease;
}

.header__nav-link:hover {
  color: #f59e0b;
}

.header__cta {
  display: none;
}

@media (min-width: 992px) {
  .header__cta {
    display: inline-flex;
  }
}

/* Mobile Toggle & Side Drawer */
.header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.header__toggle span {
  width: 100%;
  height: 3px;
  background-color: #172B4D;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.header__mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.header__mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1002;
  padding: 80px 24px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}

.header__mobile-menu.is-active {
  right: 0;
}

.header__mobile-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.header__mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.header__mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: #172B4D;
  display: block;
}

@media (min-width: 992px) {
  .header__toggle,
  .header__mobile-menu,
  .header__mobile-overlay {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .header__nav {
    display: none;
  }
}

/* Banner Urgency & Top Bar */
.top-bar {
  background-color: #172B4D;
  color: #FFFFFF;
  font-size: 0.85rem;
  text-align: center;
  padding: 8px 16px;
  font-weight: 600;
}

.top-bar span {
  color: #f59e0b;
}

/* SECTION 1: HERO SECTION */
.hero {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #172B4D 0%, #0f1c33 100%);
  color: #FFFFFF;
  padding: 60px 16px 40px 16px;
  box-sizing: border-box;
}

.hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

@media (min-width: 992px) {
  .hero {
    padding: 80px 20px 60px 20px;
  }
  .hero__container {
    flex-direction: row;
    text-align: left;
    align-items: center;
    justify-content: space-between;
  }
  .hero__content {
    flex: 1;
    max-width: 550px;
  }
  .hero__preview {
    flex: 1;
    max-width: 540px;
  }
}

.hero h1 {
  color: #FFFFFF;
  font-size: 2.2rem;
  line-height: 1.25;
  margin-bottom: 16px;
}

.hero__subheadline {
  color: #CBD5E1;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.hero__quote-box {
  background: rgba(245, 158, 11, 0.15);
  border-left: 4px solid #f59e0b;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.95rem;
  color: #FDE68A;
  margin-bottom: 24px;
  font-style: italic;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .hero__cta-group {
    justify-content: flex-start;
  }
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #94A3B8;
  justify-content: center;
}

@media (min-width: 992px) {
  .hero__trust {
    justify-content: flex-start;
  }
}

.hero__badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  color: #34D399;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

/* HOT PLAYER UI STYLE */
.tv-content {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.tv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tv-logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tv-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f59e0b;
  font-size: 1.2rem;
  font-weight: 700;
}

.tv-logo-icon {
  width: 24px;
  height: 24px;
}

.tv-version {
  font-size: 0.75rem;
  color: #64748B;
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: 10px;
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
}

.status-active {
  color: #10B981;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.status-divider {
  width: 4px;
  height: 4px;
  background: #64748B;
  border-radius: 50%;
}

.status-expire {
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tv-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

@media (min-width: 480px) {
  .tv-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tv-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.tv-card.active, .tv-card:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: #f59e0b;
  transform: translateY(-2px);
}

.tv-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
}

.tv-card-icon img, .tv-card-icon svg {
  width: 32px;
  height: 32px;
}

.tv-card span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #E2E8F0;
}

.tv-footer {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.tv-icon-group {
  display: flex;
  gap: 12px;
}

.tv-icon-btn {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: #94A3B8;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.tv-icon-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

/* SECTION UTILITIES */
.section {
  padding: 60px 0;
}

.section-bg-light {
  background-color: #F5F7F9;
}

.section-bg-dark {
  background-color: #172B4D;
  color: #FFFFFF;
}

.section-bg-dark h2, .section-bg-dark h3 {
  color: #FFFFFF;
}

.section-bg-dark p {
  color: #CBD5E1;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.05rem;
}

/* CAROUSEL & GALLERY STYLES */
.carousel-wrapper {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0 20px 0;
  display: flex;
  gap: 16px;
}

.carousel-wrapper::-webkit-scrollbar {
  height: 6px;
}

.carousel-wrapper::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}

.carousel-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #E2E8F0;
  transition: transform 0.3s ease;
}

.carousel-card:hover {
  transform: translateY(-4px);
}

/* Image Aspect Ratios */
.carousel--logos img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  padding: 10px;
  background: #F8FAFC;
  width: 160px;
}

.carousel--movies .carousel-card {
  width: 180px;
}

.carousel--movies img {
  aspect-ratio: 1 / 1.482;
  object-fit: cover;
  width: 100%;
}

.carousel--devices .carousel-card {
  width: 220px;
}

.carousel--devices img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.carousel--sport .carousel-card {
  width: 200px;
}

.carousel--sport img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  width: 100%;
}

.carousel--wtsp .carousel-card {
  width: 240px;
}

.carousel--wtsp img {
  aspect-ratio: 473 / 1024;
  object-fit: cover;
  width: 100%;
}

/* COMPARES TABLE SECTION */
.compares-table-wrapper {
  overflow-x: auto;
  margin: 30px 0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.compares-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #FFFFFF;
  text-align: left;
  min-width: 550px;
}

.compares-table th, .compares-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #E2E8F0;
}

.compares-table th {
  background-color: #172B4D;
  color: #FFFFFF;
  font-size: 1rem;
}

.compares-table th.highlight {
  background-color: #f59e0b;
}

.compares-table td.brand-col {
  font-weight: 700;
  color: #172B4D;
  background-color: rgba(245, 158, 11, 0.05);
}

/* PRICING SECTION */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  border: 2px solid #f59e0b;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.pricing-tag {
  position: absolute;
  top: -14px;
  right: 24px;
  background-color: #f59e0b;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 12px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #172B4D;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #172B4D;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #64748B;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px border #F1F5F9;
  font-size: 0.92rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li::before {
  content: "✓";
  color: #10B981;
  font-weight: bold;
}

.pricing-features li.disabled {
  color: #94A3B8;
  text-decoration: line-through;
}

.pricing-features li.disabled::before {
  content: "✕";
  color: #CBD5E1;
}

.pricing-horizontal-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
  .pricing-horizontal-card {
    flex-direction: row;
  }
}

.multi-screen-header {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 24px;
}

.payment-methods-img {
  max-width: 531px;
  width: 100%;
  margin: 30px auto 0 auto;
  display: block;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 8px;
  background: #FFFFFF;
}

/* 3-STEP ACTIVATION */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background: #FFFFFF;
  padding: 30px 24px;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  position: relative;
}

.step-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: #f59e0b;
  margin-bottom: 12px;
}

/* CUSTOMER REVIEWS CAROUSEL */
.reviews-rating-summary {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #172B4D;
  margin-bottom: 20px;
}

.review-card {
  width: 280px;
  flex: 0 0 auto;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: #172B4D;
}

.review-location {
  font-size: 0.8rem;
  color: #64748B;
}

.review-verified {
  background-color: #D1FAE5;
  color: #065F46;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

.review-stars {
  color: #f59e0b;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
}

/* FAQ ACCORDION / LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: #172B4D;
  margin-bottom: 8px;
}

.faq-answer {
  color: #4A5568;
  font-size: 0.95rem;
}

/* FOOTER STYLES */
.footer {
  background-color: #172B4D;
  color: #CBD5E1;
  padding: 60px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer__col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #f59e0b;
  display: inline-block;
  padding-bottom: 4px;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  color: #CBD5E1;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: #f59e0b;
}

.footer__bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #94A3B8;
}

/* CONTENT PAGE SPECIFIC STYLES */
.content-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px;
}

.content-article h1 { margin-bottom: 24px; }
.content-article h2 { margin-top: 36px; margin-bottom: 16px; border-bottom: 2px solid #F1F5F9; padding-bottom: 8px; }
.content-article h3 { margin-top: 24px; margin-bottom: 12px; }
.content-article ul, .content-article ol { margin-bottom: 20px; padding-left: 24px; }
.content-article li { margin-bottom: 8px; color: #4A5568; }
.content-article blockquote { background: #F8FAFC; border-left: 4px solid #f59e0b; padding: 16px 20px; margin: 24px 0; border-radius: 0 8px 8px 0; }
