:root {
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  --bg: #070811;
  --bg-soft: #101321;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --text: #f6f7fb;
  --muted: #b7bdcc;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #2de2c7;
  --accent-2: #ff3d81;
  --accent-3: #ffd166;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(45, 226, 199, 0.18), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(255, 61, 129, 0.15), transparent 24rem),
    linear-gradient(135deg, #070811 0%, #101321 52%, #070811 100%);
  letter-spacing: 0;
}

body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 17, 0.66);
  backdrop-filter: blur(22px);
}

.navbar {
  width: min(1160px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: #ff0050;
  box-shadow: 0 0 34px rgba(255, 0, 80, 0.36);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.page-transition {
  animation: pageIn 0.5s ease both;
}

.page-transition.page-leave {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

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

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 70px) max(24px, calc((100vw - 1160px) / 2)) 90px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("../images/home-hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 17, 0.86) 0%, rgba(7, 8, 17, 0.58) 46%, rgba(7, 8, 17, 0.18) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  padding-bottom: 34px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.78rem;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .brand, .btn, .eyebrow, .nav-links a {
  font-family: var(--font-display);
}
h1 {
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 9vw, 7.6rem);
  line-height: 0.92;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  margin-bottom: 18px;
}
h3 { font-size: 1.25rem; margin-bottom: 10px; }
p { color: var(--muted); line-height: 1.7; }
.hero-copy { max-width: 640px; font-size: clamp(1.05rem, 2vw, 1.28rem); }

.hero-actions, .site-footer div {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn.primary {
  color: #071019;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
}
.btn.ghost { backdrop-filter: blur(14px); }
.btn.small { min-height: 42px; padding-inline: 16px; font-size: 0.9rem; }
.btn:hover, .preview-card:hover, .video-card:hover, .social-card:hover {
  transform: translateY(-4px);
}

.section, .split-section, .profile-layout, .info-grid, .video-grid, .gallery-grid, .social-grid, .contact-layout {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section { padding: 92px 0; }
.section-tight { padding-top: 68px; }
.section-heading { max-width: 780px; }
.section-heading p { font-size: 1.05rem; }

.preview-grid, .info-grid, .social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.preview-card, .glass-card, .video-card, .social-card, .contact-form, .bio-card, .feature-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--panel), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.preview-card {
  min-height: 230px;
  padding: 24px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.card-icon, .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 10px;
  margin-bottom: 26px;
  border-radius: 999px;
  color: #071019;
  background: var(--accent);
  font-weight: 900;
  font-size: 0.78rem;
}

.split-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  padding: 40px 0 110px;
}

.feature-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(255,255,255,0.12);
}
.feature-panel div {
  padding: 30px 18px;
  background: rgba(7, 8, 17, 0.72);
}
.feature-panel strong { display: block; font-size: 2rem; }
.feature-panel span { color: var(--muted); }

.inner-page { padding-top: var(--header-h); }
.page-hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0 54px;
}
.page-hero.compact { padding-bottom: 34px; }

.profile-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
  align-items: stretch;
  padding-bottom: 30px;
}
.profile-photo img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 50% 20%, rgba(45, 226, 199, 0.16), transparent 22rem),
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  padding: 22px 22px 0;
}
.bio-card { padding: clamp(26px, 5vw, 52px); }

.info-grid { padding: 30px 0 100px; }
.glass-card { padding: 24px; }
.glass-card span { display: block; color: var(--accent); font-weight: 800; margin-bottom: 12px; }
.glass-card strong { display: block; font-size: 1.35rem; margin-bottom: 10px; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding-bottom: 100px;
}
.video-card {
  overflow: hidden;
  transition: transform 0.2s ease;
}
.video-thumb {
  min-height: 260px;
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,8,17,0.75), rgba(7,8,17,0.08));
}
.video-thumb span {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #071019;
  background: rgba(45, 226, 199, 0.92);
  font-weight: 900;
}
.video-body { padding: 24px; }
.text-link { color: var(--accent); font-weight: 800; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  padding-bottom: 100px;
}
.gallery-item {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  cursor: pointer;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1.12); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(18px);
}
.lightbox.open { display: grid; }
.lightbox img {
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  font-size: 1.5rem;
}

.social-grid { padding-bottom: 100px; }
.social-card {
  min-height: 290px;
  padding: 24px;
  transition: transform 0.2s ease;
  position: relative;
  overflow: hidden;
}
.social-card::before {
  content: "";
  position: absolute;
  inset: auto -35% -50% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.social-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  margin-bottom: 28px;
  background: rgba(255,255,255,0.12);
  font-weight: 900;
}
.social-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.social-card strong { display: block; font-size: 2.6rem; margin-bottom: 4px; }
.youtube { background: linear-gradient(145deg, rgba(255,61,88,0.28), rgba(255,255,255,0.06)); }
.tiktok { background: linear-gradient(145deg, rgba(45,226,199,0.24), rgba(255,255,255,0.06)); }
.instagram { background: linear-gradient(145deg, rgba(255,61,129,0.26), rgba(255,209,102,0.12)); }
.twitch { background: linear-gradient(145deg, rgba(137,92,255,0.24), rgba(255,255,255,0.06)); }

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  padding-bottom: 100px;
}
.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--text);
  background: rgba(255,255,255,0.08);
  outline: none;
}
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45, 226, 199, 0.14);
}
.form-message { min-height: 24px; margin: 0; }
.form-message.error { color: #ff8fa9; }
.form-message.success { color: var(--accent); }
.contact-info {
  display: grid;
  gap: 16px;
  align-content: start;
}

.coming-soon {
  width: min(900px, calc(100% - 32px));
  min-height: calc(100vh - var(--header-h) - 120px);
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 70px 0;
}

.coming-card {
  width: 100%;
  padding: clamp(30px, 7vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 15%, rgba(45, 226, 199, 0.22), transparent 18rem),
    radial-gradient(circle at 82% 25%, rgba(255, 61, 129, 0.2), transparent 18rem),
    linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.coming-card h1 {
  margin-top: 18px;
  font-size: clamp(3rem, 8vw, 6.2rem);
}

.coming-card p {
  max-width: 650px;
  font-size: 1.08rem;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 14px;
}

.countdown div {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 16px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.countdown strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
}

.countdown span {
  color: var(--muted);
  font-weight: 800;
}

.countdown-note {
  margin-bottom: 26px;
  color: var(--accent);
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(45, 226, 199, 0.35);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(45, 226, 199, 0.12);
  font-family: var(--font-display);
  font-weight: 800;
}

.site-footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.site-footer p { margin: 0; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--text); }

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 16px;
    right: 16px;
    display: grid;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 8, 17, 0.92);
    backdrop-filter: blur(22px);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-open .nav-links { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .preview-grid, .info-grid, .social-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section, .profile-layout, .contact-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --header-h: 68px; }
  .navbar { width: min(100% - 24px, 1160px); }
  .brand-mark { width: 38px; height: 38px; }
  .hero {
    min-height: 88vh;
    padding: calc(var(--header-h) + 46px) 16px 56px;
  }
  h1 { font-size: clamp(3rem, 17vw, 4.6rem); }
  .hero-actions .btn { width: 100%; }
  .preview-grid, .info-grid, .social-grid, .feature-panel { grid-template-columns: 1fr; }
  .countdown { grid-template-columns: repeat(2, 1fr); }
  .section, .page-hero { padding-block: 60px 34px; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .site-footer { flex-direction: column; }
}
