/* ═══════════════════════════════════════════════
   TATTOO STUDIO EXPLORER CUSTOM STYLES
   Aesthetic: Neon-Cyber Glassmorphism & High-Contrast Ink
   ═══════════════════════════════════════════════ */

:root {
  --neon-cyan: #5fd8ff;
  --neon-gold: #c9a96e;
  --dark-bg: #030408;
  --glass-bg: rgba(10, 12, 22, 0.6);
  --glass-border: rgba(95, 216, 255, 0.15);
  --glow-shadow: 0 0 25px rgba(95, 216, 255, 0.2);
}

.tattoo-body {
  background-color: var(--dark-bg);
  font-family: 'Outfit', 'Segoe UI', sans-serif;
  color: #f5f5f5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ── Ink Particle Hero ── */
.tattoo-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, #0c1024 0%, var(--dark-bg) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Ambient glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}
.hero-glow--cyan {
  width: 420px; height: 420px;
  background: rgba(95, 216, 255, 0.18);
  top: 10%; left: 15%;
  animation: heroOrbFloat1 18s ease-in-out infinite;
}
.hero-glow--gold {
  width: 350px; height: 350px;
  background: rgba(201, 169, 110, 0.14);
  bottom: 10%; right: 12%;
  animation: heroOrbFloat2 22s ease-in-out infinite;
}
@keyframes heroOrbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, -50px) scale(1.15); }
}
@keyframes heroOrbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-50px, 35px) scale(1.2); }
}

/* Content layer */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 6%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Staggered entrance animations */
.hero-badge {
  display: inline-block;
  padding: 7px 22px;
  border-radius: 999px;
  background: rgba(95, 216, 255, 0.07);
  border: 1px solid rgba(95, 216, 255, 0.28);
  color: var(--neon-cyan);
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 28px;
  box-shadow: var(--glow-shadow);
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #fff;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.hero-accent {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  line-height: 1.85;
  max-width: 600px;
  color: rgba(245, 245, 245, 0.65);
  margin-bottom: 40px;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

/* CTA buttons */
.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-btn--primary {
  background: linear-gradient(135deg, rgba(95, 216, 255, 0.22), rgba(95, 216, 255, 0.08));
  border: 1.5px solid var(--neon-cyan);
  color: #dff8ff;
  box-shadow: 0 0 20px rgba(95, 216, 255, 0.15);
}
.hero-btn--primary:hover {
  background: var(--neon-cyan);
  color: #030408;
  box-shadow: 0 0 40px rgba(95, 216, 255, 0.45);
  transform: translateY(-3px);
}
.hero-btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: rgba(245, 245, 245, 0.8);
}
.hero-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
}

/* Scroll hint */
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}
.hero-scroll-hint span {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.3);
  font-weight: 600;
}
.hero-mouse {
  width: 22px; height: 38px;
  border: 2px solid rgba(245, 245, 245, 0.22);
  border-radius: 11px;
  position: relative;
}
.hero-wheel {
  width: 3px; height: 7px;
  background: var(--neon-cyan);
  border-radius: 2px;
  position: absolute;
  top: 7px; left: 50%;
  transform: translateX(-50%);
  animation: heroWheelScroll 1.8s ease-in-out infinite;
}
@keyframes heroWheelScroll {
  0%   { top: 7px; opacity: 0; }
  20%  { opacity: 1; }
  80%  { top: 22px; opacity: 0; }
  100% { top: 22px; opacity: 0; }
}

/* Entrance animation keyframe */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(35px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ── AR Try-On Section ── */
.ar-tryon-section {
  padding: 120px 8%;
  /* Solid dark background so it never shows the body's #030408 underneath
     during the hero-to-section transition. */
  background: #0a0c18;
  border-top: 1px solid var(--glass-border);
  position: relative;
  /* z-index must be HIGHER than the hero sticky wrapper to render on top
     once the sticky phase ends and the sections scroll into view. */
  z-index: 20;
}

.ar-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.ar-header {
  text-align: center;
  margin-bottom: 60px;
}

.ar-tag {
  display: inline-block;
  padding: 5px 18px;
  border-radius: 999px;
  background: rgba(95, 216, 255, 0.08);
  border: 1px solid rgba(95, 216, 255, 0.2);
  color: var(--neon-cyan);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.ar-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.ar-header p {
  font-size: 1.05rem;
  color: rgba(245, 245, 245, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

/* Grid layout for Viewport and Controls */
.ar-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Viewport Card styling */
.ar-viewport-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--glow-shadow);
}

.ar-canvas-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background: #080c14;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

#ar-canvas {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  cursor: grab;
}

#ar-canvas:active {
  cursor: grabbing;
}

