@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --color-bg: #07080B;
  --color-bg-alt: #0D0F16;
  --color-surface: rgba(18, 20, 30, 0.75);
  --color-surface-hover: rgba(26, 30, 44, 0.9);
  --color-surface-card: #11131C;
  --color-surface-border: rgba(229, 184, 105, 0.2);
  --color-surface-border-hover: rgba(229, 184, 105, 0.5);
  
  --gold-100: #FFF3D6;
  --gold-200: #FCEABB;
  --gold-300: #F4D388;
  --gold-400: #E5B869;
  --gold-500: #D4AF37;
  --gold-600: #B8860B;
  --gold-700: #8C6207;
  
  --gold-gradient: linear-gradient(135deg, #FFF0CA 0%, #E5B869 40%, #C8963E 75%, #9E6C18 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(229, 184, 105, 0.15) 0%, rgba(184, 134, 11, 0.05) 100%);
  --dark-gradient: linear-gradient(180deg, #07080B 0%, #0D0F17 100%);
  --card-gradient: linear-gradient(180deg, rgba(24, 28, 42, 0.8) 0%, rgba(13, 15, 24, 0.95) 100%);
  --glow-gold: 0 0 35px rgba(229, 184, 105, 0.25);
  --glow-gold-strong: 0 0 55px rgba(229, 184, 105, 0.45);
  
  --text-primary: #FFFFFF;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  --text-gold: #E5B869;
  
  --accent-green: #10B981;
  --accent-red: #EF4444;
  --accent-blue: #3B82F6;
  
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.65);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.25);
  
  --container-max: 1240px;
  --header-height: 76px;
  --transition-fast: 0.18s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 184, 105, 0.09) 0%, rgba(7, 8, 11, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw + 1rem, 3.6rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.6rem);
}

h3 {
  font-size: clamp(1.25rem, 1.8vw + 0.4rem, 1.65rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 0.35vw + 0.88rem, 1.08rem);
}

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 1;
}

.section {
  padding-top: clamp(50px, 7vw, 95px);
  padding-bottom: clamp(50px, 7vw, 95px);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(229, 184, 105, 0.08);
  border: 1px solid rgba(229, 184, 105, 0.28);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-300);
  margin-bottom: 14px;
}

.section-tag-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-green);
  animation: pulseGreen 2s infinite;
}

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

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.top-bar {
  background: linear-gradient(90deg, #090B10 0%, #161510 50%, #090B10 100%);
  border-bottom: 1px solid rgba(229, 184, 105, 0.15);
  font-size: 0.825rem;
  padding: 8px 0;
  text-align: center;
  color: var(--text-secondary);
  position: relative;
  z-index: 50;
}

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

.top-bar-highlight {
  color: var(--gold-300);
  font-weight: 700;
}

.top-bar-badge {
  background: var(--gold-gradient);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(7, 8, 11, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 100;
  transition: background var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(7, 8, 11, 0.96);
  border-bottom-color: rgba(229, 184, 105, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 42px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-300);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(229, 184, 105, 0.25);
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  line-height: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-normal), background var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #07080B;
  box-shadow: 0 4px 18px rgba(229, 184, 105, 0.35);
  font-weight: 800;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(229, 184, 105, 0.55);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid rgba(229, 184, 105, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(229, 184, 105, 0.12);
  border-color: var(--gold-400);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFF;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.84rem;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.hero-section {
  position: relative;
  padding-top: clamp(36px, 5vw, 65px);
  padding-bottom: clamp(50px, 6vw, 85px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(18, 20, 30, 0.85);
  border: 1px solid rgba(229, 184, 105, 0.22);
  padding: 6px 13px;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-title {
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-trust-bullets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
}

.trust-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bullet-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bullet-text {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.35;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--card-gradient);
  border: 1px solid var(--color-surface-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg), var(--glow-gold);
  position: relative;
  backdrop-filter: blur(20px);
}

.hero-stream-preview {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9.5;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stream-overlay-info {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 12, 18, 0.9);
  backdrop-filter: blur(14px);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(229, 184, 105, 0.22);
}

.channel-now-playing {
  display: flex;
  align-items: center;
  gap: 10px;
}

.channel-tag {
  background: var(--gold-gradient);
  color: #000;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 3px 6px;
  border-radius: 4px;
}

.channel-name {
  font-weight: 700;
  font-size: 0.86rem;
  color: #FFF;
}

.channel-quality {
  font-size: 0.78rem;
  color: var(--accent-green);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--gold-300);
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-footer {
  background: #040507;
  border-top: 1px solid rgba(229, 184, 105, 0.15);
  padding-top: 60px;
  padding-bottom: 30px;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 50px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  height: 38px;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-payments {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pay-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.footer-col-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 6px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--gold-400);
}

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

.footer-link {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold-300);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.825rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: #64748B;
  margin-top: 14px;
  line-height: 1.55;
}

.breadcrumbs {
  padding: 16px 0;
  font-size: 0.825rem;
  color: var(--text-muted);
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumbs-separator {
  color: rgba(229, 184, 105, 0.4);
}

.breadcrumbs-current {
  color: var(--gold-300);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-badge-group, .hero-cta-group {
    justify-content: center;
  }
  .hero-trust-bullets {
    max-width: 540px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 66px;
  }
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .header-actions .btn {
    display: none;
  }
  .hero-trust-bullets {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: left;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .hero-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .hero-stat-card {
    padding: 10px 4px;
  }
  .hero-stat-number {
    font-size: 1.15rem;
  }
  .hero-stat-label {
    font-size: 0.65rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
