:root {
  --bg: #0a0a0f;
  --bg-elevated: #13131a;
  --bg-card: rgba(20, 20, 30, 0.6);
  --bg-card-hover: rgba(25, 25, 38, 0.8);
  --text: #ffffff;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --accent-primary: #6366f1;
  --accent-secondary: #8b5cf6;
  --accent-tertiary: #ec4899;
  --accent-glow: rgba(99, 102, 241, 0.4);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px var(--accent-glow);
}

html {
  scroll-behavior: smooth;
}

* { 
  box-sizing: border-box; 
  margin: 0;
  padding: 0;
}

body { 
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; 
  background: var(--bg); 
  color: var(--text); 
  line-height: 1.6; 
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap { 
  width: 100%; 
  max-width: 1280px; 
  margin: 0 auto; 
  padding: 0 32px; 
}

/* Animated Background */
.bg-blobs { 
  position: fixed; 
  inset: 0; 
  z-index: -2; 
  pointer-events: none; 
  overflow: hidden;
}

.blob { 
  position: absolute; 
  border-radius: 50%; 
  filter: blur(100px); 
  opacity: 0.2;
  animation: float 20s ease-in-out infinite;
}

.blob-1 { 
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  width: 600px; 
  height: 600px; 
  top: -10%; 
  left: -10%;
  animation-delay: 0s;
}

.blob-2 { 
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
  width: 500px; 
  height: 500px; 
  bottom: -10%; 
  right: -10%;
  animation-delay: -7s;
}

.blob-3 { 
  background: linear-gradient(135deg, var(--accent-tertiary), var(--accent-primary));
  width: 400px; 
  height: 400px; 
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(50px, 50px) rotate(5deg); }
  50% { transform: translate(0, 100px) rotate(10deg); }
  75% { transform: translate(-50px, 50px) rotate(5deg); }
}

.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* Header */
.site-header { 
  position: sticky; 
  top: 0; 
  z-index: 1000; 
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(10, 10, 15, 0.8); 
  border-bottom: 1px solid var(--border); 
  height: 80px; 
  display: flex; 
  align-items: center;
  transition: all 0.3s ease;
}

.header-inner { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  width: 100%; 
}