/* Loader Overlay */
.ar-loader {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 8, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 5;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(95, 216, 255, 0.15);
  border-top-color: var(--neon-cyan);
  border-radius: 50%;
  animation: arSpinnerRotate 1s linear infinite;
}

@keyframes arSpinnerRotate {
  to { transform: rotate(360deg); }
}

.ar-loader span {
  font-size: 0.9rem;
  color: var(--neon-cyan);
  font-weight: 600;
  letter-spacing: 1px;
}

/* Guide Overlay Brackets */
.ar-guide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 3;
  transition: opacity 0.5s ease;
}

.ar-guide-overlay.hidden {
  opacity: 0;
}

.guide-brackets {
  position: absolute;
  width: 70%;
  height: 70%;
}

.brk {
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: rgba(95, 216, 255, 0.35);
  border-style: solid;
  border-width: 0;
}

.brk.tl { top: 0; left: 0; border-top-width: 3px; border-left-width: 3px; border-top-left-radius: 12px; }
.brk.tr { top: 0; right: 0; border-top-width: 3px; border-right-width: 3px; border-top-right-radius: 12px; }
.brk.bl { bottom: 0; left: 0; border-bottom-width: 3px; border-left-width: 3px; border-bottom-left-radius: 12px; }
.brk.br { bottom: 0; right: 0; border-bottom-width: 3px; border-right-width: 3px; border-bottom-right-radius: 12px; }

.guide-text {
  background: rgba(3, 4, 8, 0.75);
  border: 1px solid rgba(95, 216, 255, 0.25);
  color: var(--neon-cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
}

/* Control Panel Card styling */
.ar-controls-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--glow-shadow);
}

.ar-controls-header {
  margin-bottom: 25px;
}

.ar-controls-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.ar-controls-header p {
  font-size: 0.88rem;
  color: rgba(245, 245, 245, 0.5);
  line-height: 1.4;
}

/* Selected Tattoo Preview panel */
.selected-tattoo-preview {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 30px;
}

.preview-img-box {
  width: 64px;
  height: 64px;
  background: #fff; /* White bg helps show custom designs nicely */
  border-radius: 12px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preview-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.preview-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.preview-label {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--neon-gold);
  font-weight: 700;
}

.preview-details h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

.tattoo-style-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  background: rgba(95, 216, 255, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 2px;
}

/* Control group inputs & buttons */
.control-group {
  margin-bottom: 22px;
}

.control-group.action-buttons {
  display: flex;
  gap: 14px;
}

.ar-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  letter-spacing: 0.5px;
}

.ar-btn.primary {
  background: linear-gradient(135deg, rgba(95, 216, 255, 0.25) 0%, rgba(95, 216, 255, 0.08) 100%);
  border: 1.5px solid var(--neon-cyan);
  color: #dff8ff;
  box-shadow: 0 4px 15px rgba(95, 216, 255, 0.15);
}

.ar-btn.primary:hover {
  background: var(--neon-cyan);
  color: #030408;
  box-shadow: 0 4px 25px rgba(95, 216, 255, 0.4);
  transform: translateY(-2px);
}

.ar-btn.secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: rgba(245, 245, 245, 0.85);
}

.ar-btn.secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.ar-btn.text-only {
  background: none;
  border: none;
  color: rgba(245, 245, 245, 0.45);
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ar-btn.text-only:hover {
  color: var(--neon-cyan);
}

.slider-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(245, 245, 245, 0.8);
}

.slider-header span:last-child {
  color: var(--neon-cyan);
  font-weight: 700;
}

/* Beautiful customized range input sliders */
.ar-range {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  outline: none;
  margin: 10px 0;
}

