/* ═══════════════════════════════════════
   MERRIJOYPEBBL — PREMIUM ART PLATFORM
   Black & Green Glossy Glassmorphism
   ═══════════════════════════════════════ */

/* ─── Reset & Base ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-deep: #000000;
  --bg-mid: #050a05;
  --glass-bg: rgba(0, 255, 100, 0.04);
  --glass-bg-hover: rgba(0, 255, 100, 0.08);
  --glass-border: rgba(0, 255, 100, 0.12);
  --glass-border-hover: rgba(0, 255, 100, 0.25);
  --primary: #00c853;
  --primary-light: #69f0ae;
  --cyan: #00e676;
  --cyan-light: #b9f6ca;
  --glow-primary: rgba(0, 200, 83, 0.35);
  --glow-cyan: rgba(0, 230, 118, 0.35);
  --text-primary: #e8f5e9;
  --text-secondary: #a5d6a7;
  --text-muted: #66bb6a;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --blur: blur(20px);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(0, 200, 83, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 90%, rgba(0, 230, 118, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(0, 100, 40, 0.03) 0%, transparent 70%),
    linear-gradient(180deg, #000000 0%, #020a02 50%, #000000 100%);
  z-index: -1;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

::selection {
  background: var(--primary);
  color: #000000;
}

/* ─── Utility Classes ─── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-light), var(--cyan), #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: 
    0 4px 30px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(0, 255, 100, 0.05);
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: 
    0 8px 40px rgba(0, 200, 83, 0.1),
    0 4px 30px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(0, 255, 100, 0.1);
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cyan);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #00c853, #009624);
  color: #000000;
  box-shadow: 
    0 4px 24px var(--glow-primary),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 32px var(--glow-primary),
    0 0 60px rgba(0, 200, 83, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  background: linear-gradient(135deg, #00e676, #00c853);
}

.btn-glass {
  background: rgba(0, 255, 100, 0.06);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  box-shadow: inset 0 1px 0 rgba(0, 255, 100, 0.05);
}

.btn-glass:hover {
  background: rgba(0, 255, 100, 0.12);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
  box-shadow: 
    0 4px 20px rgba(0, 200, 83, 0.1),
    inset 0 1px 0 rgba(0, 255, 100, 0.1);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.btn-full:last-child {
  margin-bottom: 0;
}

/* ─── Cursor Glow ─── */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.05) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity 0.3s ease;
  opacity: 0;
}

@media (hover: hover) {
  .cursor-glow {
    opacity: 1;
  }
}

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-icon {
  color: var(--primary-light);
  font-size: 1.4rem;
  transition: var(--transition);
  filter: drop-shadow(0 0 6px rgba(0, 200, 83, 0.4));
}

.nav-logo:hover .logo-icon {
  color: var(--cyan);
  transform: rotate(45deg);
  filter: drop-shadow(0 0 10px rgba(0, 230, 118, 0.6));
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: rgba(0, 255, 100, 0.06);
}

.nav-link.nav-cta {
  background: linear-gradient(135deg, #00c853, #009624);
  color: #000000;
  margin-left: 8px;
  box-shadow: 0 2px 12px var(--glow-primary);
}

.nav-link.nav-cta:hover {
  box-shadow: 0 4px 20px var(--glow-primary);
  transform: translateY(-1px);
  background: linear-gradient(135deg, #00e676, #00c853);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-light);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  filter: blur(4px) saturate(0.3) brightness(0.5);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.95) 100%),
    radial-gradient(ellipse at 30% 40%, rgba(0, 200, 83, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(0, 230, 118, 0.06) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 120px 24px 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cyan);
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease-out;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse-dot 2s infinite;
  box-shadow: 0 0 8px var(--glow-cyan);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px var(--glow-cyan); }
  50% { opacity: 0.5; transform: scale(1.5); box-shadow: 0 0 16px var(--glow-cyan); }
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 32px;
  border-radius: var(--radius-lg);
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), var(--cyan), #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(0, 200, 83, 0.3));
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-scroll-indicator span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary-light), transparent);
  animation: scroll-line 2s infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════════════════════
   PAGE HERO
   ═══════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
}

