/* ======================================================
   OUR CONTENT PAGE - PLAYFUL REDESIGN
   Inherits: style.css (navbar, footer, reveal, base)
====================================================== */

:root {
  --oc-ink: #2b3d72;
  --oc-soft-ink: #5c71a1;
  --oc-text-main: #2f4580;
  --oc-text-body: #7a8aaf;
  --oc-text-meta: #d9dde6;
  --oc-brand-yt: #e53434;
  --oc-brand-spotify: #41de7b;
  --oc-brand-social: #1497ce;
  --oc-brand-merch: #934ee0;
  --oc-paper: rgba(255, 255, 255, 0.94);
  --oc-paper-strong: rgba(255, 255, 255, 0.98);
  --oc-line-soft: rgba(255, 255, 255, 0.9);
  --oc-shadow-card: 0 18px 34px rgba(200, 208, 224, 0.16);
  --oc-shadow-soft: 0 8px 18px rgba(133, 142, 159, 0.12);
  --oc-radius: 30px;
}

.oc-page {
  background:
    radial-gradient(circle at 8% -3%, rgba(255, 228, 132, 0.52) 0%, rgba(255, 228, 132, 0) 34%),
    radial-gradient(circle at 94% 0%, rgba(121, 217, 255, 0.42) 0%, rgba(121, 217, 255, 0) 36%),
    linear-gradient(180deg, #f2fcff 0%, #fffbea 42%, #ffeef8 100%);
}

.oc-page main {
  position: relative;
  isolation: isolate;
}

/* Remove dark vignette from global section style on this page. */
.oc-page .sec::after {
  opacity: 0;
}

.n-content {
  background: linear-gradient(160deg, #ffd485 0%, #ffab48 100%);
}

/* ======================================================
   HERO
====================================================== */
#oc-hero {
  position: relative;
  min-height: clamp(650px, var(--app-vh-stable), 920px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 15%, rgba(255, 245, 176, 0.92) 0, rgba(255, 245, 176, 0) 38%),
    radial-gradient(circle at 88% 18%, rgba(166, 228, 255, 0.95) 0, rgba(166, 228, 255, 0) 40%),
    linear-gradient(180deg, #9de2ff 0%, #c7edff 45%, #def4ff 100%);
}

#oc-hero::before,
#oc-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

#oc-hero::before {
  width: clamp(340px, 46vw, 620px);
  height: clamp(340px, 46vw, 620px);
  top: -200px;
  left: -80px;
  background: radial-gradient(circle, rgba(255, 248, 186, 0.95) 0%, rgba(255, 248, 186, 0.2) 58%, rgba(255, 248, 186, 0) 72%);
  z-index: 0;
  animation: ocGlow 6.5s ease-in-out infinite;
}

#oc-hero::after {
  width: 130%;
  height: 160px;
  left: -15%;
  bottom: -72px;
  z-index: 1;
  background:
    radial-gradient(circle at 10% 0, #ffefbf 0 38px, transparent 40px),
    radial-gradient(circle at 27% 0, #ffd2ed 0 40px, transparent 42px),
    radial-gradient(circle at 48% 0, #cdf4ff 0 36px, transparent 38px),
    radial-gradient(circle at 70% 0, #ffefbf 0 38px, transparent 40px),
    radial-gradient(circle at 90% 0, #ffd2ed 0 36px, transparent 38px);
  opacity: 0.78;
}

#oc-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("images/Background.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  mix-blend-mode: soft-light;
  transform: scale(1.08);
}

#oc-hero .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(146, 219, 255, 0.08) 0%, rgba(255, 247, 216, 0.3) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px);
}

#clouds {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

.cloud-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.cloud {
  position: absolute;
  opacity: 0;
  will-change: transform;
  animation: ocCloudDrift linear infinite;
}

.cloud svg {
  width: 100%;
  height: auto;
}

.cl-1 { top: 3%; width: clamp(240px, 30vw, 390px); animation-duration: 62s; animation-delay: 0s; }
.cl-2 { top: 15%; width: clamp(170px, 22vw, 280px); animation-duration: 82s; animation-delay: -20s; }
.cl-3 { top: 0%; width: clamp(320px, 40vw, 520px); animation-duration: 104s; animation-delay: -48s; }
.cl-4 { top: 26%; width: clamp(140px, 18vw, 220px); animation-duration: 70s; animation-delay: -10s; }
.cl-5 { top: 34%; width: clamp(115px, 15vw, 190px); animation-duration: 58s; animation-delay: -30s; }
.cl-6 { top: 9%; width: clamp(270px, 34vw, 430px); animation-duration: 92s; animation-delay: -55s; }

#oc-hero .sec-inner {
  position: relative;
  z-index: 4;
  min-height: clamp(640px, var(--app-vh-stable), 890px);
  width: min(920px, 95vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(72px, 11vw, 118px) 20px 108px;
}

.oc-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: min(100%, 720px);
  padding: 10px 24px;
  border-radius: 999px;
  border: 3px solid #fff;
  background: linear-gradient(155deg, #fff9d7 0%, #ffe99f 100%);
  color: #906000;
  font-family: var(--font-display);
  font-size: clamp(12px, 1.8vw, 16px);
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 9px 0 rgba(175, 125, 0, 0.24), 0 16px 24px rgba(68, 49, 6, 0.16);
  transform: rotate(-2deg);
  margin-bottom: 22px;
  animation: ocPopIn 650ms var(--ease-bounce) both;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.oc-hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(56px, 12vw, 124px);
  line-height: 0.92;
  letter-spacing: clamp(2px, 0.7vw, 6px);
  color: #ffe85f;
  -webkit-text-stroke: clamp(2px, 0.55vw, 5px) #6d4800;
  paint-order: stroke fill;
  text-shadow: 5px 5px 0 rgba(109, 72, 0, 0.34), 0 10px 30px rgba(109, 72, 0, 0.22);
  animation: ocPopIn 720ms var(--ease-bounce) 90ms both;
}

.oc-hero-sub {
  margin: 22px auto 0;
  max-width: 680px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.96);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 244, 208, 0.95) 100%);
  color: #3a5d88;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(16px, 2.4vw, 27px);
  line-height: 1.35;
  box-shadow: 0 10px 0 rgba(82, 123, 165, 0.22), 0 16px 28px rgba(53, 89, 132, 0.18);
  animation: ocPopIn 740ms var(--ease-bounce) 180ms both;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.oc-float-icons {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.oc-fi {
  position: absolute;
  font-size: clamp(28px, 4.8vw, 52px);
  opacity: 0.9;
  filter: drop-shadow(0 8px 12px rgba(37, 58, 95, 0.22));
  transform-origin: center;
  animation: ocWobble var(--dur, 4.8s) ease-in-out infinite;
  animation-delay: var(--del, 0s);
}

.oc-fi:nth-child(1) { top: 14%; left: 9%;  --dur: 4.1s; }
.oc-fi:nth-child(2) { top: 22%; right: 8%; --dur: 3.8s; --del: -0.8s; }
.oc-fi:nth-child(3) { top: 57%; left: 5%;  --dur: 5.1s; --del: -1.4s; }
.oc-fi:nth-child(4) { top: 62%; right: 7%; --dur: 3.7s; --del: -0.5s; }
.oc-fi:nth-child(5) { top: 78%; left: 14%; --dur: 4.7s; --del: -1.8s; }
.oc-fi:nth-child(6) { top: 76%; right: 15%; --dur: 4.4s; --del: -1.2s; }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: min(300px, calc(100vw - 40px));
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 2px solid rgba(255, 255, 255, 0.96);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  color: #4a6796;
  text-transform: uppercase;
  box-shadow: 0 7px 16px rgba(58, 90, 131, 0.2);
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.scroll-hint::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: ocArrowDrop 1.3s ease-in-out infinite;
}

/* ======================================================
   COMMON SECTION STYLES
====================================================== */
#oc-youtube,
#oc-spotify,
#oc-social,
#oc-merch {
  position: relative;
  overflow: hidden;
}