.ar-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--neon-cyan);
  border: 2px solid var(--dark-bg);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(95, 216, 255, 0.6);
  transition: transform 0.15s ease;
}

.ar-range::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

.ar-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--neon-cyan);
  border: 2px solid var(--dark-bg);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(95, 216, 255, 0.6);
  transition: transform 0.15s ease;
}

.ar-range::-moz-range-thumb:hover {
  transform: scale(1.25);
}

.help-text {
  display: block;
  font-size: 0.72rem;
  color: rgba(245, 245, 245, 0.35);
  margin-top: 4px;
}

.reset-action {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 0;
}


/* ── Curated Catalog Gallery Section ── */
.tattoo-gallery-section {
  padding: 120px 8%;
  background: #030408;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 20;
}

.gallery-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.gallery-head {
  max-width: 500px;
}

.gallery-tag {
  display: inline-block;
  padding: 5px 18px;
  border-radius: 999px;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--neon-gold);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.gallery-head h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.gallery-head p {
  font-size: 1rem;
  color: rgba(245, 245, 245, 0.5);
}

.search-filters-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 580px;
}

/* Search bar styling */
.search-box {
  position: relative;
  width: 100%;
}

.search-box input {
  width: 100%;
  padding: 15px 20px 15px 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.search-box input:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(95, 216, 255, 0.15);
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  opacity: 0.4;
}

/* Categories Filter Buttons */
.filter-categories {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 5px;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.filter-categories::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}

.filter-btn {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(245, 245, 245, 0.6);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.filter-btn.active {
  background: rgba(95, 216, 255, 0.1);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(95, 216, 255, 0.1);
}

/* Gallery Grid & Cards styling */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.tattoo-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tattoo-card:hover {
  transform: translateY(-8px);
  border-color: rgba(95, 216, 255, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(95, 216, 255, 0.05);
}

.tattoo-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #fff; /* White base background for ink designs */
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.3s ease;
}

.tattoo-card:hover .tattoo-img-wrapper {
  background: #f6f8fa;
}

.tattoo-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.tattoo-card:hover .tattoo-img-wrapper img {
  transform: scale(1.08);
}

/* Hover overlay action button */
.tattoo-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 8, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(4px);
}

.tattoo-card:hover .tattoo-hover-overlay {
  opacity: 1;
}

.tryon-overlay-btn {
  padding: 10px 20px;
  background: var(--neon-cyan);
  color: #030408;
  border: none;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(95, 216, 255, 0.4);
  transform: translateY(10px);
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.tattoo-card:hover .tryon-overlay-btn {
  transform: translateY(0);
}

.tryon-overlay-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(95, 216, 255, 0.6);
}

/* Card details */
.tattoo-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tattoo-info h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tattoo-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tattoo-style-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--neon-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tattoo-number-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(245, 245, 245, 0.3);
}


/* ── Responsive breakpoints ── */
@media (max-width: 992px) {
  .ar-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .scroll-slide h1 {
    font-size: 2.5rem;
  }
  .scroll-slide h2 {
    font-size: 2rem;
  }
  .scroll-slide p {
    font-size: 0.95rem;
  }
  .ar-tryon-section, .tattoo-gallery-section {
    padding: 80px 5%;
  }
  .gallery-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .control-group.action-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

/* ── Tactile Precise Click Rotation Buttons Styling ── */
.precise-rotate-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
}

.rot-step-btn {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 245, 245, 0.7);
  padding: 8px 6px;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  text-align: center;
}

.rot-step-btn:hover {
  background: rgba(95, 216, 255, 0.08);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(95, 216, 255, 0.15);
  transform: translateY(-1px);
}

.rot-step-btn:active {
  transform: translateY(1px);
  background: rgba(95, 216, 255, 0.15);
}

/* ── Studio Footer ── */
.studio-footer {
  background: #030408;
  border-top: 1px solid rgba(95, 216, 255, 0.08);
  text-align: center;
  padding: 80px 8% 50px;
  position: relative;
  z-index: 12;
}

.studio-footer h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.studio-footer > p {
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.4);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 35px;
}

/* No results message styling */
.no-results-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: rgba(245, 245, 245, 0.4);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
}
