* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #060b14;
  color: #e2e8f0;
  line-height: 1.6;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header {
  background: linear-gradient(135deg, #0a0a1a 0%, #0f172a 100%);
  padding: 20px 0;
  border-bottom: 1px solid #1e293b;
  position: sticky; top: 0; z-index: 100;
}
header .container {
  display: flex; justify-content: space-between; align-items: center;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 40px; width: auto; }
.logo-text { color: #e2e8f0; font-weight: 700; font-size: 18px; white-space: nowrap; }
nav a {
  color: #94a3b8; text-decoration: none; margin-left: 24px; font-size: 14px;
  transition: color 0.3s; font-weight: 500;
}
nav a:hover { color: #3b82f6; }
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; }

/* Hero */
.hero {
  text-align: center; padding: 100px 0 80px;
  background: linear-gradient(135deg, #0a0a1a 0%, #0f172a 50%, #0a0a1a 100%);
}
.hero h1 { font-size: 48px; margin-bottom: 16px; }
.hero h1 span { color: #3b82f6; }
.hero p { color: #94a3b8; font-size: 18px; max-width: 600px; margin: 0 auto 32px; }
.btn {
  display: inline-block; padding: 14px 36px; border-radius: 6px;
  font-weight: 600; text-decoration: none; cursor: pointer;
  transition: all 0.3s;
}
.btn-primary { background: #2563eb; color: #fff; }
.btn-primary:hover { background: #1d4ed8; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(37,99,235,0.4); }
.btn-outline { border: 2px solid #3b82f6; color: #3b82f6; background: transparent; margin-left: 12px; }
.btn-outline:hover { background: #3b82f6; color: #fff; }

/* World Cup 2026 */
.worldcup {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #0a0a1a 0%, #0f172a 50%, #0a0a1a 100%);
  position: relative;
  overflow: hidden;
}
.worldcup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.worldcup::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(37,99,235,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.worldcup-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1a3a8a, #2563eb);
  color: #fff;
  padding: 10px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(59,130,246,0.3);
  box-shadow: 0 0 30px rgba(37,99,235,0.2);
}
.worldcup-dates {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.worldcup-date {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, #60a5fa, #3b82f6, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.worldcup-vs {
  font-size: 28px;
  color: #475569;
  font-weight: 300;
}
.worldcup-subtitle {
  color: #94a3b8;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 40px;
}
.worldcup-subtitle strong {
  color: #60a5fa;
}
.worldcup-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.worldcup-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stat-icon {
  font-size: 32px;
  line-height: 1;
}
.stat-value {
  font-size: 36px;
  font-weight: 800;
  color: #e2e8f0;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-worldcup {
  background: linear-gradient(135deg, #1d4ed8, #2563eb, #3b82f6);
  color: #fff;
  border: none;
  box-shadow: 0 4px 25px rgba(37,99,235,0.4);
  position: relative;
  z-index: 1;
  animation: pulse-glow 2s ease-in-out infinite;
}
.btn-worldcup:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(37,99,235,0.6);
  background: linear-gradient(135deg, #2563eb, #3b82f6, #60a5fa);
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 25px rgba(37,99,235,0.4); }
  50% { box-shadow: 0 4px 40px rgba(37,99,235,0.7); }
}

/* Features */
.features { padding: 80px 0; }
.features h2 { text-align: center; font-size: 32px; margin-bottom: 48px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.feature-card {
  background: #0f172a; padding: 30px; border-radius: 12px; text-align: center;
  border: 1px solid #1e293b; transition: all 0.3s;
}
.feature-card:hover { border-color: #3b82f6; transform: translateY(-4px); box-shadow: 0 8px 30px rgba(37,99,235,0.15); }
.feature-card .icon { font-size: 40px; margin-bottom: 16px; }
.feature-card h3 { margin-bottom: 12px; font-size: 18px; color: #e2e8f0; }
.feature-card p { color: #94a3b8; font-size: 14px; }

/* Channels */
.channels { padding: 80px 0; background: #060b14; }
.channels h2 { text-align: center; font-size: 32px; margin-bottom: 12px; }
.channels > .container > p { text-align: center; color: #94a3b8; margin-bottom: 48px; }
.channel-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 16px;
}
.channel-item {
  background: #0f172a; border-radius: 10px; padding: 16px 8px; text-align: center;
  border: 1px solid #1e293b; font-size: 13px; transition: all 0.3s;
}
.channel-item:hover { border-color: #3b82f6; }
.channel-item .emoji { font-size: 28px; display: block; margin-bottom: 8px; }

/* Plans */
.plans { padding: 80px 0; }
.plans h2 { text-align: center; font-size: 32px; margin-bottom: 12px; }
.plans > .container > p { text-align: center; color: #94a3b8; margin-bottom: 48px; }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.plan-card {
  background: #0f172a; border-radius: 16px; padding: 40px 30px;
  border: 1px solid #1e293b; text-align: center; position: relative;
  transition: all 0.3s;
}
.plan-card:hover { border-color: #3b82f6; transform: translateY(-4px); box-shadow: 0 8px 30px rgba(37,99,235,0.15); }
.plan-card.popular { border-color: #3b82f6; background: linear-gradient(180deg, #0f1d3a 0%, #0f172a 100%); }
.plan-card .badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #2563eb; color: #fff; padding: 4px 16px; border-radius: 20px;
  font-size: 12px; font-weight: 600;
}
.plan-card .price { font-size: 42px; font-weight: 700; margin: 16px 0; }
.plan-card .price span { font-size: 16px; color: #64748b; }
.plan-card ul { list-style: none; margin: 24px 0; }
.plan-card ul li { padding: 8px 0; color: #94a3b8; font-size: 14px; }
.plan-card ul li::before { content: "✓ "; color: #3b82f6; font-weight: 700; }

/* Contact */
.contact {
  padding: 80px 0; text-align: center;
  background: linear-gradient(135deg, #0a0a1a 0%, #0f172a 50%, #0a0a1a 100%);
}
.contact h2 { font-size: 32px; margin-bottom: 16px; }
.contact p { color: #94a3b8; margin-bottom: 32px; }
.contact-methods { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.contact-methods a {
  display: flex; align-items: center; gap: 8px;
  color: #94a3b8; text-decoration: none; padding: 12px 24px;
  border: 1px solid #1e293b; border-radius: 8px; transition: all 0.3s;
  background: #0f172a;
}
.contact-methods a:hover { border-color: #3b82f6; color: #fff; background: #1a2744; }

/* Download */
.download { padding: 80px 0; text-align: center; background: #060b14; }
.download h2 { font-size: 32px; margin-bottom: 12px; }
.download > .container > p { color: #94a3b8; margin-bottom: 40px; }
.download-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.download-buttons .btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 8px; font-weight: 600;
  text-decoration: none; transition: all 0.3s; font-size: 16px;
}
.btn-playstore { background: #1e293b; color: #fff; border: 1px solid #334155; }
.btn-playstore:hover { background: #334155; border-color: #3b82f6; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(37,99,235,0.3); }
.btn-direct { background: #2563eb; color: #fff; }
.btn-direct:hover { background: #1d4ed8; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(37,99,235,0.4); }

/* Footer */
footer { text-align: center; padding: 24px 0; color: #64748b; font-size: 13px; border-top: 1px solid #1e293b; }

/* Responsive */
@media (max-width: 768px) {
  .worldcup { padding: 50px 0; }
  .worldcup-date { font-size: 28px; }
  .worldcup-vs { font-size: 20px; }
  .worldcup-stats { gap: 24px; }
  .worldcup-stat { min-width: 80px; }
  .stat-value { font-size: 28px; }
  .stat-icon { font-size: 26px; }
  .worldcup-subtitle { font-size: 16px; }
  .hero h1 { font-size: 32px; }
  .hero { padding: 60px 0 50px; }
  .hero p { font-size: 16px; }
  .menu-toggle { display: block; }
  nav { display: none; position: absolute; top: 70px; left: 0; right: 0;
    background: #0f172a; padding: 20px; border-bottom: 1px solid #1e293b;
    flex-direction: column; gap: 16px; }
  nav.open { display: flex; }
  nav a { margin: 0; padding: 8px 0; font-size: 16px; }
  header .container { flex-wrap: wrap; position: relative; }
  .btn-outline { margin-left: 0; margin-top: 12px; }
  .features { padding: 50px 0; }
  .channels { padding: 50px 0; }
  .plans { padding: 50px 0; }
  .contact { padding: 50px 0; }
  .download { padding: 50px 0; }
  .features h2, .channels h2, .plans h2, .contact h2, .download h2 { font-size: 28px; }
  .plan-card .price { font-size: 34px; }
  .plans-grid { grid-template-columns: 1fr; }
  .channel-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 10px; }
  .channel-item { padding: 12px 6px; font-size: 12px; }
  .channel-item .emoji { font-size: 22px; }
  .download-buttons { flex-direction: column; align-items: center; }
  .download-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-methods { flex-direction: column; align-items: center; }
  .contact-methods a { width: 100%; max-width: 250px; justify-content: center; }
}