:root {
  --color-bg: #000;
  --color-surface: #111;
  --color-text: #fff;
  --color-text-muted: rgba(255,255,255,0.5);
  --color-accent: #ff2d55;
  --color-accent-glow: rgba(255, 45, 85, 0.4);
  --font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1400px;
}

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

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

body {
  font-family: var(--font-family);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--color-accent);
  color: #fff;
}

main {
  width: 100%;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 2rem;
  padding-bottom: 2rem;
  background:
    radial-gradient(ellipse at 20% 80%, var(--color-accent-glow) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(120, 0, 255, 0.2) 0%, transparent 50%),
    var(--color-bg);
}

.hero-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(400px, 60vw);
  height: min(400px, 60vw);
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.15;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.hero-content {
  text-align: center;
  z-index: 1;
}

.hero-label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 0.2s forwards;
}

.hero h1 {
  font-size: clamp(4rem, 18vw, 14rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  opacity: 0;
  animation: slideUp 1s ease 0.4s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 1s ease 0.8s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border: 2px solid var(--color-accent);
}

.btn-primary:hover {
  background: transparent;
  box-shadow: 0 0 30px var(--color-accent-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 2px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  border-color: var(--color-text);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}

.hero-scroll span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.5; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== FEATURED VIDEO ========== */
.featured {
  padding: 4rem 0 1rem;
}

.featured-video {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.featured-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  border-radius: 12px;
}

/* ========== SECTION HEADERS ========== */
.section-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 2rem 2rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ========== VIDEO GRID ========== */
.videos {
  padding-bottom: 4rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.video-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: var(--transition);
}

.play-icon svg {
  width: 64px;
  height: 64px;
  color: #fff;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.video-card:hover .play-icon {
  opacity: 1;
}

/* ========== TICKER ========== */
.ticker-section {
  padding: 4rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ticker {
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 4rem;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
  text-stroke: 1px rgba(255,255,255,0.3);
}

.ticker-track span:nth-child(odd) {
  color: var(--color-text);
  -webkit-text-stroke: 0;
  text-stroke: 0;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== NEWS ========== */
.news {
  padding-bottom: 4rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.news-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-surface);
  border-radius: 12px;
  text-decoration: none;
  color: var(--color-text);
  transition: var(--transition);
  border: 1px solid transparent;
}

.news-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.news-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 0.5rem 1rem;
  background: rgba(255, 45, 85, 0.1);
  border-radius: 100px;
  white-space: nowrap;
}

.news-card h3 {
  flex: 1;
  font-size: 1.25rem;
  font-weight: 500;
}

.news-arrow {
  font-size: 1.5rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
}

.news-card:hover .news-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ========== CONNECT ========== */
.connect {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 2rem;
}

.connect h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.social-links {
  display: flex;
  flex-direction: column;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  text-decoration: none;
  color: var(--color-text);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.social-link:first-child {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.social-name {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500;
  transition: var(--transition);
}

.social-arrow {
  font-size: 2rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: var(--transition);
  color: var(--color-accent);
}

.social-link:hover {
  padding-left: 1rem;
}

.social-link:hover .social-name {
  color: var(--color-accent);
}

.social-link:hover .social-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ========== FOOTER ========== */
footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}

footer p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(3rem, 15vw, 6rem);
  }

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

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

  .news-card {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .news-card h3 {
    width: 100%;
    order: -1;
  }
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
