/**
 * Stable URL (/critical-shell.css) loads before hashed Next CSS so the shell stays branded
 * if /_next/static/css/* is blocked, cached wrong, or slow (extensions, in-app browsers, skew).
 * Source of truth for shell fallback styles (layout also inlines this file).
 */
html {
  color-scheme: dark;
}
html,
body {
  margin: 0;
  min-height: 100vh;
  background-color: #050505 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue',
    Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
#main-content {
  padding-top: 5rem;
}
#willai-skip {
  position: fixed;
  left: 1rem;
  top: 0;
  z-index: 100;
  transform: translateY(calc(-100% - 1rem));
  padding: 0.75rem 1rem;
  background: #000;
  color: #ffd700;
  border: 2px solid #ffd700;
  border-radius: 0.5rem;
  font-weight: 800;
  font-size: 0.875rem;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}
#willai-skip:focus {
  transform: translateY(1rem);
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}
nav[data-willai='navbar'] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 2px solid #ffd700;
  background: rgba(0, 0, 0, 0.95);
}
nav[data-willai='navbar'] [data-willai='nav-inner'] {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
nav[data-willai='navbar'] [data-willai='nav-row'] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  gap: 0.75rem;
}
nav[data-willai='navbar'] [data-willai='nav-actions'] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
nav[data-willai='navbar'] [data-willai='nav-actions'] svg,
nav[data-willai='navbar'] [data-willai='nav-brand'] svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: #ffd700;
}
section[data-willai='hero'] {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  background: #000;
}
[data-willai='aspect-video'] {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}
[data-willai='social-grid'] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
[data-willai='social-grid'] a {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 5rem;
  min-height: 5rem;
  padding: 0.5rem;
  border: 2px solid #ffd700;
  border-radius: 1rem;
  background: #ffd700;
  color: #000;
  text-decoration: none;
}
[data-willai='social-grid'] a svg {
  width: 2rem;
  height: 2rem;
  max-width: 100%;
  display: block;
}
img,
video {
  max-width: 100%;
  height: auto;
}
