/* ==========================================================================
   ARENA PLAY - DESIGN SYSTEM & STYLES
   Main Highlight Color: #C4FF00 (Volt / Neon Lime)
   Dark Theme: Deep Pitch Charcoal & Obsidian (#080C0A, #0F1411, #161D19)
   ========================================================================== */

:root {
  /* Color Tokens */
  --primary: #C4FF00;
  --primary-hover: #b0e600;
  --primary-glow: rgba(196, 255, 0, 0.4);
  --primary-subtle: rgba(196, 255, 0, 0.1);
  --primary-border: rgba(196, 255, 0, 0.25);

  --bg-dark: #080C0A;
  --bg-card: #0F1612;
  --bg-card-hover: #16201A;
  --bg-surface: #141C17;
  
  --text-main: #F2F5F3;
  --text-muted: #9AA7A0;
  --text-dark: #080C0A;

  --accent-red: #FF3B30;
  --accent-green: #34C759;

  --border-color: rgba(255, 255, 255, 0.08);
  --border-bright: rgba(255, 255, 255, 0.16);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Layout */
  --container-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-neon: 0 0 25px rgba(196, 255, 0, 0.25);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img, video {
  max-width: 100%;
  display: block;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.text-neon {
  color: var(--primary);
  text-shadow: 0 0 12px rgba(196, 255, 0, 0.3);
}

.font-bold {
  font-weight: 700;
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.center {
  text-align: center;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0.75rem 0;
  text-transform: uppercase;
}

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

/* Badges */
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-subtle);
  border: 1px solid var(--primary-border);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.badge-sm {
  display: inline-block;
  background: rgba(196, 255, 0, 0.12);
  color: var(--primary);
  border: 1px solid var(--primary-border);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-dark);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-bright);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-subtle);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-color);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-bright);
}