#oc-youtube {
  --oc-accent: #ff8a00;
  background: linear-gradient(180deg, #fff6dc 0%, #ffe9c5 100%);
}

#oc-spotify {
  --oc-accent: #20c762;
  background: linear-gradient(180deg, #e8fbe6 0%, #d9f6df 100%);
}

#oc-social {
  --oc-accent: #2ec7ff;
  background: linear-gradient(180deg, #e8f7ff 0%, #d8efff 100%);
}

#oc-merch {
  --oc-accent: #cc84ff;
  background: linear-gradient(180deg, #f8ebff 0%, #f1e0ff 100%);
}

#oc-youtube::before,
#oc-spotify::before,
#oc-social::before,
#oc-merch::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 40%),
    radial-gradient(circle at 84% 84%, color-mix(in srgb, var(--oc-accent) 30%, white) 0%, rgba(255, 255, 255, 0) 52%);
  pointer-events: none;
}

#oc-youtube .sec-inner,
#oc-spotify .sec-inner,
#oc-social .sec-inner,
#oc-merch .sec-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(62px, 9vw, 98px) clamp(16px, 4vw, 42px);
}

.sec-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  padding: 8px 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--oc-text-main) !important;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 8px 16px rgba(31, 41, 87, 0.12);
  margin-bottom: 14px;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ph-txt,
