/* PuchTV - Mockup Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
  --bg-dark: #050013;
  --bg-card: #100922;
  --accent: #9146ff;
  --accent-hover: #b38cff;
  --twitch: #9146ff;
  --twitch-hover: #b38cff;
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 2rem;
  background: rgba(13, 13, 18, 0.9);
  backdrop-filter: blur(10px);
  z-index: 100;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Main content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 165vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding-top: calc(7rem + 80px);
  padding-bottom: 4rem;
  overflow: hidden;
  isolation: isolate;
  margin-top: -80px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-bg-video {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100vw;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  filter: saturate(1.1) contrast(1.05);
  opacity: 0.9;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 70% at 50% 30%, rgba(145, 70, 255, 0.55) 0%, rgba(5, 0, 19, 0.9) 55%, rgba(5, 0, 19, 1) 100%),
    linear-gradient(180deg, rgba(5, 0, 19, 0.75) 0%, rgba(5, 0, 19, 0.95) 70%, rgba(5, 0, 19, 1) 100%);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.live-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s;
}

.cta-button:hover {
  background: var(--accent-hover);
}

.cta-twitch {
  background: var(--twitch);
}

.cta-twitch:hover {
  background: var(--twitch-hover);
}

.cta-secondary {
  background: transparent;
  border: 1px solid rgba(244, 244, 245, 0.6);
  color: var(--text);
}

.cta-secondary:hover {
  background: rgba(145, 70, 255, 0.18);
  border-color: var(--accent-hover);
}

/* Sections */
section {
  padding: 5rem 0;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.about p,
.contact p,
.section-intro {
  max-width: 600px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.section-intro {
  margin-bottom: 2rem;
}

/* Content cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(145, 70, 255, 0.45);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
}

.card-placeholder,
.card-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.2), rgba(230, 57, 70, 0.05));
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.card-link {
  text-decoration: none;
  color: inherit;
}

.card-link:hover {
  border-color: var(--twitch);
}

.twitch-icon {
  background: linear-gradient(135deg, rgba(145, 70, 255, 0.3), rgba(145, 70, 255, 0.1));
}

.csgo-icon {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.2), rgba(230, 57, 70, 0.05));
}

.community-icon {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.2), rgba(88, 101, 242, 0.05));
}

.esplay-icon {
  background: linear-gradient(135deg, rgba(0, 200, 150, 0.35), rgba(0, 200, 150, 0.1));
}

.csstrats-icon {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.35), rgba(255, 215, 0, 0.08));
}

.esplay-icon {
  background: linear-gradient(135deg, rgba(0, 200, 150, 0.35), rgba(0, 200, 150, 0.1));
}

.csstrats-icon {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.35), rgba(255, 215, 0, 0.08));
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.partner .card {
  border-color: rgba(145, 70, 255, 0.7);
}

.partner .cards {
  margin-top: 2.5rem;
}

.partner-highlight {
  border-color: rgba(145, 70, 255, 0.9);
  box-shadow: 0 0 40px rgba(145, 70, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.partner-highlight::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.14), transparent 55%);
  opacity: 0;
  transform: translateY(20%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.partner-highlight:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.partner-promo {
  margin-top: 0.75rem;
  color: var(--text);
}

.partner-promo code {
  font-family: inherit;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
}

.partner-steps {
  margin: 0.75rem 0 0.5rem;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.partner-steps li {
  margin-bottom: 0.25rem;
}

.partner-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.85;
}

/* Contact */
.contact {
  text-align: center;
}

.contact p {
  margin: 0 auto 1.5rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0 1rem;
}

.social-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: transform 0.2s, opacity 0.2s;
}

.social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.social-btn.twitch {
  background: var(--twitch);
}

.social-btn.x {
  background: #000;
}

.social-btn.youtube {
  background: #ff0000;
}

.social-btn.discord {
  background: #5865f2;
}

.social-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }

  .hero-actions {
    margin-top: 1.5rem;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-video {
    display: none;
  }
}
