/* ==========================================================================
   THE BAKERY · BKRSCLB Streaming — Tutorial, 2D Infographics & Gesture Guide
   (Custom Black & White Monochrome Vector Icons — Zero Apple Emojis)
   ========================================================================== */

:root {
  --tut-gold: #f5a623;
  --tut-gold-glow: rgba(245, 166, 35, 0.4);
  --tut-accent: #2e6b45;
  --tut-accent-glow: rgba(46, 107, 69, 0.4);
  --tut-blue: #5b9eed;
  --tut-blue-glow: rgba(91, 158, 237, 0.4);
  --tut-instrumental: #5b8dee;
  --tut-card-bg: #141414;
  --tut-card-border: #262626;
}

/* Pure Black & White / Monochrome Vector SVG Icons */
.tut-svg-bw {
  width: 14px; height: 14px; vertical-align: -2px; display: inline-block;
  color: currentColor; stroke: currentColor;
}
.tut-svg-bw.gold {
  color: var(--tut-gold); stroke: var(--tut-gold);
}
.tut-svg-icon {
  width: 24px; height: 24px; display: inline-block;
  vertical-align: middle; transition: transform 0.2s ease, filter 0.2s ease;
  color: #e0e0e0;
}
.tut-svg-icon.gold {
  color: var(--tut-gold); stroke: var(--tut-gold);
}
.qc-guide-card:hover .tut-svg-icon {
  transform: scale(1.12); filter: drop-shadow(0 0 6px rgba(245, 166, 35, 0.4));
  color: var(--tut-gold); stroke: var(--tut-gold);
}
.tut-svg-hero {
  width: 16px; height: 16px; vertical-align: -3px; margin-right: 4px; display: inline-block;
}
.tut-svg-sparkle {
  width: 14px; height: 14px; vertical-align: -2px; margin-right: 4px; display: inline-block;
}
.tut-svg-arrow {
  width: 16px; height: 16px; vertical-align: -3px; display: inline-block;
}

/* --------------------------------------------------------------------------
   1. Proactive Welcome Modal (2nd/3rd Visit Trigger)
   -------------------------------------------------------------------------- */
.tut-proactive-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  z-index: 108; opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.tut-proactive-overlay.show { opacity: 1; pointer-events: auto; }

.tut-proactive-modal {
  position: fixed; inset: 0; z-index: 109;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transform: scale(0.94) translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.tut-proactive-modal.show {
  opacity: 1; pointer-events: auto; transform: scale(1) translateY(0);
}

.tut-proactive-frame {
  width: min(460px, 94vw); background: #111111; border: 1px solid #2a2a2a;
  border-radius: 16px; box-shadow: 0 25px 80px rgba(0,0,0,0.85);
  padding: 26px 24px 22px; position: relative; text-align: center;
}

.tut-proactive-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245, 166, 35, 0.12); color: var(--tut-gold);
  border: 1px solid rgba(245, 166, 35, 0.3); border-radius: 20px;
  padding: 4px 12px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px;
}

.tut-proactive-h {
  margin: 0 0 8px; font-size: 20px; font-weight: 800;
  color: #ffffff; letter-spacing: -0.02em; line-height: 1.25;
}

.tut-proactive-desc {
  margin: 0 0 20px; font-size: 13.5px; line-height: 1.55;
  color: #a0a0a0;
}

.tut-proactive-actions {
  display: flex; flex-direction: column; gap: 10px;
}