.oc-social-sub,
.oc-merch-sub,
.oc-spotify-note,
.oc-video-info p {
  font-family: var(--font-body);
  color: var(--oc-soft-ink);
  line-height: 1.6;
}

.oc-section-sub {
  margin-top: 16px;
  font-style: normal;
  font-size: clamp(15px, 2.2vw, 18px);
}

.oc-yt-title,
.oc-spotify-title,
.oc-social-title,
.oc-merch-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: clamp(1px, 0.4vw, 4px);
  text-wrap: balance;
  -webkit-text-stroke: 1px rgba(31, 41, 87, 0.2);
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.95), 0 8px 20px rgba(31, 41, 87, 0.12);
}

.oc-yt-title { color: var(--oc-brand-yt); }
.oc-spotify-title { color: var(--oc-brand-spotify); }
.oc-social-title { color: var(--oc-brand-social); }
.oc-merch-title { color: var(--oc-brand-merch); }

/* Shared card look */
.oc-video-card,
.oc-social-card,
.oc-merch-card,
.oc-spotify-embed,
.oc-yt-channel-banner {
  border-radius: var(--oc-radius);
  border: 3px solid var(--oc-line-soft);
  background: linear-gradient(170deg, var(--oc-paper-strong) 0%, var(--oc-paper) 100%);
  box-shadow: var(--oc-shadow-card);
}

/* ======================================================
   BUTTONS
====================================================== */
.oc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  max-width: 100%;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(14px, 1.9vw, 18px);
  letter-spacing: 0.8px;
  color: #fff;
  box-shadow: 0 7px 0 rgba(52, 78, 138, 0.2), 0 12px 20px rgba(52, 78, 138, 0.15);
  transition: transform 220ms var(--ease-bounce), filter 220ms ease, box-shadow 220ms ease;
  text-align: center;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.oc-btn:hover,
.oc-btn:focus-visible {
  transform: translateY(-4px);
  filter: brightness(1.07) saturate(1.04);
  box-shadow: 0 11px 0 rgba(52, 78, 138, 0.22), 0 16px 26px rgba(52, 78, 138, 0.18);
}

.oc-btn:active {
  transform: translateY(-1px);
}

.oc-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.oc-btn-yt { background: linear-gradient(135deg, #f04e3a, #ff7562); }
.oc-btn-spotify { background: linear-gradient(135deg, #26b95e, #44d37c); color: #08361a !important; }
.oc-btn-purple { background: linear-gradient(135deg, #a05aeb, #d2a0ff); }

/* ======================================================
   YOUTUBE
====================================================== */
.oc-yt-header {
  text-align: center;
  margin-bottom: 42px;
}

.oc-yt-embed-wrap {
  margin: 0 0 34px;
}

.oc-yt-channel-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: clamp(18px, 2.5vw, 24px);
  border-color: rgba(255, 156, 102, 0.42);
}

.oc-yt-channel-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.oc-yt-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.96);
  background: #fff;
  box-shadow: 0 8px 16px rgba(31, 41, 87, 0.14);
  flex-shrink: 0;
}

.oc-yt-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oc-yt-channel-info h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(17px, 2vw, 22px);
  color: var(--oc-text-main);
  font-weight: 900;
}

.oc-yt-channel-info p {
  margin: 2px 0 0;
  font-family: var(--font-body);
  color: var(--oc-text-meta);
  font-size: 13px;
  font-weight: 700;
}

.oc-yt-subscribe-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.98);
  background: linear-gradient(140deg, #ef4f3a, #ff7664);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1px;
  box-shadow: 0 7px 14px rgba(239, 79, 58, 0.24);
  transition: transform 220ms var(--ease-bounce), filter 220ms ease;
}

.oc-yt-subscribe-btn:hover,
.oc-yt-subscribe-btn:focus-visible {
  transform: translateY(-3px);
  filter: brightness(1.06);
}

.oc-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.4vw, 24px);
}