.btn-glow {
  box-shadow: 0 0 20px rgba(196, 255, 0, 0.35);
  animation: pulse-glow 2.5s infinite;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.125rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.btn-full {
  width: 100%;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(196, 255, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(196, 255, 0, 0.6);
  }
}

/* Announcement Top Bar */
.top-bar {
  background: linear-gradient(90deg, #0f1612 0%, #1c2b20 50%, #0f1612 100%);
  border-bottom: 1px solid var(--primary-border);
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--text-main);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}

.live-dot-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.top-bar-link {
  color: var(--primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.top-bar-link:hover {
  color: #FFF;
}

/* Navbar Sticky */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 12, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  transition: var(--transition-fast);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(196, 255, 0, 0.4);
}

.logo-text .highlight {
  color: var(--primary);
}

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

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

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

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

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 90px 0 100px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 255, 0, 0.12) 0%, rgba(8, 12, 10, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 3.8rem);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-val {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFF;
}

.metric-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.metric-divider {
  width: 1px;
  height: 36px;
  background: var(--border-color);
}

.stars {
  color: var(--primary);
  font-size: 0.85rem;
  display: flex;
  gap: 3px;
}

/* Hero Player Card */
.player-card {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 2px var(--primary-border);
  transition: var(--transition-normal);
}

.player-card:hover {
  border-color: var(--primary-border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 25px rgba(196, 255, 0, 0.15);
}

.player-header {
  background: rgba(0, 0, 0, 0.4);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
}

.player-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-badge.live {
  background: rgba(255, 59, 48, 0.15);
  color: var(--accent-red);
  border: 1px solid rgba(255, 59, 48, 0.3);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-badge.live i {
  font-size: 0.5rem;
  animation: blink 1s infinite;
}

.status-quality {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.player-match-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.player-screen {
  position: relative;
  height: 280px;
  background: linear-gradient(180deg, rgba(8, 12, 10, 0.2) 0%, rgba(8, 12, 10, 0.8) 100%),
              url('stadium_field.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.stadium-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

.scoreboard-widget {
  position: relative;
  z-index: 2;
  align-self: center;
  background: rgba(15, 22, 18, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-bright);
  padding: 10px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.team {
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
}

.team-shield {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  color: #FFF;
}

.Shield-fla { background: linear-gradient(135deg, #cc0000 50%, #000 50%); }
.Shield-pal { background: linear-gradient(135deg, #006437 100%, #006437 100%); }

.score-display {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
}

.match-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 8px;
  font-weight: 600;
}

.player-controls-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.live-stats-pill, .audio-track-pill {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.player-footer {
  background: rgba(0, 0, 0, 0.5);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.screen-devices {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
}

.screen-devices i:hover {
  color: var(--primary);
}

/* Campeonato Ticker */
.ticker-section {
  background: #0C120E;
  border-y: 1px solid var(--border-color);
  padding: 16px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticker-label {
  background: var(--primary);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 8px 20px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  z-index: 10;
}

.ticker-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  width: 100%;
}

.ticker-content {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
  gap: 40px;
  animation: scroll-ticker 25s linear infinite;
}

.ticker-item {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

@keyframes scroll-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* Matches Grid Section */
.matches-section {
  padding: 90px 0;
}

.matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.match-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition-normal);
}

.match-card:hover {
  border-color: var(--primary-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.match-card.highlighted {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(196, 255, 0, 0.05) 0%, var(--bg-card) 100%);
}

.match-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.match-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 20px;
}

.match-live-tag {
  color: var(--accent-red);
  display: flex;
  align-items: center;
  gap: 4px;
}

.match-upcoming-tag {
  color: var(--primary);
}

.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.match-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 40%;
}

.team-badge-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  color: #FFF;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.fla-bg { background: radial-gradient(circle, #E30613 0%, #000 100%); }
.pal-bg { background: radial-gradient(circle, #006437 0%, #00331a 100%); }
.cor-bg { background: radial-gradient(circle, #222 0%, #000 100%); }
.sao-bg { background: radial-gradient(circle, #cc0000 0%, #000 100%); }
.gre-bg { background: radial-gradient(circle, #0d80bf 0%, #000 100%); }
.int-bg { background: radial-gradient(circle, #e30613 0%, #800000 100%); }

.match-team .name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

.match-vs {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Features Section */
.features-section {
  padding: 90px 0;
  background: var(--bg-surface);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition-normal);
}

.feature-card:hover {
  border-color: var(--primary-border);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-subtle);
  border: 1px solid var(--primary-border);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Comparison Section */
.comparison-section {
  padding: 90px 0;
}

.table-responsive {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.comparison-table th, .comparison-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.comparison-table th {
  background: rgba(0, 0, 0, 0.4);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #FFF;
}

.comparison-table .col-highlight {
  background: rgba(196, 255, 0, 0.04);
  border-x: 1px solid var(--primary-border);
}

.comparison-table th.col-highlight {
  background: rgba(196, 255, 0, 0.12);
  color: var(--primary);
}

/* Pricing Section */
.pricing-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-surface) 100%);
}

.billing-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.switcher-label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.switcher-label.active {
  color: #FFF;
}

.discount-pill {
  background: var(--primary);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #223027;
  transition: .3s;
  border-radius: 34px;
  border: 1px solid var(--border-bright);
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary);
}

input:checked + .slider:before {
  transform: translateX(26px);
  background-color: var(--text-dark);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: center;
  margin-bottom: 50px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition-normal);
}

.price-card:hover {
  border-color: var(--primary-border);
}

.price-card.popular {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, rgba(196, 255, 0, 0.08) 0%, var(--bg-card) 100%);
  transform: scale(1.04);
  box-shadow: var(--shadow-neon);
}

.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 900;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.price-header h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.price-header p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 20px;
}

.price-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.price-value .currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.price-value .amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: #FFF;
  line-height: 1;
}

.price-value .period {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.price-note {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.features-list {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.9rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list li.disabled {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
}

/* Guarantee Box */
.guarantee-box {
  background: rgba(196, 255, 0, 0.03);
  border: 1px dashed var(--primary-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.guarantee-icon {
  font-size: 2.5rem;
}

.guarantee-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

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

/* Testimonials Section */
.testimonials-section {
  padding: 90px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-rating {
  color: var(--primary);
  font-size: 0.85rem;
  margin-bottom: 14px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-main);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1C2721;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #FFF;
  border: 2px solid transparent;
}

.fla-border { border-color: #E30613; }
.pal-border { border-color: #006437; }
.gre-border { border-color: #0d80bf; }

.author-info .name {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
}

.author-info .team-badge {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
  padding: 90px 0;
  background: var(--bg-surface);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary-border);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

/* CTA Banner */
.cta-banner {
  padding: 70px 0;
}

.cta-box {
  background: linear-gradient(135deg, #142017 0%, #0A120D 100%);
  border: 2px solid var(--primary-border);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow-neon);
}

.cta-content h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.cta-content p {
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: #050806;
  border-top: 1px solid var(--border-color);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.brand-col p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 16px 0;
}

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

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.social-links a:hover {
  background: var(--primary);
  color: var(--text-dark);
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #FFF;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

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

.payment-methods {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.pay-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-main);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 24px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

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

/* Floating Sticky CTA */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: rgba(15, 22, 18, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--primary-border);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 15px rgba(196, 255, 0, 0.2);
  transform: translateY(120px);
  transition: transform 0.4s ease;
}

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

.floating-text {
  display: flex;
  flex-direction: column;
}

.floating-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
}

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

/* Additional / Adjusted CSS for Single Product Page */

.single-offer-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.single-product-card {
  padding: 48px 36px !important;
}

.center-text {
  text-align: center;
}

.price-value .cents {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: #FFF;
  line-height: 1;
}

.offer-list {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.offer-list li {
  font-size: 1.05rem !important;
  margin-bottom: 6px;
}

.secure-checkout-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Championship List (Flat, no boxes) */
.champ-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.champ-item {
  text-align: center;
  padding: 20px 10px;
}

.champ-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(196, 255, 0, 0.3);
}

.champ-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #FFF;
}

.champ-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}

.champ-cta {
  display: flex;
  justify-content: center;
}

/* =================================================================
   RESPONSIVE — TABLET (max 992px)
   ================================================================= */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-metrics {
    justify-content: center;
  }

  .nav-links, .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .price-card.popular {
    transform: none;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
  }

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

  .comparison-table th,
  .comparison-table td {
    padding: 14px 16px;
    font-size: 0.85rem;
  }
}

/* =================================================================
   RESPONSIVE — MOBILE (max 768px)
   ================================================================= */
@media (max-width: 768px) {

  /* --- Typography --- */
  .section-header h2 {
    font-size: 1.6rem;
  }

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

  /* --- Top Bar --- */
  .top-bar {
    font-size: 0.75rem;
    padding: 6px 0;
  }

  .top-bar-content {
    gap: 6px;
  }

  .top-bar-link {
    display: none;
  }

  /* --- Navbar --- */
  .navbar {
    padding: 12px 0;
  }

  .brand-logo {
    font-size: 1.2rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  /* --- Hero Section --- */
  .hero-section {
    padding: 50px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-metrics {
    flex-direction: column;
    gap: 16px;
  }

  .metric-divider {
    display: none;
  }

  .metric-item {
    align-items: center;
  }

  /* --- Player Card --- */
  .player-card {
    border-radius: var(--radius-md);
  }

  .player-header {
    padding: 10px 14px;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }

  .player-status {
    flex-wrap: wrap;
    gap: 6px;
  }

  .player-screen {
    height: 200px;
  }

  .player-controls-overlay {
    flex-direction: column;
    gap: 6px;
  }

  .player-footer {
    padding: 10px 14px;
    font-size: 0.7rem;
  }

  /* --- Ticker --- */
  .ticker-section {
    flex-direction: column;
  }

  .ticker-label {
    width: 100%;
    text-align: center;
    padding: 6px;
    font-size: 0.75rem;
  }

  /* --- Campeonatos --- */
  .matches-section {
    padding: 60px 0;
  }

  .champ-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .champ-icon {
    font-size: 2.5rem;
  }

  .champ-item h3 {
    font-size: 1.3rem;
  }

  .champ-cta .btn {
    width: 100%;
  }

  /* --- Features / Benefits --- */
  .features-section {
    padding: 60px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  /* --- Comparison Table --- */
  .comparison-section {
    padding: 60px 0;
  }

  .comparison-table {
    font-size: 0.8rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
    font-size: 0.78rem;
  }

  /* --- Pricing / Offer --- */
  .pricing-section {
    padding: 60px 0;
  }

  .single-product-card {
    padding: 28px 20px !important;
  }

  .price-value .amount {
    font-size: 2.5rem;
  }

  .price-value .cents {
    font-size: 1.4rem;
  }

  .offer-list li {
    font-size: 0.9rem !important;
  }

  .features-list {
    gap: 12px;
    font-size: 0.85rem;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  /* --- FAQ --- */
  .faq-section {
    padding: 60px 0;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 16px 18px;
  }

  .faq-answer {
    font-size: 0.9rem;
  }

  /* --- CTA Banner --- */
  .cta-banner {
    padding: 40px 0;
  }

  .cta-box {
    padding: 30px 20px;
    border-radius: var(--radius-md);
  }

  .cta-content h2 {
    font-size: 1.3rem;
  }

  .cta-action .btn {
    width: 100%;
  }

  /* --- Footer --- */
  .footer {
    padding: 40px 0 0;
  }

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

  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  /* --- Floating CTA --- */
  .floating-cta {
    left: 12px;
    right: 12px;
    bottom: 16px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    justify-content: space-between;
  }

  .floating-title {
    font-size: 0.72rem;
  }

  .floating-desc {
    font-size: 0.68rem;
  }
}

/* =================================================================
   RESPONSIVE — SMALL MOBILE (max 400px)
   ================================================================= */
@media (max-width: 400px) {
  .container {
    width: 94%;
  }

  .hero-title {
    font-size: 1.65rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .section-header h2 {
    font-size: 1.35rem;
  }

  .player-screen {
    height: 170px;
  }

  .price-value .amount {
    font-size: 2.2rem;
  }

  .champ-icon {
    font-size: 2rem;
  }

  .champ-item h3 {
    font-size: 1.15rem;
  }
}
