/* letsgetsome.shoes — YTMND-style stylesheet */

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

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  font-family: "Comic Sans MS", "Chalkboard SE", cursive;
  color: #fff;
  background:
    linear-gradient(135deg,
      #ff006e 0%,
      #ffbe0b 25%,
      #3a86ff 50%,
      #8338ec 75%,
      #06ffa5 100%);
  background-size: 400% 400%;
  animation: gradient-shift 15s ease infinite;
  text-align: center;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* -------------------------------------------------------------------------- */
/* Drifting shoes background                                                  */
/* -------------------------------------------------------------------------- */

.shoes-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.shoes-bg span {
  position: absolute;
  font-size: 4rem;
  opacity: 0.35;
  animation: drift 8s linear infinite;
  will-change: transform;
}

@keyframes drift {
  0%   { transform: translateY(0)     rotate(0deg); }
  50%  { transform: translateY(-30px) rotate(180deg); }
  100% { transform: translateY(0)     rotate(360deg); }
}

/* -------------------------------------------------------------------------- */
/* Marquees                                                                   */
/* -------------------------------------------------------------------------- */

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  background: #000;
  color: #00ff66;
  font-family: "Comic Sans MS", "Chalkboard SE", cursive;
  font-size: clamp(0.95rem, 2.2vw, 1.4rem);
  padding: 0.45rem 0;
  border-top: 4px ridge #ff00ff;
  border-bottom: 4px ridge #ff00ff;
  text-shadow: 0 0 6px #00ff66, 0 0 12px #00ff66;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 18s linear infinite;
}

.marquee.bottom span {
  animation-duration: 22s;
  color: #ffff00;
  text-shadow: 0 0 6px #ffff00, 0 0 12px #ff8800;
}

@keyframes scroll {
  to { transform: translateX(-100%); }
}

/* -------------------------------------------------------------------------- */
/* Main content                                                               */
/* -------------------------------------------------------------------------- */

main {
  position: relative;
  z-index: 1;
  padding: 1.2rem clamp(0.5rem, 3vw, 2rem) 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 1.2rem);
}

/* -------------------------------------------------------------------------- */
/* Big text                                                                   */
/* -------------------------------------------------------------------------- */

.bigtext {
  font-family: Impact, "Haettenschweiler", "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 2px #000;
  transform: skewX(-3deg);
  filter: drop-shadow(0 0 18px rgba(255, 0, 255, 0.55));
}

.top-text {
  color: #fff200;
  text-shadow:
    3px 3px 0 #000,
    6px 6px 0 #ff00ff,
    9px 9px 0 #000;
}

.rainbow {
  background: linear-gradient(
    90deg,
    #ff0000, #ff8800, #ffee00, #00ff00,
    #00ddff, #0066ff, #8800ff, #ff0099, #ff0000);
  background-size: 200% auto;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: hue-cycle 3s linear infinite;
}

@keyframes hue-cycle {
  to { background-position: 200% center; }
}

/* -------------------------------------------------------------------------- */
/* Video                                                                      */
/* -------------------------------------------------------------------------- */

.video-wrap {
  position: relative;
  width: min(720px, 92vw);
  aspect-ratio: 16 / 9;
  background: #000;
  border: 6px ridge #ffff00;
  outline: 4px solid #ff00ff;
  outline-offset: -10px;
  box-shadow:
    0 0 0 4px #000,
    0 0 40px rgba(255, 255, 0, 0.6),
    0 0 80px rgba(255, 0, 255, 0.4);
  margin: 0 auto;
  z-index: 1;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* -------------------------------------------------------------------------- */
/* Extras: hit counter, badges, blink                                         */
/* -------------------------------------------------------------------------- */

.extras {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.4rem;
}

.hit-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  background: #000;
  border: 3px ridge #00ff66;
  font-family: "Courier New", monospace;
  color: #00ff66;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  text-shadow: 0 0 6px #00ff66;
}

.hit-counter .hit-label {
  letter-spacing: 0.1em;
}

.hit-digits {
  display: inline-flex;
  gap: 2px;
}

.hit-digits b {
  display: inline-block;
  min-width: 1ch;
  padding: 1px 4px;
  background: #111;
  border: 1px solid #00ff66;
  font-weight: 700;
  font-family: "Courier New", monospace;
  color: #00ff66;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.badge {
  width: 88px;
  height: 31px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: Verdana, Geneva, sans-serif;
  line-height: 1;
  color: #fff;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  text-shadow: 1px 1px 0 #000;
  font-size: 9px;
  padding: 2px 4px;
}

.badge .badge-small { font-size: 8px; letter-spacing: 0.5px; }
.badge .badge-big   { font-size: 12px; font-weight: 700; letter-spacing: 0.5px; }

.badge-notepad  { background: linear-gradient(180deg, #444 0%, #222 100%); }
.badge-ie6      { background: linear-gradient(180deg, #0066cc 0%, #003366 100%); }
.badge-netscape { background: linear-gradient(180deg, #009933 0%, #003311 100%); }
.badge-1024     { background: linear-gradient(180deg, #cc0066 0%, #660033 100%); }

.ie6-blink {
  margin: 0.2rem 0 0;
  font-family: "Comic Sans MS", "Chalkboard SE", cursive;
  font-size: clamp(0.9rem, 2.2vw, 1.2rem);
  color: #ffff00;
  text-shadow: 2px 2px 0 #000, 0 0 10px #ff0000;
  font-weight: 700;
}

.blink {
  animation: blink 0.85s steps(2, start) infinite;
}

@keyframes blink {
  to { visibility: hidden; }
}

/* -------------------------------------------------------------------------- */
/* Splash overlay (click-to-start gate)                                       */
/* -------------------------------------------------------------------------- */

#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.9) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: opacity 0.35s ease;
}

#splash.fading {
  opacity: 0;
  pointer-events: none;
}

.splash-inner {
  text-align: center;
  padding: 1rem;
  animation: bounce 1.2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-10px) scale(1.03); }
}

.splash-shoes {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: 0.4rem;
  letter-spacing: 0.2em;
}

.splash-title {
  font-family: Impact, "Haettenschweiler", "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.5rem, 10vw, 6rem);
  margin: 0;
  text-transform: uppercase;
  color: #fff200;
  -webkit-text-stroke: 2px #000;
  text-shadow:
    3px 3px 0 #000,
    6px 6px 0 #ff00ff,
    9px 9px 0 #000,
    0 0 24px rgba(255, 255, 0, 0.6);
  line-height: 0.95;
  transform: skewX(-3deg);
}

.splash-sub {
  font-family: "Comic Sans MS", "Chalkboard SE", cursive;
  font-size: clamp(1rem, 3vw, 1.6rem);
  margin-top: 0.8rem;
  color: #00ff66;
  text-shadow: 0 0 10px #00ff66, 2px 2px 0 #000;
  font-weight: 700;
  letter-spacing: 0.15em;
}

/* -------------------------------------------------------------------------- */
/* Mobile                                                                     */
/* -------------------------------------------------------------------------- */

@media (max-width: 600px) {
  main { padding: 0.8rem 0.5rem 1rem; gap: 0.6rem; }
  .video-wrap { border-width: 4px; outline-width: 3px; outline-offset: -7px; }
  .shoes-bg span { font-size: 2.6rem; }
  .marquee { font-size: 0.95rem; padding: 0.35rem 0; }
  .badge { transform: scale(0.9); }
}

/* -------------------------------------------------------------------------- */
/* Accessibility: respect reduced motion                                      */
/* -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee span { padding-left: 0; }
  body { background-position: 0% 50%; }
}