.oc-video-card {
  overflow: hidden;
  border-color: rgba(255, 171, 126, 0.42);
  transition: transform 260ms var(--ease-bounce), box-shadow 260ms ease;
}

.oc-video-card:nth-child(odd) {
  transform: rotate(-0.45deg);
}

.oc-video-card:nth-child(even) {
  transform: rotate(0.45deg);
}

.oc-video-card:hover {
  transform: translateY(-7px) rotate(0deg);
  box-shadow: 0 26px 44px rgba(24, 44, 92, 0.22);
}

.oc-video-thumb,
.oc-video-iframe-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #dce9ff;
  overflow: hidden;
}

.oc-video-thumb img,
.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease, filter 200ms ease;
}

.oc-video-card:hover .oc-video-thumb img,
.yt-facade:hover img,
.yt-facade:focus-visible img {
  transform: scale(1.05);
  filter: brightness(1.06);
}

.oc-video-info {
  padding: 14px 16px 18px;
  text-align: center;
}

.oc-video-info h3 {
  margin: 0 0 6px;
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 900;
  color: var(--oc-text-main);
}

.oc-video-info p {
  margin: 0;
  font-size: 14px;
}

.oc-video-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  max-width: 100%;
  margin-top: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: linear-gradient(150deg, #ffe3d0, #ffc69d);
  color: #954505;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.8px;
  box-shadow: 0 6px 12px rgba(138, 59, 0, 0.16);
  transition: transform 200ms var(--ease-bounce), filter 200ms ease;
  text-align: center;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.oc-video-tag:hover,
.oc-video-tag:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.oc-video-tag:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.oc-subscribe {
  margin-top: 34px;
  text-align: center;
}

/* ======================================================
   SPOTIFY
====================================================== */
.oc-spotify-header {
  text-align: center;
  margin-bottom: 36px;
}

.oc-spotify-embed {
  padding: 6px;
  border-color: rgba(116, 214, 141, 0.44);
}

.oc-spotify-lazy {
  min-height: 380px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.9), rgba(233, 255, 235, 0.9));
}

.oc-spotify-note {
  margin: 0;
  font-size: 13px;
}

.oc-spotify-load {
  min-width: min(320px, 100%);
  white-space: normal;
}

/* ======================================================
   SOCIAL
====================================================== */
#oc-social .sec-inner {
  text-align: center;
}

.oc-social-sub {
  margin: 14px auto 34px;
  max-width: 700px;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 700;
}

.oc-social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.oc-social-card {
  position: relative;
  padding: 28px 18px 24px;
  border-color: rgba(166, 220, 250, 0.48);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: transform 250ms var(--ease-bounce), box-shadow 250ms ease;
}

.oc-social-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 24px 42px rgba(24, 44, 92, 0.22);
}

.oc-social-icon-wrap {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 9px 16px rgba(24, 44, 92, 0.18);
}

