/* =========================================
   FOR FUN — parallax bg, self-contained
========================================= */
.for-fun {
  min-height: 58vh;
  width: 100%;
  position: relative;
  z-index: 50;
  clip-path: inset(0 0 0 0);
  overflow: hidden;
}

.for-fun-bg {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  overflow: hidden;
  will-change: transform;
}

.for-fun-bg .for-fun-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transform-origin: center center;
  pointer-events: none;
  display: block;
}

.for-fun-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 58vh;
  padding: 2rem 0.75rem;
  padding-left: 18%;
  font-family: var(--font-body), sans-serif;
}

.for-fun-panel-frame {
  position: relative;
  width: min(700px, calc(100vw - 1.2rem));
  min-height: 340px;
}

.for-fun-panel {
  position: relative;
  z-index: 1;
  background: #fff;
  min-height: 340px;
  padding: 1.1rem 1.1rem 1.35rem;
}

.for-fun-symbol {
  display: block;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.5);
  margin-bottom: 0.5rem;
}

.for-fun-title {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
  letter-spacing: 0.015em;
}

.for-fun-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #444;
  margin-bottom: 1.5rem;
}

.for-fun-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.for-fun-card {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.for-fun-card-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(26, 26, 26, 0.6);
}

.for-fun-card-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
}