.page-hero-sm {
  padding: 160px 0 80px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  filter: blur(2px) saturate(0.3) brightness(0.4);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.95) 100%),
    radial-gradient(ellipse at 30% 40%, rgba(0, 200, 83, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(0, 230, 118, 0.05) 0%, transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.page-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.breadcrumb-link {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.breadcrumb-link:hover {
  color: var(--cyan);
}

/* ═══════════════════════════════════════
   MARKETS GRID (HOME PAGE)
   ═══════════════════════════════════════ */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.market-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: var(--transition);
}

.market-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 20px 60px rgba(0, 200, 83, 0.12),
    0 0 80px rgba(0, 200, 83, 0.05);
}

.market-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.market-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.8) saturate(0.8);
}

.market-card:hover .market-img {
  transform: scale(1.08);
  filter: brightness(0.9) saturate(0.9);
}

.market-card-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
}

.market-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c853, #009624);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #000000;
  box-shadow: 0 4px 16px var(--glow-primary);
}

.market-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.market-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--cyan);
  margin-bottom: 10px;
}

.market-location svg {
  stroke: var(--cyan);
}

.market-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.market-card-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(0, 200, 83, 0.1);
  color: var(--primary-light);
  border: 1px solid rgba(0, 200, 83, 0.2);
}

.card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cyan);
  transition: var(--transition);
}

.market-card:hover .card-link {
  color: var(--cyan-light);
  text-shadow: 0 0 8px rgba(0, 230, 118, 0.4);
}

/* ═══════════════════════════════════════
   MARKETS FEATURE LIST (Markets Page)
   ═══════════════════════════════════════ */
.market-detail-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.market-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.market-feature.reverse {
  direction: rtl;
}

.market-feature.reverse > * {
  direction: ltr;
}

.market-feature-image {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.market-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.75) saturate(0.7);
}

.market-feature:hover .market-feature-img {
  transform: scale(1.05);
  filter: brightness(0.85) saturate(0.8);
}

.market-feature-rank {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c853, #009624);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #000000;
  box-shadow: 0 6px 24px var(--glow-primary);
  z-index: 2;
}

.market-feature.reverse .market-feature-rank {
  left: auto;
  right: 24px;
}

.market-feature-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.market-feature-content h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.market-feature-content > p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.8;
}

.market-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.meta-item {
  font-size: 0.9rem;
}

.meta-item strong {
  color: var(--cyan);
  margin-right: 8px;
}

.meta-item span {
  color: var(--text-secondary);
}

.market-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════
   ARTISTS (Home Featured)
   ═══════════════════════════════════════ */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.artist-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.artist-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 20px 60px rgba(0, 230, 118, 0.08),
    0 0 40px rgba(0, 200, 83, 0.04);
}

.artist-image {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
}

.artist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: brightness(0.85) saturate(0.8);
}

.artist-card:hover .artist-img {
  transform: scale(1.1);
  filter: brightness(0.95) saturate(0.9);
}

.artist-glow {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.artist-card:hover .artist-glow {
  opacity: 0.6;
  box-shadow: 0 0 20px var(--glow-primary);
}

.artist-info h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.artist-style {
  display: block;
  font-size: 0.85rem;
  color: var(--primary-light);
  margin-bottom: 4px;
}

.artist-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.artist-location svg {
  stroke: var(--cyan);
}

/* ═══════════════════════════════════════
   ARTISTS FULL PAGE
   ═══════════════════════════════════════ */
.artists-full-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.artist-full-card {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.artist-full-card.reverse {
  grid-template-columns: 1fr 350px;
}

.artist-full-card.reverse .artist-full-image {
  order: 2;
}

.artist-full-card.reverse .artist-full-info {
  order: 1;
}

.artist-full-image {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.artist-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.75) saturate(0.7);
}

.artist-full-card:hover .artist-full-img {
  transform: scale(1.05);
  filter: brightness(0.85) saturate(0.8);
}

.artist-full-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.artist-full-info h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.artist-full-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.artist-style-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(0, 200, 83, 0.1);
  color: var(--primary-light);
  border: 1px solid rgba(0, 200, 83, 0.2);
}

