:root {
  --bg: #070a0f;
  --bg-elevated: #101520;
  --bg-soft: #141a26;
  --accent: #c43b2f;
  --accent-soft: rgba(196, 59, 47, 0.18);
  --accent-strong: #ff6b4a;
  --text: #f7f7f7;
  --muted: #a2a8b9;
  --outline: rgba(255, 255, 255, 0.06);
  --card-radius: 18px;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.6);
}

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  position: relative;
}

.page-gradient {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(196, 59, 47, 0.28), transparent 60%),
    radial-gradient(circle at bottom right, rgba(255, 215, 160, 0.16), transparent 55%);
  opacity: 0.9;
  z-index: -1;
}

main {
  width: min(1120px, 100% - 48px);
  margin: 0 auto 96px;
  padding: 0;
}

@media (max-width: 768px) {
  main {
    width: min(100% - 32px, 768px);
    margin-bottom: 64px;
  }
}

@media (max-width: 480px) {
  main {
    width: min(100% - 24px, 480px);
    margin-bottom: 48px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom,
      rgba(7, 10, 15, 0.96),
      rgba(7, 10, 15, 0.9),
      transparent);
}

@media (max-width: 768px) {
  .site-header {
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 10px 16px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .brand {
    gap: 10px;
  }
}

.pfp-frame {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(from 160deg,
      var(--accent),
      var(--accent-strong),
      #fdd29a,
      var(--accent));
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .pfp-frame {
    width: 40px;
    height: 40px;
  }
}

.pfp-frame img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 0.9rem;
  }
}

