* {
  box-sizing: border-box;
}

body {
  background: #0a0a0a;
  color: white;
  font-family: system-ui, -apple-system, sans-serif;
  margin: 0;
  padding: 0;
}

/* Chrome metallic text */
.chrome-text {
  font-family: 'Georgia', serif;
  font-weight: 900;
  font-size: clamp(4.8rem, 14vw, 9rem);
  letter-spacing: -6px;
  line-height: 0.9;
  background: linear-gradient(145deg, #f8f8f8, #c0c0c0, #a0a0a0, #e8e8e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow:
    0 4px 12px rgba(0,0,0,0.9),
    4px 4px 0 #111,
    -4px -4px 0 #111,
    0 0 40px rgba(212,175,55,0.5);
  filter: drop-shadow(0 0 35px rgba(212,175,55,0.7));
}

/* Hero section */
.hero {
  background: linear-gradient(rgba(10,10,10,0.65), rgba(10,10,10,0.92)),
              url('https://raw.githubusercontent.com/varsitypreps/walker-boy-318/refs/heads/main/IMG_7938.jpeg') center/cover no-repeat fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-content {
  width: 100%;
  max-width: 500px;
  text-align: center;
  padding: 2rem 1.5rem;
}

/* Glass card style */
.glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,215,0,0.25);
}

.glass:hover {
  border-color: #facc15;
  transform: translateY(-2px);
}

/* Link grid buttons */
.link-btn {
  display: block;
  background: rgba(38, 38, 38, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.15rem 1rem;
  text-align: center;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.link-btn:hover {
  background: rgba(60, 60, 60, 0.95);
  border-color: rgba(250, 204, 21, 0.45);
  transform: translateY(-2px);
}