.logo { 
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.logo-text {
  font-weight: 900; 
  font-size: 1.75rem; 
  background: linear-gradient(135deg, #fff 0%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.logo-pulse {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.nav { 
  display: flex; 
  gap: 40px; 
}

.nav-link { 
  text-decoration: none; 
  color: var(--text-muted); 
  font-weight: 600; 
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  transition: width 0.3s ease;
}

.nav-link:hover { 
  color: #fff; 
}

.nav-link:hover::after {
  width: 100%;
}

/* Buttons */
.btn { 
  padding: 12px 28px; 
  border-radius: var(--radius-md); 
  font-weight: 700; 
  font-size: 0.9rem;
  text-decoration: none; 
  transition: all 0.3s ease; 
  display: inline-flex; 
  align-items: center; 
  gap: 10px;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--live { 
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
  color: #ef4444; 
  border: 1px solid rgba(239, 68, 68, 0.3);
  position: relative;
  overflow: hidden;
}

.btn--live::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn--live:hover::before {
  opacity: 1;
}

.btn--live:hover { 
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
  border-color: rgba(239, 68, 68, 0.5);
}

.live-indicator {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.live-dot { 
  width: 8px; 
  height: 8px; 
  background: currentColor; 
  border-radius: 50%; 
  animation: pulse-live 1.5s infinite;
  position: relative;
  z-index: 2;
}

.live-ring {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  animation: ring-pulse 1.5s infinite;
}

@keyframes pulse-live { 
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; } 
}

@keyframes ring-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Hero Section */
.hero { 
  padding: 120px 0 80px;
  position: relative;
  scroll-margin-top: 100px;
}

.hero-grid { 
  display: grid; 
  grid-template-columns: 1.3fr 1fr; 
  gap: 80px; 
  align-items: start; 
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 50px;
  color: var(--accent-primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge svg {
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-title { 
  font-size: 5rem; 
  font-weight: 900; 
  margin: 0 0 24px; 
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.title-line {
  display: block;
  color: #fff;
}

.title-gradient {
  display: block;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub { 
  font-size: 1.15rem; 
  color: var(--text-muted); 
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  font-size: 2rem;
  filter: grayscale(0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
}

.stat-icon svg {
  opacity: 0.8;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-val { 
  font-size: 1.5rem; 
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.stat-label { 
  font-size: 0.75rem; 
  color: var(--text-dim); 
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.contact-card {
  background: linear-gradient(135deg, var(--bg-card), rgba(99, 102, 241, 0.05));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(10px);
  margin-top: 24px;
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.contact-header svg {
  color: var(--accent-primary);
}

.contact-email {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-email:hover {
  color: var(--accent-primary);
}

/* Stream Card */
.hero-panel {
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.stream-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
}

.stream-card:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
  transform: translateY(-8px);
}

.stream-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border);
}

.stream-title {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.stream-platform {
  display: flex;
  align-items: center;
  color: #9147ff;
}

.stream-platform svg {
  opacity: 0.9;
}

.stream-player {
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
}

/* Partners Section */
.section { 
  padding: 100px 0;
  scroll-margin-top: 100px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title { 
  font-size: 3rem; 
  font-weight: 900; 
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.partner-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); 
  gap: 32px;
}

.partner-card { 
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border); 
  border-radius: var(--radius-xl); 
  transition: all 0.4s ease; 
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.partner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.partner-card:hover::before {
  opacity: 1;
}

.partner-card:hover { 
  transform: translateY(-8px); 
  border-color: var(--accent-primary);
  background: var(--bg-card-hover);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
}

.partner-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.partner-badge--hot {
  background: linear-gradient(135deg, var(--accent-tertiary), var(--warning));
}

.partner-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.partner-name { 
  font-size: 2rem; 
  font-weight: 900; 
  margin: 0 0 16px;
  color: #fff;
}

.partner-desc { 
  color: var(--text-muted); 
  font-size: 1rem; 
  margin-bottom: 24px;
  line-height: 1.7;
  flex: 1;
}

.partner-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.feature-tag {
  padding: 6px 12px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-primary);
}

.promo-code {
  background: rgba(0, 0, 0, 0.3);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.promo-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.promo-value {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.1em;
  font-family: 'Courier New', monospace;
}

.partner-btn {
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  border: none;
}

.partner-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.partner-btn:hover::before {
  opacity: 1;
}

.partner-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.partner-btn span,
.partner-btn svg {
  position: relative;
  z-index: 1;
}

.partner-btn svg {
  transition: transform 0.3s ease;
}

.partner-btn:hover svg {
  transform: translateX(4px);
}

/* Specs Section */
.specs-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); 
  gap: 32px; 
}

.specs-card { 
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.specs-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.specs-card:hover::before {
  transform: scaleX(1);
}

.specs-card:hover {
  border-color: var(--accent-primary);
  background: var(--bg-card-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.specs-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: var(--accent-primary);
}

.specs-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.specs-divider {
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), transparent);
  margin-bottom: 24px;
}

.specs-list { 
  list-style: none; 
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.specs-list li { 
  display: flex; 
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.specs-list li:last-child {
  border-bottom: none;
}

.specs-list li:hover {
  padding-left: 8px;
  border-color: var(--border-strong);
}

.spec-label { 
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.spec-value {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

/* Footer */
.site-footer { 
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  background: rgba(10, 10, 15, 0.5);
  backdrop-filter: blur(10px);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff, var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-copyright {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff;
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-title { font-size: 4rem; }
  .section-title { font-size: 2.5rem; }
}

@media (max-width: 992px) { 
  .hero-grid,
  .specs-grid { 
    grid-template-columns: 1fr; 
    gap: 48px;
  }
  
  .nav { 
    display: none; 
  }
  
  .hero-title { 
    font-size: 3.5rem; 
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .partner-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 12px;
  }
  
  .partner-card,
  .specs-card {
    padding: 28px;
  }
  
  .stat-card {
    flex-direction: row;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .actions {
    display: none;
  }
  
  .partner-grid,
  .specs-grid {
    grid-template-columns: 1fr;
  }
}