body {
  font-family: 'Oswald', sans-serif;
  background: #000;
  color: #fff;
  letter-spacing: 0.03em;
}

/* HERO */
.kenburns {
  animation: kenburns 18s ease-in-out infinite alternate;
  filter: brightness(0.75) contrast(1.1);
}

@keyframes kenburns {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

/* TEXT */
h1, h2, h3, h4 {
  letter-spacing: 0.08em;
}

/* CARDS */
.card {
  transition: all 0.35s ease;
}
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* GOLD */
.gold {
  color: #d4af37;
}

/* BUTTONS */
button {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
button:hover {
  background: #d4af37;
  color: black;
  transform: translateY(-1px);
}
button:active {
  transform: scale(0.95) translateY(1px);
}

/* GLOW */
.glow:hover {
  box-shadow: 0 0 25px rgba(255,255,255,0.4);
}

.social-glow:hover {
  box-shadow: 0 0 20px rgba(45,212,191,0.6), 0 0 40px rgba(45,212,191,0.3);
}

/* FORM */
input, textarea {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  background: #111;
  border: 1px solid #333;
  color: white;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #d4af37;
}

/* FADE */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
  transition: all 0.6s ease;
}

/* JOKE */
#joke-text div {
  white-space: pre-wrap;
}
.joke-fade {
  opacity: 0;
}
/* PAGE TRANSITIONS */
.page {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.page.hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}