.ig-gradient {
  background: linear-gradient(145deg, #f09433 0%, #dc2743 52%, #bc1888 100%);
}

.tt-bg {
  background: linear-gradient(145deg, #1b1b1b 0%, #444 100%);
}

.yt-bg {
  background: linear-gradient(145deg, #d7261b 0%, #ff5147 100%);
}

.sp-bg {
  background: linear-gradient(145deg, #149647 0%, #25ce6a 100%);
}

.oc-social-card h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 900;
  color: var(--oc-text-main);
}

.oc-social-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--oc-text-body);
  line-height: 1.5;
}

.oc-social-handle {
  margin-top: 2px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  color: var(--oc-text-meta);
}

.oc-social-follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  max-width: 100%;
  margin-top: 4px;
  padding: 9px 22px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.8px;
  color: #fff;
  box-shadow: var(--oc-shadow-soft);
  transition: transform 200ms var(--ease-bounce), filter 200ms ease;
  text-align: center;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.oc-social-follow:hover,
.oc-social-follow:focus-visible {
  transform: translateY(-3px);
  filter: brightness(1.07);
}

.oc-social-follow:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.ig-follow { background: linear-gradient(135deg, #e6683c, #cc2366); }
.tt-follow { background: linear-gradient(135deg, #3a3a3a, #6ce5eb); }
.yt-follow { background: linear-gradient(135deg, #f04e3a, #ff7664); }
.sp-follow { background: linear-gradient(135deg, #26b95e, #44d37c); color: #08361a !important; }

.card-ig:hover { border-color: rgba(220, 39, 67, 0.5); }
.card-tt:hover { border-color: rgba(85, 213, 220, 0.5); }
.card-yt:hover { border-color: rgba(255, 78, 69, 0.5); }
.card-sp:hover { border-color: rgba(32, 199, 98, 0.5); }

/* ======================================================
   MERCH
====================================================== */
#oc-merch .sec-inner {
  text-align: center;
}

.oc-merch-sub {
  margin: 14px auto 36px;
  max-width: 720px;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 700;
}

.oc-merch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
  margin-bottom: 34px;
}

.oc-merch-card {
  position: relative;
  padding: 26px 18px 22px;
  border-color: rgba(199, 153, 247, 0.46);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: transform 260ms var(--ease-bounce), box-shadow 260ms ease;
}

.oc-merch-card:hover {
  transform: translateY(-8px) rotate(-0.6deg);
  box-shadow: 0 24px 42px rgba(24, 44, 92, 0.22);
}

.oc-merch-emoji {
  font-size: clamp(44px, 6vw, 64px);
  line-height: 1;
}

.oc-merch-card h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 900;
  color: var(--oc-text-main);
}

.oc-merch-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--oc-text-body);
  line-height: 1.5;
}

.oc-merch-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 5px 14px;
  border-radius: 999px;
  border: 2px solid rgba(196, 153, 245, 0.4);
  background: rgba(240, 225, 255, 0.88);
  color: #8844cf;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.8px;
}

.oc-coming-soon::after {
  content: "COMING SOON";
  position: absolute;
  top: 14px;
  right: -8px;
  padding: 5px 14px;
  border-radius: 8px;
  background: linear-gradient(140deg, #ffe3a2, #ffc671);
  color: #704000;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 12px rgba(112, 64, 0, 0.18);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 1px;
  transform: rotate(2deg);
}

/* ======================================================
   VIDEO FACADE / EMBED STATES
====================================================== */
.yt-facade {
  cursor: pointer;
  outline-offset: 3px;
}

.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  pointer-events: none;
  transition: transform 150ms ease, filter 150ms ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.yt-facade:hover .yt-play-btn,
.yt-facade:focus-visible .yt-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
}

.oc-video-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.oc-video-thumb-link {
  display: block;
  text-decoration: none;
}

.oc-video-date {
  margin: 6px 0 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--oc-text-meta);
}

.oc-video-skeleton {
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.7);
}

.skel-thumb,
.skel-line {
  background: linear-gradient(90deg, rgba(140, 168, 220, 0.2) 25%, rgba(140, 168, 220, 0.42) 50%, rgba(140, 168, 220, 0.2) 75%);
  background-size: 200% 100%;
  animation: ocShimmer 1.4s infinite;
}

.skel-thumb {
  aspect-ratio: 16 / 9;
}

.skel-line {
  height: 14px;
  margin: 18px 20px 10px;
  border-radius: 8px;
}

.skel-line.short {
  width: 55%;
  margin-top: 0;
  margin-bottom: 20px;
}

.oc-video-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 42px 20px;
  border-radius: 24px;
  border: 2px dashed rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.68);
  color: var(--oc-text-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}

.oc-video-error a {
  color: #d53b2f;
  text-decoration: none;
  font-weight: 900;
}

.oc-video-error a:hover {
  text-decoration: underline;
}

/* ======================================================
   DIVIDER
====================================================== */
.oc-divider {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.22) 100%);
}