.artist-full-info > p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.artist-gallery-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.mini-gallery-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  filter: brightness(0.8) saturate(0.7);
  border: 1px solid rgba(0, 255, 100, 0.05);
}

.mini-gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  filter: brightness(0.9) saturate(0.85);
  border-color: var(--glass-border-hover);
}

/* ═══════════════════════════════════════
   WHY SECTION
   ═══════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(0, 200, 83, 0.05);
}

.why-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(0, 200, 83, 0.08);
  border: 1px solid rgba(0, 200, 83, 0.12);
  margin-bottom: 20px;
}

.why-icon svg {
  stroke: var(--primary);
}

.why-card:nth-child(even) .why-icon svg {
  stroke: var(--cyan);
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   TIPS SECTION
   ═══════════════════════════════════════ */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.tip-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
}

.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(0, 200, 83, 0.05);
}

.tip-number {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.25), rgba(0, 230, 118, 0.25));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.tip-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.tip-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════ */
.newsletter-card {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.newsletter-content {
  padding: 56px;
}

.newsletter-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
  color: var(--text-primary);
}

.newsletter-content > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: rgba(0, 255, 100, 0.03);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px var(--glow-primary);
  background: rgba(0, 255, 100, 0.05);
}

.newsletter-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.newsletter-visual {
  position: relative;
  overflow: hidden;
}

.newsletter-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(0.4) brightness(0.6);
}

/* ═══════════════════════════════════════
   MARKET DETAIL PAGE
   ═══════════════════════════════════════ */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.detail-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.detail-section {
  padding: 36px;
  border-radius: var(--radius-lg);
}

.detail-section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-primary);
}

.detail-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.detail-section p:last-child {
  margin-bottom: 0;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(0, 255, 100, 0.05);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border-color: var(--glass-border-hover);
}

.gallery-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: brightness(0.8) saturate(0.7);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
  filter: brightness(0.9) saturate(0.85);
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.type-item {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(0, 255, 100, 0.02);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.type-item:hover {
  border-color: var(--glass-border-hover);
  background: rgba(0, 255, 100, 0.04);
}

.type-item h3 {
  font-size: 1rem;
  color: var(--cyan);
  margin-bottom: 8px;
}

.type-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.tips-list {
  list-style: none;
}

.tips-list li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(0, 255, 100, 0.04);
}

.tips-list li:last-child {
  border-bottom: none;
}

.tips-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-size: 0.75rem;
  text-shadow: 0 0 6px var(--glow-primary);
}

/* Detail Sidebar */
.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

.sidebar-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.sidebar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-primary);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.other-markets-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.other-markets-list li a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.other-markets-list li a:hover {
  background: rgba(0, 255, 100, 0.06);
  color: var(--cyan);
}

/* ═══════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.contact-form-wrapper {
  padding: 44px;
  border-radius: var(--radius-xl);
}

.contact-form-wrapper h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.contact-form-wrapper > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  background: rgba(0, 255, 100, 0.03);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2366bb6a' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: #050a05;
  color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px var(--glow-primary);
  background: rgba(0, 255, 100, 0.05);
}

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success svg {
  margin-bottom: 16px;
  stroke: var(--cyan);
}

.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-success p {
  color: var(--text-secondary);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(0, 200, 83, 0.08);
  margin-bottom: 12px;
}

.contact-icon svg {
  stroke: var(--primary);
}

.contact-info-card:nth-child(even) .contact-icon svg {
  stroke: var(--cyan);
}

.contact-info-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.contact-info-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-info-card a {
  color: var(--cyan);
}

.contact-info-card a:hover {
  text-decoration: underline;
  text-shadow: 0 0 8px rgba(0, 230, 118, 0.3);
}

.contact-social {
  display: flex;
  gap: 16px;
}

.contact-social a {
  color: var(--cyan);
  font-size: 0.9rem;
}

.contact-social a:hover {
  color: var(--cyan-light);
  text-decoration: underline;
}

/* ═══════════════════════════════════════
   FAQ / BUYING GUIDE
   ═══════════════════════════════════════ */
