:root {
  --orange: #f39200;
  --gold: #ffd36a;
  --bg: #0a0c10;
  --card: #141820;
  --text: #f5f2ea;
  --muted: #a8a093;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Cabin", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(243, 146, 0, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(180, 40, 20, 0.12), transparent 50%),
    var(--bg);
  overflow-x: hidden;
}

#confettiCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.act-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  position: relative;
  z-index: 1;
}

/* Hollywood marquee frame */
.act-marquee {
  position: relative;
  width: min(920px, 100%);
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(145deg, #1a1208 0%, #0e0e12 55%, #16100a 100%);
  box-shadow:
    0 0 0 1px rgba(255, 211, 106, 0.25),
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(243, 146, 0, 0.12);
  animation: actSpotlight 4.5s ease-in-out infinite;
}

@keyframes actSpotlight {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255, 211, 106, 0.25), 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 70px rgba(243, 146, 0, 0.1); }
  50% { box-shadow: 0 0 0 1px rgba(255, 211, 106, 0.45), 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 110px rgba(243, 146, 0, 0.22); }
}

.act-bulbs {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  z-index: 2;
}

.act-bulb {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff8e0, var(--gold) 45%, #c47a00 100%);
  box-shadow: 0 0 6px 2px rgba(255, 200, 80, 0.55);
  animation: actBlink 0.9s ease-in-out infinite;
}

.act-bulb:nth-child(odd) { animation-delay: 0.45s; }
.act-bulb:nth-child(3n) { animation-delay: 0.2s; }
.act-bulb:nth-child(4n) { animation-delay: 0.65s; }

@keyframes actBlink {
  0%, 100% { opacity: 1; filter: brightness(1.15); }
  50% { opacity: 0.35; filter: brightness(0.7); }
}

.act-inner {
  position: relative;
  z-index: 1;
  padding: clamp(1.1rem, 3vw, 1.75rem);
  border-radius: 12px;
  background: linear-gradient(180deg, #171b22 0%, #10141b 100%);
  border: 1px solid rgba(255, 211, 106, 0.12);
}

.act-logo {
  display: block;
  width: min(110px, 32vw);
  margin: 0 auto 0.65rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.act-kicker {
  margin: 0 0 0.25rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.act-title {
  margin: 0 0 0.35rem;
  text-align: center;
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--orange);
  text-shadow: 0 0 24px rgba(243, 146, 0, 0.25);
}

.act-sub {
  margin: 0 0 1.25rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.act-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

@media (max-width: 700px) {
  .act-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }
}

.act-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--card);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.act-card-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255, 211, 106, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.act-card:hover,
.act-card:focus-visible {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(243, 146, 0, 0.75);
  box-shadow: 0 12px 28px rgba(243, 146, 0, 0.2);
  outline: none;
}

.act-card:hover .act-card-glow,
.act-card:focus-visible .act-card-glow {
  opacity: 1;
}

.act-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.act-card-label {
  position: relative;
  font-weight: 700;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.25;
}

.act-footer {
  margin: 1.15rem 0 0;
  text-align: center;
  font-size: 0.9rem;
}

.act-footer a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}

.act-footer a:hover {
  text-decoration: underline;
}