.oc-divider::before,
.oc-divider::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(152, 176, 214, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
}

.oc-divider::before { top: 0; }
.oc-divider::after { bottom: 0; }

.oc-divider span {
  display: inline-block;
  border-radius: 50%;
  animation: ocDotBounce 850ms ease-in-out infinite alternate;
}

.oc-divider span:nth-child(1) { width: 14px; height: 14px; background: #ff9ed0; animation-delay: 0ms; }
.oc-divider span:nth-child(2) { width: 10px; height: 10px; background: #ffe06d; animation-delay: 110ms; }
.oc-divider span:nth-child(3) { width: 18px; height: 18px; background: #9be8ff; animation-delay: 180ms; }
.oc-divider span:nth-child(4) { width: 10px; height: 10px; background: #a8ee7f; animation-delay: 110ms; }
.oc-divider span:nth-child(5) { width: 14px; height: 14px; background: #d59cff; animation-delay: 0ms; }

/* ======================================================
   MOTION
====================================================== */
@keyframes ocCloudDrift {
  0% { transform: translateX(110vw); opacity: 0; }
  5% { opacity: 0.85; }
  94% { opacity: 0.85; }
  100% { transform: translateX(-520px); opacity: 0; }
}

@keyframes ocPopIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ocWobble {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  30% {
    transform: translateY(-10px) rotate(7deg);
  }
  65% {
    transform: translateY(6px) rotate(-5deg);
  }
}

@keyframes ocArrowDrop {
  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0.8;
  }
  50% {
    transform: rotate(45deg) translate(3px, 3px);
    opacity: 1;
  }
}

@keyframes ocDotBounce {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

@keyframes ocGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.85;
  }
}

@keyframes ocShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 1024px) {
  .oc-video-grid,
  .oc-social-grid,
  .oc-merch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oc-video-card:nth-child(odd),
  .oc-video-card:nth-child(even) {
    transform: none;
  }
}

@media (max-width: 768px) {
  #oc-hero {
    min-height: calc(var(--app-vh-stable) - var(--nav-h-mobile) + 100px);
  }

  #oc-hero .sec-inner {
    min-height: calc(var(--app-vh-stable) - var(--nav-h-mobile) + 100px);
    padding-top: 48px;
    padding-bottom: 86px;
  }

  .cl-1 { width: 55vw; }
  .cl-2 { width: 40vw; }
  .cl-3 { width: 70vw; }
  .cl-4 { width: 35vw; }
  .cl-5 { width: 28vw; }
  .cl-6 { width: 62vw; }

  .oc-hero-sub {
    border-radius: 22px;
    padding: 12px 16px;
  }

  #oc-youtube .sec-inner,
  #oc-spotify .sec-inner,
  #oc-social .sec-inner,
  #oc-merch .sec-inner {
    padding: 52px 14px;
  }

  .oc-yt-channel-banner {
    padding: 16px;
  }

  .oc-video-grid,
  .oc-social-grid,
  .oc-merch-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .oc-social-card,
  .oc-merch-card {
    padding: 24px 14px 20px;
  }

  .oc-spotify-lazy {
    min-height: 320px;
    padding: 18px;
  }

  .oc-btn,
  .oc-social-follow,
  .oc-video-tag {
    width: 100%;
  }

  .oc-yt-subscribe-btn {
    width: 100%;
    justify-content: center;
  }

  .oc-coming-soon::after {
    font-size: 9px;
    top: 10px;
    right: -6px;
  }

  .scroll-hint {
    bottom: 14px;
  }
}

@media (max-width: 520px) {
  .oc-hero-title {
    letter-spacing: 2px;
  }

  .oc-hero-sub {
    font-size: clamp(15px, 4.8vw, 20px);
  }

  .oc-yt-channel-info h3 {
    font-size: 17px;
  }

  .oc-video-info,
  .oc-social-card,
  .oc-merch-card {
    text-align: left;
    align-items: flex-start;
  }

  .oc-social-follow,
  .oc-video-tag,
  .oc-btn {
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .oc-page * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Reduce paint work for off-screen sections. */
#oc-youtube,
#oc-spotify,
#oc-social,
#oc-merch {
  content-visibility: auto;
  contain-intrinsic-size: 0 80vh;
}