.guide-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.guide-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.guide-section {
  padding: 36px;
  border-radius: var(--radius-lg);
}

.guide-section h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-primary);
}

.guide-content h3 {
  font-size: 1.1rem;
  color: var(--cyan);
  margin-bottom: 8px;
  margin-top: 24px;
}

.guide-content h3:first-child {
  margin-top: 0;
}

.guide-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

.guide-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.guide-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.guide-nav-link {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.guide-nav-link:hover {
  background: rgba(0, 255, 100, 0.06);
  color: var(--cyan);
}

.guide-sidebar .sidebar-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--glass-border-hover);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(0, 255, 100, 0.02);
  border: none;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(0, 255, 100, 0.05);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 20px 20px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════ */
.legal-content {
  padding: 56px;
  border-radius: var(--radius-xl);
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  color: var(--text-primary);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-size: 1.1rem;
  color: var(--cyan);
  margin-top: 20px;
  margin-bottom: 10px;
}

.legal-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  color: var(--text-secondary);
  line-height: 1.8;
  position: relative;
  padding-left: 16px;
  margin-bottom: 4px;
}

.legal-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-light);
}

.legal-content a {
  color: var(--cyan);
}

.legal-content a:hover {
  text-decoration: underline;
  text-shadow: 0 0 8px rgba(0, 230, 118, 0.3);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 255, 100, 0.04);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  transition: var(--transition);
}

.social-link:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  background: rgba(0, 230, 118, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 230, 118, 0.15);
}

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--cyan);
  text-shadow: 0 0 6px rgba(0, 230, 118, 0.2);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.footer-bottom a {
  color: var(--text-secondary);
  font-weight: 500;
}

.footer-bottom a:hover {
  color: var(--cyan);
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .market-feature {
    grid-template-columns: 1fr;
  }

  .market-feature.reverse {
    direction: ltr;
  }

  .market-feature-image {
    min-height: 280px;
  }

  .artist-full-card {
    grid-template-columns: 1fr;
  }

  .artist-full-card.reverse {
    grid-template-columns: 1fr;
  }

  .artist-full-card.reverse .artist-full-image {
    order: 0;
  }

  .artist-full-card.reverse .artist-full-info {
    order: 0;
  }

  .artist-full-image {
    min-height: 300px;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .guide-layout {
    grid-template-columns: 1fr;
  }

  .guide-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .newsletter-card {
    grid-template-columns: 1fr;
  }

  .newsletter-visual {
    height: 250px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    gap: 4px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--glass-border);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 14px 20px;
    width: 100%;
  }

  .nav-link.nav-cta {
    margin-left: 0;
    margin-top: 16px;
    text-align: center;
    justify-content: center;
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    padding: 120px 20px 80px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .stat-item {
    padding: 16px 28px;
    width: 100%;
    max-width: 260px;
    flex-direction: row;
    gap: 12px;
  }

  .markets-grid {
    grid-template-columns: 1fr;
  }

  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }

  .market-feature-content {
    padding: 28px;
  }

  .market-feature-rank {
    width: 44px;
    height: 44px;
    top: 16px;
    left: 16px;
  }

  .market-feature.reverse .market-feature-rank {
    left: 16px;
    right: auto;
  }

  .detail-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .types-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 28px;
  }

  .newsletter-content {
    padding: 32px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .legal-content {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .artist-full-info {
    padding: 28px;
  }

  .page-hero {
    padding: 140px 0 60px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .artists-grid {
    grid-template-columns: 1fr;
  }

  .artist-gallery-mini {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .mini-gallery-img {
    height: 70px;
  }

  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-img {
    height: 200px;
  }

  .detail-sidebar {
    grid-template-columns: 1fr;
  }

  .guide-sidebar {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }
}

/* ─── Overlay for mobile menu ─── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.visible {
  opacity: 1;
  visibility: visible;
}