:root {
  --bg: #0a0a0a;
  --fg: #f2f2f2;
  --muted: #a0a0a0;
  --accent: #ffffff;
  --card: rgba(255, 255, 255, 0.06);
  --card-hover: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.14);
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
}
html, body {
  margin: 0;
  padding: 0;
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
}
body { background: transparent; }

.bg {
  position: fixed;
  inset: -60px;
  z-index: -1;
  background-image: url("IMG_1703.JPG");
  background-size: cover;
  background-position: center;
  filter: blur(32px) brightness(0.6) saturate(1.1);
  will-change: transform;
  transform: translateZ(0);
}
.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}

.page {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 20px 64px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  isolation: isolate;
}

.video { margin-top: -70px; position: relative; z-index: 1; }
@media (max-width: 520px) {
  .video { margin-top: -56px; }
}

.hero {
  text-align: center;
}
.logo {
  width: min(260px, 70%);
  height: auto;
  opacity: 0.6;
  filter: brightness(0) invert(1) drop-shadow(0 6px 24px rgba(0,0,0,0.5));
}

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: 1px solid var(--border);
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.links {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
@media (max-width: 640px) {
  .links { grid-template-columns: repeat(2, 1fr); }
}
.link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 6px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--fg);
  text-decoration: none;
  border-radius: 10px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.link:hover {
  background: var(--card-hover);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-1px);
}
.link .icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  opacity: 0.85;
}
.link:hover .icon { opacity: 1; }

.bio {
  text-align: center;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.2rem;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.15s ease;
}
.social-icon {
  width: 16px;
  height: 16px;
}
.socials a:hover { color: var(--fg); }
.socials a[data-placeholder="true"] {
  display: none;
}

@media (max-width: 520px) {
  .page { padding: 32px 16px 48px; gap: 32px; }
}