.tut-btn-primary {
  width: 100%; background: #ffffff; color: #000000;
  border: none; border-radius: 10px; padding: 13px 18px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; box-sizing: border-box;
}
.tut-btn-primary:hover { background: #e6e6e6; transform: translateY(-1px); }

.tut-proactive-secondary {
  display: flex; gap: 8px; justify-content: center;
}

.tut-btn-ghost {
  flex: 1; background: #181818; color: #888888;
  border: 1px solid #282828; border-radius: 8px; padding: 10px 12px;
  font-size: 12px; font-weight: 600; cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.tut-btn-ghost:hover { color: #ffffff; border-color: #383838; background: #202020; }

.tut-close-corner {
  position: absolute; top: 14px; right: 14px;
  background: none; border: none; color: #666666;
  font-size: 18px; cursor: pointer; padding: 6px;
  line-height: 1; border-radius: 6px; transition: color 0.15s;
}
.tut-close-corner:hover { color: #ffffff; }

/* --------------------------------------------------------------------------
   2. Fullscreen Interactive Walkthrough Carousel Modal
   -------------------------------------------------------------------------- */
.tut-walkthrough-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  z-index: 110; opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.tut-walkthrough-overlay.show { opacity: 1; pointer-events: auto; }

.tut-walkthrough-modal {
  position: fixed; inset: 0; z-index: 111;
  display: flex; align-items: center; justify-content: center;
  padding: 16px; opacity: 0; pointer-events: none;
  transform: scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.tut-walkthrough-modal.show {
  opacity: 1; pointer-events: auto; transform: scale(1);
}

.tut-walkthrough-frame {
  width: min(640px, 95vw); height: min(720px, 93vh);
  background: #0d0d0d; border: 1px solid #282828;
  border-radius: 18px; box-shadow: 0 35px 100px rgba(0,0,0,0.95);
  display: flex; flex-direction: column; overflow: hidden;
  position: relative;
}

/* Walkthrough Header */
.tut-walkthrough-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px 12px; border-bottom: 1px solid #1c1c1c;
  flex-shrink: 0; background: #111111;
}

.tut-header-left {
  display: flex; align-items: center; gap: 10px;
}

.tut-logo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--tut-gold); box-shadow: 0 0 10px var(--tut-gold-glow);
}

.tut-walkthrough-title {
  margin: 0; font-size: 15px; font-weight: 800; color: #ffffff;
  letter-spacing: -0.01em;
}

.tut-tier-toggle-wrap {
  display: flex; align-items: center; gap: 4px;
  background: #161616; border: 1px solid #282828;
  border-radius: 20px; padding: 2px 4px;
}

.tut-tier-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 14px; font-size: 10.5px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  background: transparent; color: #777777; border: none;
  cursor: pointer; transition: all 0.15s ease;
}
.tut-tier-pill.active {
  background: #252525; color: #ffffff;
}
.tut-tier-pill.active.paid {
  background: rgba(245, 166, 35, 0.2); color: var(--tut-gold);
}

.tut-header-close {
  background: none; border: 1px solid #282828; color: #888888;
  width: 28px; height: 28px; border-radius: 6px; font-size: 13px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.15s ease;
}
.tut-header-close:hover { color: #ffffff; border-color: #444444; background: #1a1a1a; }

/* Walkthrough Viewport & Slides */
.tut-viewport {
  flex: 1 1 auto; min-height: 0; overflow-y: auto; overflow-x: hidden;
  position: relative; display: flex; flex-direction: column;
  -webkit-overflow-scrolling: touch;
}

.tut-slide-container {
  flex: 1; display: flex; transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  min-height: 100%;
}

.tut-slide {
  flex: 0 0 100%; width: 100%; box-sizing: border-box;
  padding: 16px 22px 14px; display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
}

.tut-slide-content {
  width: 100%; display: flex; flex-direction: column; align-items: center;
  text-align: center;
}

.tut-slide-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; color: var(--tut-gold);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 5px;
}

.tut-slide-h {
  margin: 0 0 4px; font-size: 17px; font-weight: 800; color: #ffffff;
  letter-spacing: -0.02em; line-height: 1.3; max-width: 520px;
}

.tut-slide-desc {
  margin: 0 0 10px; font-size: 12.5px; line-height: 1.45;
  color: #a0a0a0; max-width: 520px;
}

/* --------------------------------------------------------------------------
   3. 2D Infographic Box & UI Mockups with Tiny Artwork
   -------------------------------------------------------------------------- */
.tut-infographic-box {
  width: 100%; max-width: 540px; height: 260px;
  background: #111111; border: 1px solid #242424; border-radius: 14px;
  position: relative; overflow: hidden; display: flex;
  align-items: center; justify-content: center; box-shadow: inset 0 0 40px rgba(0,0,0,0.6);
  margin-bottom: 4px;
}

.tut-mock-ui {
  width: 96%; max-width: 510px; height: 236px;
  background: #080808; border: 1px solid #222222; border-radius: 10px;
  position: relative; overflow: hidden; padding: 10px; display: flex; flex-direction: column;
  box-shadow: 0 12px 30px rgba(0,0,0,0.8);
}

/* Tiny Artwork Thumbnails */
.tut-tiny-art-thumb {
  width: 36px; height: 36px; border-radius: 5px; object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12); flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.tut-tiny-item-art {
  width: 26px; height: 26px; border-radius: 4px; object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12); flex-shrink: 0;
}
.tut-pb-tiny-art {
  width: 24px; height: 24px; border-radius: 4px; object-fit: cover;
  border: 1px solid rgba(255,255,255,0.15); flex-shrink: 0;
}
.tut-np-thumb-img {
  width: 44px; height: 44px; border-radius: 6px; object-fit: cover;
  border: 1px solid rgba(255,255,255,0.2); flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.8);
}
.tut-tiny-hdr-art {
  width: 28px; height: 28px; border-radius: 4px; object-fit: cover;
}
.tut-tiny-share-art {
  width: 24px; height: 24px; border-radius: 4px; object-fit: cover;
  border: 1px solid var(--tut-gold);
}
.tut-tiny-sr-art {
  width: 28px; height: 28px; border-radius: 4px; object-fit: cover; flex-shrink: 0;
}
.tut-tiny-vault-art {
  width: 48px; height: 48px; border-radius: 6px; object-fit: cover; flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: 0 4px 12px rgba(0,0,0,0.8);
}
.tut-tiny-opt-art {
  width: 18px; height: 18px; border-radius: 3px; object-fit: cover;
}
.tut-mini-logo-icon {
  width: 14px; height: 14px; object-fit: contain;
}

