.elementor-3839 .elementor-element.elementor-element-b0f7a1a{--display:flex;}/* Start custom CSS for html, class: .elementor-element-cfe4d82 *//* Intro “cassette” at top of page */
.intro-cassette {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem 1.5rem 1.5rem;
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.7), inset 0 2px 6px rgba(255,255,255,0.05);
  transform: rotateX(3deg);
  transform-style: preserve-3d;
  perspective: 800px;
}

.intro-cassette::before, .intro-cassette::after {
  content: "";
  position: absolute;
  left: 0; width: 100%; height: 8px;
  background: linear-gradient(to bottom, #444, #222);
  transform: translateZ(2px);
}
.intro-cassette::before { top: 0; border-top-left-radius:12px; border-top-right-radius:12px; }
.intro-cassette::after  { bottom: 0; background: linear-gradient(to top, #444, #222);
                          border-bottom-left-radius:12px; border-bottom-right-radius:12px; }

/* Heading */
.intro-header {
  font-family: sans-serif;
  font-size: 1.25rem;
  color: #c8b47f;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  transform: translateZ(10px);
}

/* Paragraph */
.intro-text {
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #eee;
  text-align: center;
  transform: translateZ(8px);
}

/* Rainbow accent bar */
.intro-label {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 12px;
  background: linear-gradient(
    90deg,
    red, orange, yellow, green, blue, purple, red
  );
  background-size: 200% 100%;
  animation: rainbow 4s linear infinite;
  transform: translateZ(8px);
}

/* Reuse rainbow keyframe */
@keyframes rainbow {
  0%   { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fa41877 *//* ─── GRID LAYOUT ─────────────────────────────────────────────────────────── */
.cassette-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem;
  background: #0d1317;
  perspective: 800px; /* allow children to tilt in 3D */
}

/* ─── CLICKABLE CASSETTE CARD ─────────────────────────────────────────────── */
.cassette {
  display: block;
  position: relative;
  width: 350px;
  height: 400px;
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow:
    0 12px 24px rgba(0,0,0,0.7),
    inset 0 2px 6px rgba(255,255,255,0.05); /* subtle inner highlight */
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transform-style: preserve-3d;
  transform: rotateX(4deg);      /* slight forward tilt */
  transition: transform 0.1s ease, box-shadow 0.2s ease;
}

/* top “metal plate” */
.cassette::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 8px;
  background: linear-gradient(to bottom, #444, #222);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  transform: translateZ(2px);
}

/* bottom “metal plate” */
.cassette::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 8px;
  background: linear-gradient(to top, #444, #222);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  transform: translateZ(2px);
}

/* “press” effect */
.cassette:active {
  transform: rotateX(2deg) translateY(4px);
  box-shadow:
    0 4px 12px rgba(0,0,0,0.7),
    inset 0 1px 3px rgba(255,255,255,0.03);
}

/* ─── TITLE ───────────────────────────────────────────────────────────────── */
.cassette__title {
  margin: 1rem 0 0;
  text-align: center;
  font-family: sans-serif;
  font-size: 1rem;
  color: #c8b47f;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateZ(10px); /* lift above the plate */
}

/* ─── SPINNING REELS ───────────────────────────────────────────────────────── */
.reel {
  position: absolute;
  top: 60px;
  width: 40px; height: 40px;
  background: radial-gradient(circle at 30% 30%, #555, #222);
  border: 3px solid #111;
  border-radius: 50%;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.7);
  animation: spin 8s linear infinite;
  transform: translateZ(8px);
}
.reel--left  { left: 40px; }
.reel--right { right: 40px; }

/* ─── IMAGE WINDOW ────────────────────────────────────────────────────────── */
.tape-window {
  position: absolute;
  top: 80px; left: 20px; right: 20px; bottom: 60px;
  background: #111;
  border: 2px dashed #444;
  box-shadow: inset 0 4px 6px rgba(0,0,0,0.8);
  overflow: hidden;
  transform: translateZ(6px);
}
.tape-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── RAINBOW LABEL STRIP ──────────────────────────────────────────────────── */
.label-bar {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 12px;
  background: linear-gradient(
    90deg,
    red, orange, yellow, green, blue, purple, red
  );
  background-size: 200% 100%;
  animation: rainbow 4s linear infinite;
  transform: translateZ(8px);
}

/* ─── KEYFRAMES ───────────────────────────────────────────────────────────── */
@keyframes spin {
  to { transform: translateZ(8px) rotate(360deg); }
}
@keyframes rainbow {
  0%   { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}/* End custom CSS */