.brand-tagline {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

@media (max-width: 480px) {
  .brand-tagline {
    font-size: 0.7rem;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .nav {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .nav {
    gap: 12px;
  }
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.84rem;
  padding: 6px 0;
  position: relative;
  min-height: 32px;
  display: flex;
  align-items: center;
}

@media (max-width: 480px) {
  .nav a {
    font-size: 0.78rem;
    padding: 4px 0;
    min-height: 28px;
  }
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: width 0.22s ease-out;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 40px;
  padding: 40px 16px 32px;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero {
    gap: 32px;
    padding: 36px 16px 28px;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 32px 16px 24px;
  }
}

@media (max-width: 480px) {
  .hero {
    gap: 24px;
    padding: 24px 12px 20px;
  }
}

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

@media (max-width: 900px) {
  .hero-content {
    max-width: 100%;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 0 0 16px;
}

@media (max-width: 480px) {
  .hero-title {
    margin-bottom: 12px;
  }
}

.hero-title span {
  background: linear-gradient(90deg, var(--accent-strong), #fcd59a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.5vw, 0.98rem);
  line-height: 1.5;
}

@media (max-width: 480px) {
  .hero-subtitle {
    margin-bottom: 16px;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

@media (max-width: 480px) {
  .hero-cta {
    gap: 10px;
    margin-bottom: 18px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out,
    background-color 0.16s ease-out, color 0.16s ease-out, border-color 0.16s ease-out;
  min-height: 40px;
  touch-action: manipulation;
}

@media (max-width: 480px) {
  .btn {
    padding: 9px 16px;
    font-size: 0.82rem;
    min-height: 38px;
  }
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--outline);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.8);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.04);
}

.hero-metadata {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(7, 10, 15, 0.85);
  border: 1px solid var(--outline);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .hero-metadata {
    gap: 12px;
    padding: 10px 10px;
  }
}

@media (max-width: 640px) {
  .hero-metadata {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 20px;
    gap: 10px;
    padding: 12px 14px;
  }
}

@media (max-width: 480px) {
  .hero-metadata {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 12px;
  }
}

.hero-metadata .label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.hero-metadata .value {
  display: block;
  font-size: 0.96rem;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 320px;
  background: radial-gradient(circle at top left, #242938, #121623 60%);
  border-radius: 24px;
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .hero-card {
    max-width: 100%;
    padding: 16px 16px 18px;
    border-radius: 20px;
  }
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.04), transparent 65%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-card-pfp {
  position: relative;
  width: 110px;
  height: 110px;
  margin-bottom: 10px;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(244, 210, 155, 0.8);
}

.hero-card-pfp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-caption {
  position: relative;
  margin: 0 0 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-cta-bar {
  position: relative;
  width: 100%;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 4px;
}

.hero-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  opacity: 0.8;
  filter: blur(1.5px);
  transform-origin: center;
  animation: wavePulse 4s ease-in-out infinite;
}

.hero-discord {
  position: relative;
  z-index: 1;
  width: 100%;
  justify-content: center;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  font-size: 0.86rem;
}

.hero-discord:hover {
  background: rgba(0, 0, 0, 0.14);
}

.section {
  margin-top: 40px;
  padding: 32px 16px 0;
}

@media (max-width: 768px) {
  .section {
    margin-top: 32px;
    padding: 24px 12px 0;
  }
}

@media (max-width: 480px) {
  .section {
    margin-top: 28px;
    padding: 20px 10px 0;
  }
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  max-width: 640px;
}

@media (max-width: 480px) {
  .section-header {
    gap: 8px;
    margin-bottom: 16px;
  }
}

.section-header h3 {
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  margin: 0;
  line-height: 1.2;
}

@media (max-width: 480px) {
  .section-header h3 {
    font-size: 1.15rem;
  }
}

.section-header p {
  margin: 0;
  font-size: clamp(0.85rem, 1.5vw, 0.96rem);
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 480px) {
  .section-header p {
    font-size: 0.88rem;
  }
}

.creator-slider-wrapper {
  border-radius: var(--card-radius);
  border: 1px solid var(--outline);
  background: linear-gradient(135deg, rgba(20, 26, 38, 0.95), rgba(7, 10, 15, 0.96));
  padding: 14px 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 480px) {
  .creator-slider-wrapper {
    border-radius: 16px;
    padding: 12px 0;
  }
}

.creator-slider {
  position: relative;
  width: 100%;
  padding-inline: 16px;
}

.creator-track {
  display: flex;
  gap: 14px;
  animation: creatorsLoop 28s linear infinite;
  width: max-content;
}

@media (max-width: 768px) {
  .creator-slider {
    padding-inline: 14px;
  }

  .creator-track {
    gap: 12px;
    animation-duration: 24s;
  }
}

@media (max-width: 480px) {
  .creator-slider {
    padding-inline: 12px;
  }

  .creator-track {
    gap: 10px;
    animation-duration: 20s;
  }
}

.creator-card {
  min-width: 230px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background-color: rgba(7, 10, 15, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .creator-card {
    min-width: 200px;
    padding: 9px 11px;
  }
}

@media (max-width: 640px) {
  .creator-card {
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .creator-card {
    min-width: 160px;
    gap: 8px;
    padding: 8px 10px;
  }
}

.creator-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #f4d29a, var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  color: rgba(0, 0, 0, 0.9);
}

/* When image is present - image covers the avatar */
.creator-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* Hide text when image exists (modern browsers) */
.creator-avatar:has(img) {
  background: transparent;
}

.creator-avatar:has(img) > *:not(img) {
  display: none;
}

/* For browsers that don't support :has(), text will show behind image (acceptable fallback) */

@media (max-width: 480px) {
  .creator-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
  }
}

.creator-info h4 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.3;
}

@media (max-width: 480px) {
  .creator-info h4 {
    font-size: 0.82rem;
  }
}

.creator-info p {
  margin: 2px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.3;
}

@media (max-width: 480px) {
  .creator-info p {
    font-size: 0.7rem;
    margin-top: 1px;
  }
}

.video-slider-wrapper {
  border-radius: var(--card-radius);
  border: 1px solid var(--outline);
  background: linear-gradient(135deg, rgba(20, 26, 38, 0.96), rgba(7, 10, 15, 0.98));
  padding: 14px 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 480px) {
  .video-slider-wrapper {
    border-radius: 16px;
    padding: 12px 0;
  }
}

.video-slider {
  position: relative;
  width: 100%;
  padding-inline: 16px;
}

.video-track {
  display: flex;
  gap: 16px;
  width: max-content;
  /* Seamless loop is driven by script.js to avoid glitch; fallback: */
  animation: videosLoop 8s linear infinite;
}

.video-track.js-marquee {
  animation: none;
}

@media (max-width: 768px) {
  .video-slider {
    padding-inline: 14px;
  }

  .video-track {
    gap: 14px;
    animation-duration: 6s;
  }
}

@media (max-width: 480px) {
  .video-slider {
    padding-inline: 12px;
  }

  .video-track {
    gap: 12px;
    animation-duration: 5s;
  }
}

.video-slider-wrapper:hover .video-track {
  animation-play-state: paused;
}

.video-card {
  border-radius: var(--card-radius);
  background: radial-gradient(circle at top left, #222639, #101520 55%);
  border: 1px solid var(--outline);
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-soft);
  transform-origin: center;
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  transition: transform 0.35s ease-out, opacity 0.35s ease-out,
    box-shadow 0.2s ease-out, border-color 0.2s ease-out;
  width: 320px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .video-card {
    width: 280px;
    padding: 9px 9px 11px;
  }
}

@media (max-width: 640px) {
  .video-card {
    width: 260px;
  }
}

@media (max-width: 480px) {
  .video-card {
    width: 240px;
    padding: 8px 8px 10px;
    gap: 6px;
    border-radius: 16px;
  }
}

.video-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.video-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.85);
  border-color: var(--accent-soft);
}

@media (hover: none) and (pointer: coarse) {
  .video-card:active {
    transform: translateY(-2px) scale(1.005);
  }
}

.video-frame {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background-color: #000;
}

.video-frame::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 480px) {
  .video-frame iframe {
    pointer-events: auto;
  }
}

.video-meta h4 {
  margin: 0 0 4px;
  font-size: 0.98rem;
  line-height: 1.3;
}

@media (max-width: 480px) {
  .video-meta h4 {
    font-size: 0.9rem;
    margin-bottom: 3px;
  }
}

.video-meta p {
  margin: 0 0 6px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

@media (max-width: 480px) {
  .video-meta p {
    font-size: 0.78rem;
    margin-bottom: 5px;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .contact-grid {
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
}

.contact-card {
  border-radius: var(--card-radius);
  background: var(--bg-soft);
  border: 1px solid var(--outline);
  padding: 16px 16px 14px;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 480px) {
  .contact-card {
    padding: 14px 14px 12px;
    border-radius: 16px;
  }
}

.contact-card h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.contact-card p {
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.86rem;
}

.contact-list .label {
  width: 82px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-list a {
  color: var(--text);
  text-decoration: none;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  touch-action: manipulation;
}

.contact-list a:hover {
  color: var(--accent-strong);
}

.contact-card.contact-note ul {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
}

.contact-card.contact-note li {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.site-footer {
  padding: 20px 16px 26px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

@media (max-width: 480px) {
  .site-footer {
    padding: 16px 12px 20px;
    font-size: 0.72rem;
  }
}

@keyframes creatorsLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes wavePulse {

  0%,
  100% {
    transform: scaleX(1);
    opacity: 0.75;
  }

  50% {
    transform: scaleX(1.24);
    opacity: 1;
  }
}

@keyframes videosLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Tablet and below (900px) */
@media (max-width: 900px) {
  .hero-visual {
    order: -1;
  }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
  .hero-card-pfp {
    width: 90px;
    height: 90px;
    margin-bottom: 8px;
  }

  .hero-card-caption {
    font-size: 0.82rem;
    margin-bottom: 12px;
  }

  .hero-wave {
    height: 36px;
  }
}