/* --- Slide 1: Long Press / Hold Gesture Animation --- */
.tut-mock-ui-tracklist {
  display: flex; flex-direction: column; gap: 7px; justify-content: flex-start;
  padding: 8px;
}
.tut-mock-track-row {
  display: flex; align-items: center; gap: 10px;
  background: #141414; border: 1px solid #222222; border-radius: 7px;
  padding: 6px 10px; position: relative; cursor: pointer;
  transition: all 0.2s ease;
}
.tut-mock-track-row.active-hold {
  animation: tutTrackPulse 4s infinite ease-in-out;
}
.tut-mock-meta {
  flex: 1; display: flex; flex-direction: column; gap: 2px; text-align: left;
}
.tut-mock-title { font-size: 11.5px; font-weight: 750; color: #ffffff; }
.tut-mock-artist { font-size: 9.5px; color: #888888; }
.tut-hold-badge {
  font-size: 8px; font-weight: 800; color: var(--tut-gold);
  background: rgba(245, 166, 35, 0.15); border: 1px solid rgba(245, 166, 35, 0.35);
  padding: 2px 6px; border-radius: 4px; letter-spacing: 0.05em;
}
.tut-track-dur { font-size: 10px; color: #666666; font-family: monospace; }

/* Hand Touch Ripple */
.tut-touch-indicator {
  position: absolute; top: 50%; left: 35%; transform: translate(-50%, -50%);
  pointer-events: none; z-index: 10;
}
.tut-touch-finger {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 15px rgba(255,255,255,0.9);
  animation: tutFingerTouch 4s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
}
.tut-touch-pulse {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid var(--tut-gold);
  animation: tutPulseExpand 4s infinite cubic-bezier(0.1, 0.8, 0.3, 1);
}

/* Context Menu Appearing */
.tut-mock-menu {
  position: absolute; top: 22px; right: 12px;
  background: #181818; border: 1px solid #333333; border-radius: 8px;
  padding: 5px; display: flex; flex-direction: column; gap: 3px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.9); z-index: 15;
  animation: tutMenuReveal 4s infinite cubic-bezier(0.2, 0.9, 0.3, 1);
}
.tut-mock-menu-item {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 8px; border-radius: 4px; font-size: 10px;
  font-weight: 650; color: #cccccc; white-space: nowrap;
}
.tut-mock-menu-item.active {
  background: rgba(245, 166, 35, 0.2); color: var(--tut-gold);
}

@keyframes tutTrackPulse {
  0%, 15% { background: #141414; border-color: #222222; }
  35%, 85% { background: #1f1f1f; border-color: var(--tut-gold); }
  95%, 100% { background: #141414; border-color: #222222; }
}
@keyframes tutFingerTouch {
  0% { transform: scale(0); opacity: 0; }
  15% { transform: scale(1); opacity: 0.95; }
  35% { transform: scale(0.9); opacity: 1; }
  75% { transform: scale(0.9); opacity: 1; }
  88% { transform: scale(0); opacity: 0; }
  100% { transform: scale(0); opacity: 0; }
}
@keyframes tutPulseExpand {
  0%, 15% { width: 10px; height: 10px; opacity: 0; border-color: #fff; }
  30% { width: 45px; height: 45px; opacity: 1; border-color: var(--tut-gold); }
  45% { width: 75px; height: 75px; opacity: 0; }
  100% { width: 75px; height: 75px; opacity: 0; }
}
@keyframes tutMenuReveal {
  0%, 35% { opacity: 0; transform: translateY(-8px) scale(0.92); pointer-events: none; }
  45%, 85% { opacity: 1; transform: translateY(0) scale(1); }
  95%, 100% { opacity: 0; transform: translateY(-8px) scale(0.92); }
}

/* ==========================================================================
   SLIDE 2: DUAL-EDGE SWIPES (LIKED SONGS LEFT, INFO CARD RIGHT)
   ========================================================================== */
.tut-swipe-mode-bar {
  display: flex; gap: 6px; margin-bottom: 8px; justify-content: center; flex-wrap: wrap;
}
.tut-swipe-pill {
  background: #171717; border: 1px solid #282828; color: #aaaaaa;
  padding: 3px 10px; border-radius: 12px; font-size: 10.5px; font-weight: 700;
  cursor: pointer; transition: all 0.15s ease; display: inline-flex; align-items: center; gap: 4px;
}
.tut-swipe-pill:hover { background: #222222; color: #ffffff; }
.tut-swipe-pill.active {
  background: var(--tut-gold); color: #000000; border-color: var(--tut-gold);
}

.tut-mock-ui-swipe {
  padding: 0 !important;
  background: #080808 !important;
  border-color: #222222 !important;
}

.tut-swipe-scene {
  width: 100%; height: 100%; position: relative; overflow: hidden;
}

/* Central Mockup (streaming.bkrsclb.com UI) */
.tut-swipe-card-main {
  width: 100%; height: 100%;
  background: #090909;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; padding: 0;
}

/* Site Top Navigation Bar */
.tut-site-topbar {
  display: flex; justify-content: space-between; align-items: center;
  background: #111111; border-bottom: 1px solid #1c1c1c;
  padding: 5px 10px; font-size: 9px;
}
.tut-site-logo {
  display: flex; align-items: center; gap: 5px; font-weight: 850; color: #ffffff; letter-spacing: 0.04em;
}
.tut-site-navlinks {
  display: flex; gap: 8px; color: #666666; font-weight: 700; font-size: 8.5px;
}
.tut-site-navlinks span.active { color: #ffffff; }
.tut-site-userbadge {
  display: flex; align-items: center; gap: 4px; font-size: 8px; font-weight: 700; color: #cccccc;
}
.tut-member-chip {
  background: rgba(245, 166, 35, 0.2); color: var(--tut-gold);
  padding: 2px 6px; border-radius: 4px; font-size: 7.5px; font-weight: 800;
  display: inline-flex; align-items: center; gap: 3px;
}

/* Album Grid Showcase with Real Tiny Artwork */
.tut-site-album-showcase {
  display: flex; gap: 10px; padding: 8px 12px; justify-content: center; align-items: center; flex: 1;
}
.tut-mini-album-card {
  width: 96px; background: #121212; border: 1px solid #202020; border-radius: 7px;
  padding: 5px; display: flex; flex-direction: column; gap: 4px;
}
.tut-mini-album-card.active {
  border-color: rgba(245, 166, 35, 0.6); box-shadow: 0 4px 18px rgba(245, 166, 35, 0.2);
}
.tut-mini-art-box {
  width: 100%; height: 58px; border-radius: 5px; position: relative; overflow: hidden;
}
.tut-mini-art-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.tut-vinyl-groove {
  position: absolute; inset: 4px; border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.35); animation: tutVinylSpin 8s linear infinite;
  pointer-events: none;
}
.tut-mini-meta { display: flex; flex-direction: column; text-align: left; }
.tut-mini-meta b { font-size: 8.5px; color: #ffffff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tut-mini-meta small { font-size: 7px; color: #777777; }

/* Site Bottom Player Bar */
.tut-site-playerbar {
  display: flex; justify-content: space-between; align-items: center;
  background: #111111; border-top: 1px solid #1c1c1c;
  padding: 5px 10px; font-size: 8.5px;
}
.tut-pb-thumbwrap {
  position: relative; display: flex; align-items: center;
}
.tut-pb-dot {
  position: absolute; bottom: -2px; right: -2px; width: 6px; height: 6px; border-radius: 50%;
  background: #0ca30c; box-shadow: 0 0 6px #0ca30c; border: 1px solid #111;
}
.tut-pb-info {
  display: flex; flex-direction: column; text-align: left; flex: 1; margin-left: 8px;
}
.tut-pb-title { font-weight: 750; color: #ffffff; font-size: 9px; }
.tut-pb-artist { color: #777777; font-size: 7.5px; }
.tut-pb-controls {
  display: flex; align-items: center; gap: 6px; color: #888888; font-size: 9px;
}
.tut-pb-play { color: #ffffff; }

/* Edge Visual Cues */
.tut-edge-cue {
  font-size: 7.5px; font-weight: 800; display: flex; align-items: center; gap: 4px;
  padding: 3px 6px; border-radius: 4px; letter-spacing: 0.04em; position: absolute; bottom: 38px;
}
.tut-edge-cue.left {
  left: 6px; color: var(--tut-gold); background: rgba(245, 166, 35, 0.16); border: 1px solid rgba(245, 166, 35, 0.45);
  animation: tutLeftCuePulse 8s infinite ease-in-out;
}
.tut-edge-cue.right {
  right: 6px; color: #7cb5ec; background: rgba(91, 158, 237, 0.16); border: 1px solid rgba(91, 158, 237, 0.45);
  animation: tutRightCuePulse 8s infinite ease-in-out;
}

/* Sliding Drawers */
.tut-swipe-drawer {
  position: absolute; top: 0; bottom: 0; width: 84%;
  background: #0f0f0f; padding: 10px 12px; display: flex; flex-direction: column;
  gap: 5px; box-shadow: 0 0 40px rgba(0,0,0,0.95); z-index: 15;
}

/* LEFT DRAWER: My Selections (Slides from LEFT) */
.tut-swipe-drawer-left {
  left: 0; border-right: 1px solid #282828;
  transform: translateX(-105%);
  animation: tutLeftDrawer 8s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

/* RIGHT DRAWER: Now Playing & Liner Notes (Slides from RIGHT) */
.tut-swipe-drawer-right {
  right: 0; border-left: 1px solid #282828;
  transform: translateX(105%);
  animation: tutRightDrawer 8s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

/* Manual Overrides when User Clicks Mode Tabs */
.show-left-drawer .tut-swipe-drawer-left { transform: translateX(0%) !important; animation: none !important; }
.show-left-drawer .tut-swipe-drawer-right { transform: translateX(105%) !important; animation: none !important; }
.show-left-drawer .tut-swipe-hand-left { opacity: 1 !important; transform: translateX(70px) !important; animation: none !important; }
.show-left-drawer .tut-swipe-hand-right { opacity: 0 !important; animation: none !important; }

.show-right-drawer .tut-swipe-drawer-right { transform: translateX(0%) !important; animation: none !important; }
.show-right-drawer .tut-swipe-drawer-left { transform: translateX(-105%) !important; animation: none !important; }
.show-right-drawer .tut-swipe-hand-right { opacity: 1 !important; transform: translateX(-70px) !important; animation: none !important; }
.show-right-drawer .tut-swipe-hand-left { opacity: 0 !important; animation: none !important; }

.tut-drawer-header {
  font-size: 9.5px; font-weight: 850; letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 5px; text-align: left;
}
.tut-drawer-header.liked { color: var(--tut-gold); }
.tut-drawer-header.info { color: #7cb5ec; }
.tut-drawer-badge {
  margin-left: auto; font-size: 7.5px; padding: 1px 5px; border-radius: 3px;
  background: rgba(245, 166, 35, 0.15); color: var(--tut-gold); border: 1px solid rgba(245, 166, 35, 0.3);
}
.tut-drawer-badge.blue {
  background: rgba(91, 158, 237, 0.15); color: #7cb5ec; border-color: rgba(91, 158, 237, 0.3);
}

.tut-ms-tabs-mock {
  display: flex; gap: 10px; border-bottom: 1px solid #1f1f1f; padding-bottom: 3px; font-size: 8px; font-weight: 750;
}
.tut-ms-tab { color: #666666; }
.tut-ms-tab.active { color: #ffffff; border-bottom: 2px solid #ffffff; margin-bottom: -4px; padding-bottom: 2px; }

.tut-liked-list {
  display: flex; flex-direction: column; gap: 3.5px; margin-top: 2px;
}
.tut-liked-item {
  display: flex; align-items: center; gap: 6px;
  background: #141414; border: 1px solid #1f1f1f; border-radius: 4px;
  padding: 3px 6px; font-size: 8.5px; color: #cccccc; text-align: left;
}
.tut-liked-item.active {
  border-color: rgba(245, 166, 35, 0.45); color: #ffffff; background: #19140c;
}
.tut-liked-star { color: var(--tut-gold); flex-shrink: 0; }
.tut-item-meta { display: flex; flex-direction: column; line-height: 1.2; flex: 1; }
.tut-item-meta b { font-size: 8.5px; color: #ffffff; }
.tut-item-meta small { font-size: 7px; color: #888888; }

/* Right Drawer Content (Now Playing Info & Liner Notes) */
.tut-np-art-preview {
  display: flex; align-items: center; gap: 8px; background: #0a0a0a;
  border: 1px solid #1a1a1a; border-radius: 6px; padding: 4px 6px; margin-top: 2px;
}
.tut-np-titlewrap { display: flex; flex-direction: column; text-align: left; }
.tut-np-titlewrap b { font-size: 9px; color: #ffffff; }
.tut-np-titlewrap small { font-size: 7.5px; color: #888888; }

.tut-credits-mock {
  display: flex; flex-direction: column; gap: 2px;
  background: #0a0a0a; border: 1px solid #1a1a1a; border-radius: 5px;
  padding: 4px 6px; font-size: 7.5px; text-align: left;
}
.tut-credit-row {
  display: flex; justify-content: space-between; color: #666666;
}
.tut-credit-row b { color: #dddddd; }

.tut-mini-gallery {
  display: flex; align-items: center; gap: 4px; margin-top: 2px;
}
.tut-gallery-thumb {
  width: 28px; height: 22px; border-radius: 3px; border: 1px solid #282828; object-fit: cover;
}
.tut-gallery-tag { font-size: 7.5px; color: #888888; font-weight: 600; }

/* Swipe Gesture Hands & Directional Trails */
.tut-swipe-hand-left {
  position: absolute; top: 46%; left: 0;
  pointer-events: none; z-index: 25;
  animation: tutLeftHandSwipe 8s infinite ease-in-out;
  display: flex; align-items: center;
}
.tut-swipe-hand-right {
  position: absolute; top: 46%; right: 0;
  pointer-events: none; z-index: 25;
  animation: tutRightHandSwipe 8s infinite ease-in-out;
  display: flex; align-items: center; flex-direction: row-reverse;
}
.tut-hand-circle {
  width: 26px; height: 26px; border-radius: 50%;
  background: #ffffff; color: #000000;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.95);
  display: flex; align-items: center; justify-content: center;
}
.tut-swipe-trail-left {
  width: 45px; height: 4px;
  background: linear-gradient(90deg, rgba(245, 166, 35, 0.8), transparent);
  border-radius: 2px; margin-left: -4px;
}
.tut-swipe-trail-right {
  width: 45px; height: 4px;
  background: linear-gradient(270deg, rgba(91, 158, 237, 0.8), transparent);
  border-radius: 2px; margin-right: -4px;
}

/* Keyframe Animations for Dual-Swipe */
@keyframes tutLeftDrawer {
  0%, 4% { transform: translateX(-105%); }
  12%, 40% { transform: translateX(0%); }
  46%, 100% { transform: translateX(-105%); }
}
@keyframes tutRightDrawer {
  0%, 50% { transform: translateX(105%); }
  58%, 88% { transform: translateX(0%); }
  94%, 100% { transform: translateX(105%); }
}
@keyframes tutLeftHandSwipe {
  0%, 2% { opacity: 0; transform: translateX(0) scale(0); }
  5% { opacity: 0.95; transform: translateX(0) scale(1); }
  13% { opacity: 0.95; transform: translateX(95px) scale(1); }
  17% { opacity: 0; transform: translateX(95px) scale(0.5); }
  100% { opacity: 0; transform: translateX(0) scale(0); }
}
@keyframes tutRightHandSwipe {
  0%, 48% { opacity: 0; transform: translateX(0) scale(0); }
  51% { opacity: 0.95; transform: translateX(0) scale(1); }
  59% { opacity: 0.95; transform: translateX(-95px) scale(1); }
  63% { opacity: 0; transform: translateX(-95px) scale(0.5); }
  100% { opacity: 0; transform: translateX(0) scale(0); }
}
@keyframes tutLeftCuePulse {
  0%, 3% { opacity: 0.5; transform: scale(1); }
  6%, 12% { opacity: 1; transform: scale(1.05); filter: drop-shadow(0 0 6px var(--tut-gold)); }
  14%, 46% { opacity: 0.2; transform: scale(0.95); filter: none; }
  47%, 100% { opacity: 0.5; transform: scale(1); }
}
@keyframes tutRightCuePulse {
  0%, 47% { opacity: 0.5; transform: scale(1); }
  50%, 56% { opacity: 1; transform: scale(1.05); filter: drop-shadow(0 0 6px #7cb5ec); }
  58%, 90% { opacity: 0.2; transform: scale(0.95); filter: none; }
  91%, 100% { opacity: 0.5; transform: scale(1); }
}
@keyframes tutVinylSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* --- Slide 3: Full-Width Synchronized Scrolling Lyrics (Immersive Karaoke Mode) --- */
.tut-lyrics-full-view {
  width: 100% !important; height: 100% !important;
  display: flex !important; flex-direction: column !important;
  justify-content: space-between !important;
  padding: 10px 14px 8px !important; box-sizing: border-box !important;
}

.tut-lyrics-full-hdr {
  display: flex !important; align-items: center !important; justify-content: space-between !important;
  background: #141414 !important; padding: 6px 10px !important; border-radius: 8px !important;
  border: 1px solid #262626 !important; flex-shrink: 0 !important;
}
.tut-lyrics-full-meta { display: flex !important; align-items: center !important; gap: 9px !important; min-width: 0 !important; }
.tut-lyrics-full-meta b { font-size: 11px !important; color: #ffffff !important; display: block !important; text-align: left !important; }
.tut-lyrics-full-meta small { font-size: 8.5px !important; color: #888888 !important; display: block !important; text-align: left !important; }
.tut-live-tag {
  display: inline-flex !important; align-items: center !important; gap: 4px !important;
  background: rgba(46, 107, 69, 0.25) !important; color: #4ade80 !important; border: 1px solid rgba(74, 222, 128, 0.35) !important;
  border-radius: 4px !important; font-size: 8px !important; font-weight: 800 !important; padding: 2px 6px !important; letter-spacing: 0.05em !important;
  flex-shrink: 0 !important;
}
.tut-live-dot {
  width: 5px !important; height: 5px !important; border-radius: 50% !important; background: #4ade80 !important;
  box-shadow: 0 0 6px #4ade80 !important; animation: tutLivePulse 1.4s infinite !important;
}
@keyframes tutLivePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Spacious, full-width scrolling container */
.tut-lyrics-full-scroll-box {
  flex: 1 1 auto !important; height: 135px !important; min-height: 135px !important; max-height: 135px !important;
  overflow: hidden !important; position: relative !important;
  background: #090909 !important; border: 1px solid #1c1c1c !important; border-radius: 8px !important;
  padding: 10px 14px !important; box-sizing: border-box !important; margin: 6px 0 !important;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%) !important;
}

.tut-lyrics-full-track {
  display: flex !important; flex-direction: column !important; gap: 8px !important; text-align: center !important;
  animation: tutLyricsFullScroll 12s infinite cubic-bezier(0.25, 0.1, 0.25, 1) !important;
  will-change: transform;
}

.tut-lyric-full-line {
  font-size: 12px !important; font-weight: 600 !important; color: #555555 !important; line-height: 1.4 !important;
  white-space: normal !important; overflow: hidden !important;
  padding: 5px 12px !important; border-radius: 6px !important; transition: all 0.35s ease !important;
}

/* Sequential Karaoke Line Illumination */
.tut-lyric-full-line.line-1 { animation: tutFullLine1 12s infinite ease-in-out; }
.tut-lyric-full-line.line-2 { animation: tutFullLine2 12s infinite ease-in-out; }
.tut-lyric-full-line.line-3 { animation: tutFullLine3 12s infinite ease-in-out; }
.tut-lyric-full-line.line-4 { animation: tutFullLine4 12s infinite ease-in-out; }
.tut-lyric-full-line.line-5 { animation: tutFullLine5 12s infinite ease-in-out; }
.tut-lyric-full-line.line-6 { animation: tutFullLine6 12s infinite ease-in-out; }
.tut-lyric-full-line.line-7 { animation: tutFullLine7 12s infinite ease-in-out; }

@keyframes tutLyricsFullScroll {
  0%, 12% { transform: translateY(18px); }
  15%, 27% { transform: translateY(-16px); }
  30%, 42% { transform: translateY(-50px); }
  45%, 57% { transform: translateY(-84px); }
  60%, 72% { transform: translateY(-118px); }
  75%, 87% { transform: translateY(-152px); }
  90%, 100% { transform: translateY(-186px); }
}

@keyframes tutFullLine1 {
  0%, 14% { color: var(--tut-gold) !important; font-size: 13px !important; font-weight: 800 !important; background: rgba(245, 166, 35, 0.14) !important; }
  17%, 100% { color: #555555 !important; font-size: 12px !important; font-weight: 600 !important; background: transparent !important; }
}
@keyframes tutFullLine2 {
  0%, 14% { color: #555555 !important; font-size: 12px !important; font-weight: 600 !important; background: transparent !important; }
  17%, 29% { color: var(--tut-gold) !important; font-size: 13px !important; font-weight: 800 !important; background: rgba(245, 166, 35, 0.14) !important; }
  32%, 100% { color: #555555 !important; font-size: 12px !important; font-weight: 600 !important; background: transparent !important; }
}
@keyframes tutFullLine3 {
  0%, 29% { color: #555555 !important; font-size: 12px !important; font-weight: 600 !important; background: transparent !important; }
  32%, 44% { color: #ffffff !important; font-size: 13.5px !important; font-weight: 900 !important; background: rgba(245, 166, 35, 0.22) !important; border: 1px solid rgba(245, 166, 35, 0.5) !important; text-shadow: 0 0 12px rgba(245, 166, 35, 0.6) !important; }
  47%, 100% { color: #555555 !important; font-size: 12px !important; font-weight: 600 !important; background: transparent !important; border: none !important; text-shadow: none !important; }
}
@keyframes tutFullLine4 {
  0%, 44% { color: #555555 !important; font-size: 12px !important; font-weight: 600 !important; background: transparent !important; }
  47%, 59% { color: var(--tut-gold) !important; font-size: 13px !important; font-weight: 800 !important; background: rgba(245, 166, 35, 0.14) !important; }
  62%, 100% { color: #555555 !important; font-size: 12px !important; font-weight: 600 !important; background: transparent !important; }
}
@keyframes tutFullLine5 {
  0%, 59% { color: #555555 !important; font-size: 12px !important; font-weight: 600 !important; background: transparent !important; }
  62%, 74% { color: var(--tut-gold) !important; font-size: 13px !important; font-weight: 800 !important; background: rgba(245, 166, 35, 0.14) !important; }
  77%, 100% { color: #555555 !important; font-size: 12px !important; font-weight: 600 !important; background: transparent !important; }
}
@keyframes tutFullLine6 {
  0%, 74% { color: #555555 !important; font-size: 12px !important; font-weight: 600 !important; background: transparent !important; }
  77%, 89% { color: var(--tut-gold) !important; font-size: 13px !important; font-weight: 800 !important; background: rgba(245, 166, 35, 0.14) !important; }
  92%, 100% { color: #555555 !important; font-size: 12px !important; font-weight: 600 !important; background: transparent !important; }
}
@keyframes tutFullLine7 {
  0%, 89% { color: #555555 !important; font-size: 12px !important; font-weight: 600 !important; background: transparent !important; }
  92%, 100% { color: var(--tut-gold) !important; font-size: 13px !important; font-weight: 800 !important; background: rgba(245, 166, 35, 0.14) !important; }
}

/* Bottom Action Strip */
.tut-lyrics-full-foot {
  display: flex !important; align-items: center !important; justify-content: space-between !important;
  background: #111111 !important; border: 1px solid #222222 !important; border-radius: 6px !important;
  padding: 5px 10px !important; flex-shrink: 0 !important;
}
.tut-clip-pill {
  font-size: 9px !important; font-weight: 700 !important; color: #aaaaaa !important;
  display: inline-flex !important; align-items: center !important; gap: 6px !important;
}
.tut-social-pills-row { display: flex !important; gap: 5px !important; }
.tut-social-pill {
  background: #202020 !important; border: 1px solid #333333 !important; border-radius: 3px !important;
  padding: 2px 7px !important; font-size: 8px !important; font-weight: 800 !important; color: #ffffff !important;
}

/* --- Slide 4: Instant Quick Search (Cmd+S) --- */
.tut-search-box {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  padding: 6px 10px; gap: 6px;
}
.tut-search-bar-mock {
  width: 100%; background: #141414; border: 1px solid #303030;
  border-radius: 7px; padding: 6px 10px; display: flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}
.tut-search-text {
  font-size: 11.5px; color: #ffffff; font-weight: 650;
  display: inline-block; white-space: nowrap; overflow: hidden;
  border-right: 2px solid var(--tut-gold); flex: 1; text-align: left;
  animation: tutTyping 3.5s steps(12, end) infinite;
}
.tut-search-hotkey {
  font-size: 9px; font-family: monospace; font-weight: 750; color: #888;
  background: #222; border: 1px solid #333; padding: 1px 5px; border-radius: 3px;
}
.tut-search-chips {
  display: flex; gap: 5px; justify-content: flex-start;
}
.tut-chip {
  font-size: 8.5px; font-weight: 750; padding: 2px 7px; border-radius: 4px;
  background: #181818; color: #888; border: 1px solid #282828;
}
.tut-chip.active {
  background: #173322; color: #7fd9a4; border-color: var(--tut-accent);
}
.tut-search-results-list {
  display: flex; flex-direction: column; gap: 3.5px; margin-top: 2px;
}
.tut-sr-item {
  display: flex; align-items: center; gap: 8px;
  background: #111111; border: 1px solid #1c1c1c; border-radius: 5px;
  padding: 3px 6px; text-align: left;
}
.tut-sr-item.active {
  border-color: rgba(245, 166, 35, 0.4); background: #18140c;
}
.tut-sr-info { flex: 1; display: flex; flex-direction: column; }
.tut-sr-info b { font-size: 8.5px; color: #ffffff; }
.tut-sr-info small { font-size: 7px; color: #777777; }
.tut-sr-type {
  font-size: 7.5px; font-weight: 800; color: #888; background: #202020;
  padding: 1px 4px; border-radius: 3px;
}

@keyframes tutTyping {
  0% { width: 0; }
  30%, 75% { width: 90px; }
  90%, 100% { width: 0; }
}

/* --- Slide 5: Club Member Showcase & The Vault Door --- */
.tut-comm-view {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  gap: 6px; padding: 6px; justify-content: space-between;
}
.tut-member-profile-card {
  display: flex; gap: 10px; background: #131313; border: 1px solid #262626;
  border-radius: 8px; padding: 8px 10px; align-items: center;
}
.tut-member-avatar-badge {
  width: 34px; height: 34px; border-radius: 50%;
  background: #1c1c1c; border: 1.5px solid var(--tut-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 850; color: var(--tut-gold); flex-shrink: 0;
  box-shadow: 0 0 10px var(--tut-gold-glow);
}
.tut-member-details {
  flex: 1; display: flex; flex-direction: column; gap: 3px; text-align: left;
}
.tut-member-name-row {
  display: flex; align-items: center; justify-content: space-between;
}
.tut-member-name-row b {
  font-size: 11px; font-weight: 800; color: #ffffff; display: flex; align-items: center; gap: 5px;
}
.tut-member-handle { font-size: 8.5px; color: #777; }
.tut-member-badges-row {
  display: flex; gap: 4px; flex-wrap: wrap; margin-top: 1px;
}
.tut-badge-chip {
  background: #1a1a1a; border: 1px solid #303030; border-radius: 4px;
  padding: 1px 5px; font-size: 7.5px; font-weight: 750; color: #cccccc;
  display: inline-flex; align-items: center; gap: 3px;
}
.tut-badge-chip.gold {
  background: rgba(245, 166, 35, 0.15); border-color: rgba(245, 166, 35, 0.4); color: var(--tut-gold);
}

.tut-vault-door-card {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #15130f, #0c0c0c); border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 8px; padding: 7px 10px; text-align: left;
}
.tut-vault-door-img {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.3); box-shadow: 0 4px 14px rgba(0,0,0,0.85);
}
.tut-vault-info { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.tut-vault-header { display: flex; align-items: center; justify-content: space-between; }
.tut-vault-status {
  font-size: 7.5px; font-weight: 800; color: #7fd9a4;
  display: inline-flex; align-items: center; gap: 3px;
}
.tut-vault-info b { font-size: 9.5px; color: #fff; }
.tut-vault-info small { font-size: 8px; color: #aaa; }

.tut-tier-comparison {
  display: flex; gap: 6px; width: 100%;
}
.tut-tier-card {
  flex: 1; background: #101010; border: 1px solid #202020;
  border-radius: 6px; padding: 5px 8px; text-align: left;
}
.tut-tier-card.active {
  border-color: var(--tut-gold); background: rgba(245, 166, 35, 0.05);
}
.tut-tier-card h5 {
  margin: 0 0 2px; font-size: 9px; font-weight: 800;
  display: flex; align-items: center; justify-content: space-between;
}
.tut-tier-card.paid h5 { color: var(--tut-gold); }
.tut-tier-card.free h5 { color: #cccccc; }
.tut-tier-card ul {
  margin: 0; padding: 0 0 0 10px; font-size: 7.5px; color: #888888;
  line-height: 1.35;
}

/* --- Slide 6: Shuffle Modes & Hotkeys --- */
.tut-shuffle-mock {
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: space-between; padding: 8px 12px; gap: 10px;
}
.tut-shuffle-menu-mock {
  flex: 1; background: #121212; border: 1px solid #262626; border-radius: 7px;
  padding: 6px; display: flex; flex-direction: column; gap: 3.5px; text-align: left;
}
.tut-shuffle-hdr {
  font-size: 7.5px; font-weight: 800; color: #666; letter-spacing: 0.06em; margin-bottom: 2px;
}
.tut-shuffle-opt {
  display: flex; align-items: center; gap: 6px; padding: 4px 6px;
  border-radius: 4px; font-size: 9px; font-weight: 650; color: #aaa;
}
.tut-shuffle-opt.active {
  background: rgba(91, 141, 238, 0.18); color: var(--tut-instrumental);
  border: 1px solid rgba(91, 141, 238, 0.35);
}
.tut-opt-tag {
  margin-left: auto; font-size: 7px; font-weight: 800; padding: 1px 4px; border-radius: 2px;
  background: #202020; color: #bbb;
}
.tut-hotkey-strip {
  flex: 1; display: flex; flex-direction: column; gap: 4px; text-align: left;
}
.tut-hotkey-chip {
  display: flex; align-items: center; gap: 6px; font-size: 8.5px; color: #aaa;
}
.tut-k-badge {
  background: #1e1e1e; border: 1px solid #333333; border-radius: 4px;
  padding: 2px 5px; font-family: monospace; font-size: 8px; font-weight: 750; color: #fff;
}

/* --------------------------------------------------------------------------
   4. Walkthrough Navigation Footer (Controls & Dots)
   -------------------------------------------------------------------------- */
.tut-walkthrough-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; border-top: 1px solid #1c1c1c; flex-shrink: 0;
  background: #0d0d0d;
}
.tut-dots { display: flex; gap: 6px; align-items: center; }
.tut-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #282828; cursor: pointer; transition: all 0.2s ease;
}
.tut-dot.active {
  width: 22px; border-radius: 10px; background: var(--tut-gold);
  box-shadow: 0 0 8px var(--tut-gold-glow);
}
.tut-nav-btns { display: flex; gap: 8px; align-items: center; }
.tut-btn-nav {
  background: #181818; border: 1px solid #282828; color: #ffffff;
  padding: 7px 14px; border-radius: 7px; font-size: 12px; font-weight: 700;
  cursor: pointer; transition: all 0.15s ease;
}
.tut-btn-nav:hover { background: #222222; border-color: #383838; }
.tut-btn-nav.accent {
  background: var(--tut-gold); color: #000000; border: none;
}
.tut-btn-nav.accent:hover { background: #ffb834; }
.tut-btn-nav:disabled { opacity: 0.35; cursor: not-allowed; }

/* --------------------------------------------------------------------------
   5. Integration inside 'i' Quick Commands Modal (.qc-view-guide)
   -------------------------------------------------------------------------- */
.qc-view-guide {
  display: none; flex-direction: column; gap: 14px;
  padding: 16px 20px 24px;
}
.qc-guide-hero {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.12), rgba(0,0,0,0.4));
  border: 1px solid rgba(245, 166, 35, 0.25); border-radius: 12px;
  padding: 16px; text-align: left; display: flex; flex-direction: column; gap: 10px;
}
.qc-guide-hero-h {
  margin: 0; font-size: 15px; font-weight: 800; color: #ffffff;
  display: flex; align-items: center; gap: 8px;
}
.qc-guide-hero-p {
  margin: 0; font-size: 12px; line-height: 1.5; color: #b0b0b0;
}
.qc-guide-launch-btn {
  background: var(--tut-gold); color: #000000; border: none;
  border-radius: 8px; padding: 10px 14px; font-size: 12.5px; font-weight: 800;
  cursor: pointer; transition: transform 0.1s, background 0.15s;
  align-self: flex-start; display: flex; align-items: center; gap: 6px;
}
.qc-guide-launch-btn:hover { background: #ffb834; transform: translateY(-1px); }
.qc-guide-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}
.qc-guide-card {
  background: #141414; border: 1px solid #262626; border-radius: 10px;
  padding: 12px; cursor: pointer; transition: border-color 0.15s, transform 0.15s;
  text-align: left; display: flex; flex-direction: column; gap: 6px;
}
.qc-guide-card:hover {
  border-color: var(--tut-gold); transform: translateY(-2px);
}
.qc-guide-card-icon {
  width: 36px; height: 36px; border-radius: 8px; background: #1c1c1c;
  border: 1px solid #2a2a2a; display: flex; align-items: center; justify-content: center;
  margin-bottom: 2px;
}
.qc-guide-card-title {
  font-size: 12px; font-weight: 750; color: #ffffff; margin: 0;
}
.qc-guide-card-desc {
  font-size: 11px; color: #888888; line-height: 1.4; margin: 0;
}

/* --------------------------------------------------------------------------
   6. Mobile Breakpoints & Touch Optimization
   -------------------------------------------------------------------------- */
@media (max-width: 760px) {
  .tut-walkthrough-modal { padding: 8px; }
  .tut-walkthrough-frame {
    width: 100vw; height: 92vh; max-height: 94vh; border-radius: 14px;
  }
  .tut-slide { padding: 12px 14px 8px; }
  .tut-slide-h { font-size: 15px; }
  .tut-slide-desc { font-size: 11.5px; margin-bottom: 8px; }
  .tut-infographic-box { height: 230px; }
  .tut-mock-ui { height: 210px; }
  .tut-swipe-pill { font-size: 9.5px; padding: 2px 7px; }
  .tut-mini-album-card { width: 80px; }
  .tut-mini-art-box { height: 46px; }
}
