/* ==========================================================================
   Design Tokens & Theme Variables
   ========================================================================== */
:root {
  /* HSL Tailored Color Palette */
  --primary-hue: 258;
  --secondary-hue: 337;
  --accent-hue: 33;

  /* Fonts */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Animations & Speed */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 40px;
}

/* Dark Theme (Default) */
.dark-theme {
  --bg-color: #08060e;
  --bg-surface: rgba(22, 18, 38, 0.65);
  --bg-surface-solid: #151126;
  --bg-card: rgba(26, 21, 46, 0.5);
  --bg-card-hover: rgba(36, 30, 64, 0.75);
  
  --text-color: #f5f4f9;
  --text-secondary: #9c97b0;
  --text-muted: #6e6985;
  
  --border-color: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.15);
  
  --color-primary: hsl(var(--primary-hue), 100%, 68%);
  --color-secondary: hsl(var(--secondary-hue), 100%, 68%);
  --color-accent: hsl(var(--accent-hue), 100%, 58%);
  --color-success: #10b981;
  --color-star: #fbbf24;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
  
  --glow-opacity: 0.15;
  --overlay-bg: rgba(5, 3, 10, 0.85);
}

/* Light Theme */
.light-theme {
  --bg-color: #f8f7fc;
  --bg-surface: rgba(255, 255, 255, 0.75);
  --bg-surface-solid: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 0.95);
  
  --text-color: #120e24;
  --text-secondary: #5a5470;
  --text-muted: #8c86a3;
  
  --border-color: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.15);
  
  --color-primary: hsl(var(--primary-hue), 90%, 55%);
  --color-secondary: hsl(var(--secondary-hue), 90%, 58%);
  --color-accent: hsl(var(--accent-hue), 95%, 52%);
  --color-success: #059669;
  --color-star: #d97706;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  
  --glow-opacity: 0.08;
  --overlay-bg: rgba(240, 238, 248, 0.85);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
}

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

button, select, input, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Radial Background Glows
   ========================================================================== */
.glow-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.glow-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
  opacity: var(--glow-opacity);
  transition: opacity var(--transition-normal);
}

.glow-1 {
  top: -10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 80%);
}

.glow-2 {
  top: 40%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-secondary) 0%, transparent 80%);
}

.glow-3 {
  bottom: 10%;
  right: -5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 80%);
}

/* ==========================================================================
   Typography Utilities
   ========================================================================== */
.gradient-text {
  background: linear-gradient(135deg, var(--color-secondary) 15%, var(--color-primary) 55%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.sparkle {
  color: var(--color-accent);
}

.italic-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
}

/* ==========================================================================
   Page Router Classes
   ========================================================================== */
.page-view {
  opacity: 1;
  transition: opacity var(--transition-normal) ease-in-out;
}

.page-view.hidden {
  display: none !important;
  opacity: 0;
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   Button System
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--border-radius-xl);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(128, 61, 255, 0.4);
}

.btn-primary:hover {
  background: hsl(var(--primary-hue), 100%, 75%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128, 61, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--border-hover);
  border-color: var(--text-secondary);
}

.btn-outline {
  border: 1.5px solid var(--border-color);
  background: var(--bg-surface);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.btn-light-pill {
  background: #ffffff;
  color: #0c0817;
  padding: 12px 28px;
  border-radius: var(--border-radius-xl);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
}

.btn-light-pill:hover {
  background: #f1f0f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Premium Gradient Border Button */
.btn-gradient-border {
  position: relative;
  border-radius: var(--border-radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  cursor: pointer;
}

.btn-gradient-text {
  display: block;
  background: var(--bg-color);
  padding: 9px 21px;
  border-radius: var(--border-radius-xl);
  font-weight: 500;
  transition: background var(--transition-fast);
}

.btn-gradient-border:hover .btn-gradient-text {
  background: var(--bg-card-hover);
}

.w-full {
  width: 100%;
}

/* ==========================================================================
   Header / Navigation Bar
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  background: rgba(var(--bg-color), 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: background var(--transition-normal), border-color var(--transition-normal);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-text span {
  font-weight: 500;
  color: var(--text-secondary);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 15px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-color);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.theme-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.theme-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--border-hover);
}

.mobile-menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text-color);
}

/* Mobile Nav Menu */
.mobile-nav {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--bg-surface-solid);
  border-bottom: 1px solid var(--border-color);
  padding: 24px;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-normal);
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
}

.mobile-divider {
  border: 0;
  height: 1px;
  background: var(--border-color);
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding-top: 140px;
  padding-bottom: 60px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge-tag {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 8px 18px;
  border-radius: var(--border-radius-xl);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-color);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero Collage */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.collage-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  animation: heroFloat 6s ease-in-out infinite alternate;
}

/* Hero Floating Widgets */
.glass-card {
  position: absolute;
  background: rgba(var(--bg-surface-solid), 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.widget-rating {
  top: 15px;
  right: -20px;
  animation: ratingFloat 5s ease-in-out infinite alternate;
}

.star-icon {
  color: var(--color-star);
  font-size: 18px;
}

.rating-val {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-right: 4px;
}

.rating-lbl {
  font-size: 12px;
  color: var(--text-secondary);
}

.widget-live {
  bottom: 25px;
  left: -30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  max-width: 200px;
  animation: liveFloat 7s ease-in-out infinite alternate;
}

.live-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.live-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.avatar-group {
  display: flex;
}

.avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  background: var(--bg-surface-solid);
  margin-left: -6px;
  border: 1.5px solid;
}

.avatar:first-child {
  margin-left: 0;
}

.border-blue { border-color: var(--color-primary); color: var(--color-primary); }
.border-purple { border-color: #a855f7; color: #a855f7; }
.border-pink { border-color: var(--color-secondary); color: var(--color-secondary); }
.border-orange { border-color: var(--color-accent); color: var(--color-accent); }

.bg-blue { background: #2563eb; color: #fff; }
.bg-purple { background: #7c3aed; color: #fff; }
.bg-pink { background: #db2777; color: #fff; }
.bg-orange { background: #ea580c; color: #fff; }

.live-count {
  font-size: 12px;
  font-weight: 500;
}

/* ==========================================================================
   Trust Stats Highlight Banner
   ========================================================================== */
.trust-banner {
  padding: 24px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(var(--bg-surface-solid), 0.2);
}

.trust-flex {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}

.trust-item i {
  font-size: 16px;
}

.tick-icon { color: var(--color-primary); }
.review-icon { color: var(--color-secondary); }
.map-icon { color: var(--color-accent); }
.cat-icon { color: #a855f7; }

/* ==========================================================================
   Main Categories Grid
   ========================================================================== */
.main-categories {
  padding: 60px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background var(--transition-normal), border-color var(--transition-normal), transform var(--transition-fast);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(128, 61, 255, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.category-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.category-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform var(--transition-fast);
}

.category-card:hover .card-icon {
  transform: scale(1.15) rotate(-5deg);
}

.icon-artists { background: rgba(128, 61, 255, 0.1); color: var(--color-primary); }
.icon-events { background: rgba(255, 91, 153, 0.1); color: var(--color-secondary); }
.icon-jobs { background: rgba(255, 155, 38, 0.1); color: var(--color-accent); }
.icon-places { background: rgba(168, 85, 247, 0.1); color: #a855f7; }

.card-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.card-content p {
  font-size: 12px;
  color: var(--text-secondary);
}

.arrow-btn {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 13px;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.category-card:hover .arrow-btn {
  transform: translateX(4px);
  color: var(--text-color);
}

/* ==========================================================================
   Subcategories Bar
   ========================================================================== */
.subcategories-bar {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.scroll-container {
  display: flex;
  align-items: center;
  position: relative;
  gap: 12px;
}

.scroll-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-surface-solid);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  z-index: 5;
  transition: all var(--transition-fast);
}

.scroll-arrow:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.subcat-list {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 4px;
  width: 100%;
}

.subcat-list::-webkit-scrollbar {
  display: none;
}

.subcat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--border-radius-xl);
  border: 1px solid var(--border-color);
  font-weight: 500;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.subcat-item i {
  font-size: 14px;
}

.subcat-item:hover {
  border-color: var(--text-secondary);
  color: var(--text-color);
}

.subcat-item.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

/* ==========================================================================
   Discover Section & Artist Profiles
   ========================================================================== */
.discover-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.section-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

/* Talent Category Filtering Chips */
.filters-scroller {
  margin-bottom: 40px;
  overflow-x: auto;
}

.filters-scroller::-webkit-scrollbar {
  display: none;
}

.filters-wrapper {
  display: flex;
  gap: 10px;
  padding: 4px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--border-radius-xl);
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.filter-chip i {
  font-size: 14px;
}

.filter-chip:hover {
  border-color: var(--text-secondary);
  color: var(--text-color);
}

.filter-chip.active {
  background: var(--text-color);
  border-color: var(--text-color);
  color: var(--bg-color);
}

/* Handpicked section title bar */
.talent-handpicked-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

.highlight-title {
  font-size: 28px;
  font-weight: 800;
}

.discover-more-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.discover-more-link i {
  transition: transform var(--transition-fast);
}

.discover-more-link:hover {
  color: var(--color-primary);
}

.discover-more-link:hover i {
  transform: translateX(4px);
}

/* Artist Profile Cards Grid */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.artist-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform var(--transition-normal), border-color var(--transition-normal), background var(--transition-normal);
}

.artist-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 40px rgba(128, 61, 255, 0.22);
}

/* 2x2 Portfolio Slots Grid in card */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 200px;
  background: rgba(var(--bg-surface-solid), 0.1);
  border-bottom: 1px solid var(--border-color);
  gap: 1px;
}

.portfolio-slot {
  position: relative;
  background: var(--bg-surface-solid);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 500;
}

.portfolio-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.artist-card:hover .portfolio-slot img {
  transform: scale(1.08);
}

/* Card details bottom */
.artist-card-info {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.artist-header-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.artist-card-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.artist-title-area {
  display: flex;
  flex-direction: column;
}

.artist-card-name {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.verify-tick {
  color: var(--color-primary);
  font-size: 12px;
}

.artist-card-category {
  font-size: 11px;
  color: var(--text-secondary);
}

.artist-meta-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 10px;
  font-size: 12px;
  color: var(--text-secondary);
}

.artist-location i {
  margin-right: 4px;
}

.artist-rating {
  font-weight: 600;
}

.artist-rating i {
  color: var(--color-star);
  margin-right: 2px;
}

/* ==========================================================================
   NEW SECTION: Side-by-Side Events & Jobs Widgets
   ========================================================================== */
.events-gigs-highlights {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.highlights-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.highlight-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.highlight-heading {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-bottom: 20px;
}

/* Single Event Card Highlight */
.event-widget-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  width: 100%;
  transition: all var(--transition-fast);
}

.event-widget-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.event-cal-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(128, 61, 255, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.event-widget-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.event-widget-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-color);
}

.event-widget-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
}

.event-location-span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.event-location-span i {
  color: var(--text-muted);
}

.event-tag {
  background: var(--border-color);
  color: var(--text-secondary);
  padding: 3px 12px;
  border-radius: var(--border-radius-xl);
  font-size: 11px;
  font-weight: 500;
}

.event-widget-arrow {
  color: var(--text-muted);
  font-size: 14px;
  transition: transform var(--transition-fast);
}

.event-widget-card:hover .event-widget-arrow {
  transform: translateX(4px);
  color: var(--text-color);
}

/* Single Job Card Highlight */
.job-widget-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all var(--transition-fast);
  width: 100%;
}

.job-widget-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.job-left-sec {
  display: flex;
  align-items: center;
  gap: 20px;
}

.job-briefcase-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 155, 38, 0.1);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.job-title-sec {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.job-title-sec h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-color);
}

.job-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
}

.job-location-span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.job-location-span i {
  color: var(--text-muted);
}

.job-badge {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
  padding: 3px 12px;
  border-radius: var(--border-radius-xl);
  font-size: 11px;
  font-weight: 500;
}

.job-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-color);
}

/* Light Theme overrides for card highlights */
.light-theme .event-widget-card,
.light-theme .job-widget-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
}

.light-theme .event-cal-icon {
  background: rgba(128, 61, 255, 0.06);
  color: #803DFF;
}

.light-theme .job-briefcase-icon {
  background: rgba(0, 0, 0, 0.03);
  color: var(--text-secondary);
}

.light-theme .event-tag,
.light-theme .job-badge {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-secondary);
  border: 1px solid rgba(0, 0, 0, 0.01);
}

.explore-widget-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.explore-widget-link i {
  transition: transform var(--transition-fast);
}

.explore-widget-link:hover {
  color: var(--color-primary);
}

.explore-widget-link:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   NEW SECTION: Showcase callout card banner
   ========================================================================== */
.banner-callout-section {
  padding: 40px 0;
}

.gradient-callout-card {
  background: linear-gradient(135deg, #0e0a1f 0%, #150f2a 50%, #0d081c 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  padding: 56px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.gradient-callout-card::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 91, 153, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.callout-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.badge-accent {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-secondary);
  text-transform: uppercase;
}

.callout-title {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
}

.callout-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Sub-page Specific Styles (Browse, Events, Jobs Pages)
   ========================================================================== */
.page-header-section {
  padding-top: 130px;
  padding-bottom: 80px;
}

.page-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 8px;
}

.page-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 16px;
}

.page-filters-row {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

/* Custom dropdown selects */
.filter-dropdown {
  position: relative;
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  border-radius: var(--border-radius-xl);
  padding: 10px 24px 10px 18px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  min-width: 140px;
}

.filter-dropdown select {
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding-right: 12px;
  width: 100%;
}

.dropdown-arrow {
  position: absolute;
  right: 12px;
  font-size: 10px;
  color: var(--text-muted);
  pointer-events: none;
}

/* Extended Filter Pills */
.extended-filters-wrapper {
  margin-top: 20px;
  overflow-x: auto;
}

.extended-filters-wrapper::-webkit-scrollbar {
  display: none;
}

.extended-filters {
  display: flex;
  gap: 10px;
  padding-bottom: 4px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--border-radius-xl);
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.filter-pill:hover {
  border-color: var(--text-secondary);
  color: var(--text-color);
}

.filter-pill.active {
  background: var(--text-color);
  border-color: var(--text-color);
  color: var(--bg-color);
}

.dot-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* Search Bar layout */
.search-filter-container {
  display: flex;
  gap: 12px;
  width: 100%;
}

.search-input-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-xl);
  padding: 12px 20px;
  flex: 1;
}

.search-icon {
  color: var(--text-muted);
}

.search-input-box input {
  width: 100%;
  font-size: 14px;
}

.btn-filter-action {
  border-radius: var(--border-radius-xl);
  padding: 12px 24px;
}

/* Collapsible filter options panel */
.filter-settings-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 20px;
  margin-top: 16px;
  transition: all var(--transition-normal);
}

/* ==========================================================================
   Empty State Cards
   ========================================================================== */
.empty-state-card {
  border: 2px dashed var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 80px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(var(--bg-surface-solid), 0.1);
}

.mask-graphics-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.mask-graphic {
  width: 44px;
  height: 44px;
  transform: rotate(-10deg);
}

.mask-graphic.orange-mask {
  transform: rotate(15deg);
  margin-top: 8px;
}

.empty-state-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.empty-state-card p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Event full item list style */
.events-page-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.event-detail-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.event-detail-item-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

/* Jobs Listings style on dedicated page */
.jobs-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.job-page-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.job-page-item-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

/* ==========================================================================
   Quote Banner Section
   ========================================================================== */
.quote-section {
  padding: 60px 0;
}

.quote-card {
  position: relative;
  background: linear-gradient(135deg, rgba(128, 61, 255, 0.08) 0%, rgba(255, 91, 153, 0.08) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 56px 48px;
  text-align: center;
  overflow: hidden;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 1;
  color: var(--border-color);
  position: absolute;
  top: -10px;
  left: 30px;
  pointer-events: none;
  font-weight: 800;
}

.quote-text {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-color);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.quote-author {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-secondary);
  display: block;
}

.quote-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  margin: 30px auto 0;
  box-shadow: 0 0 10px var(--color-primary);
}

/* ==========================================================================
   Footer Styling
   ========================================================================== */
.footer {
  background: rgba(var(--bg-surface-solid), 0.5);
  border-top: 1px solid var(--border-color);
  padding-top: 80px;
  padding-bottom: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .brand-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 16px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--border-hover);
}

.footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--text-color);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}

.bottom-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   Modals & Interaction
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  background: var(--bg-surface-solid);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  padding: 40px;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.modal-overlay.open .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.modal-close:hover {
  border-color: var(--text-color);
  color: var(--text-color);
}

.modal-header {
  margin-bottom: 24px;
}

.modal-header h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 4px;
}

.modal-header p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Form Styles */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  background: var(--bg-card-hover);
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.checkbox-group label {
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.avatar-selector {
  display: flex;
  gap: 12px;
}

.avatar-preview {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid transparent;
  transition: border-color var(--transition-fast);
}

/* Detail Modal Content Structure */
.detail-modal-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.artist-detail-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-avatar-section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.detail-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
}

.detail-name-area h2 {
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-name-area p {
  color: var(--text-secondary);
  font-size: 14px;
}

.detail-bio-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: var(--border-radius-md);
}

.detail-bio-box h4 {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.detail-bio-box p {
  font-size: 14px;
  line-height: 1.5;
}

.detail-meta-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.meta-item {
  border: 1px solid var(--border-color);
  padding: 12px;
  border-radius: var(--border-radius-md);
  text-align: center;
}

.meta-item-label {
  font-size: 11px;
  color: var(--text-secondary);
}

.meta-item-val {
  font-size: 15px;
  font-weight: 600;
  margin-top: 4px;
}

.artist-detail-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-portfolio-section h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

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

.detail-portfolio-item {
  aspect-ratio: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.detail-portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-contact-box {
  background: linear-gradient(135deg, rgba(128, 61, 255, 0.05) 0%, rgba(255, 91, 153, 0.05) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-contact-box h3 {
  font-size: 16px;
}

/* ==========================================================================
   Responsive Grid & Media Queries
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-subtitle {
    margin: 0 auto 30px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .highlights-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .detail-modal-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-actions {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-nav {
    display: flex !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-normal);
    align-items: center;
    text-align: center;
  }

  .mobile-nav.open {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: all !important;
    transform: translateY(0) !important;
  }

  .scroll-arrow {
    display: none !important;
  }
  
  .hero-cta {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    width: 100% !important;
  }
  
  .hero-cta .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  
  .page-filters-row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    width: 100% !important;
  }
  
  .filter-dropdown {
    width: 100% !important;
    display: flex !important;
  }
  
  .filter-dropdown select {
    width: 100% !important;
  }
  
  /* Stacking listing cards and widgets */
  .event-widget-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 20px !important;
  }

  .event-widget-arrow {
    align-self: flex-end !important;
  }

  .event-detail-item-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 20px !important;
  }

  .event-detail-item-card > div:first-child {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  .event-detail-item-card .event-widget-arrow {
    align-self: flex-end !important;
  }

  .job-widget-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  .job-widget-card .job-price {
    align-self: flex-end !important;
  }

  .job-page-item-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  .job-page-item-card > div:first-child {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .job-meta-row {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  .job-page-item-card > div:last-child {
    align-self: flex-end !important;
  }

  .highlights-split {
    gap: 24px !important;
  }
  
  /* Quote section improvements */
  .quote-card {
    padding: 32px 20px !important;
  }
  
  .quote-text {
    font-size: 19px !important;
    line-height: 1.4 !important;
  }
  
  .quote-mark {
    font-size: 80px !important;
    top: -5px !important;
    left: 15px !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-links ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom .bottom-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .trust-flex {
    justify-content: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .discover-section {
    text-align: center;
  }

  .discover-section .section-tag,
  .discover-section .section-title {
    text-align: center;
  }

  .talent-handpicked-header {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
    gap: 12px;
  }

  .discover-more-link {
    justify-content: center;
    width: 100%;
  }

  .highlight-col {
    align-items: center !important;
    text-align: center;
  }

  .explore-widget-link {
    justify-content: center;
    width: 100%;
  }
  
  .modal-container {
    padding: 24px;
  }
  
  .detail-portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .callout-title {
    font-size: 32px;
  }

  .callout-content {
    align-items: center !important;
    text-align: center;
    margin: 0 auto;
  }
  
  .gradient-callout-card {
    padding: 32px;
  }
  
  .search-filter-container {
    flex-direction: column;
  }
}

/* Category Filter Pill Icons Color Utilities */
.text-pink { color: #db2777; }
.text-purple { color: #7c3aed; }
.text-orange { color: #ea580c; }
.text-blue { color: #2563eb; }

/* Ensure icon colors match active pill style when active */
.filter-pill.active i {
  color: var(--bg-color) !important;
}

/* ==========================================================================
   Premium Dark Button & Dotted Empty State
   ========================================================================== */
.btn-dark {
  background: #110c1f;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-dark:hover {
  background: #1d1736;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.empty-state-dotted {
  border: 2px dashed var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(var(--bg-surface-solid), 0.15);
  width: 100%;
}

.light-theme .empty-state-dotted {
  background: #ffffff;
  border: 1.5px dashed rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   Dedicated Mobile Login View
   ========================================================================== */
.login-page-container {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 160px);
}

.login-back-link {
  align-self: flex-start;
  margin-bottom: 30px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 15px;
}

.login-back-link:hover {
  color: var(--text-color);
}

.login-logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.login-card {
  width: 100%;
  background: var(--bg-surface-solid);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.light-theme .login-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.login-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-color);
}

.login-subheading {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.login-field-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.mobile-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-xl);
  background: var(--bg-surface);
  padding: 12px 18px;
  margin-bottom: 24px;
  transition: border-color var(--transition-fast);
}

.light-theme .mobile-input-wrapper {
  background: #fcfbfd;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-input-wrapper:focus-within {
  border-color: var(--color-primary);
}

.mobile-prefix {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-color);
  padding-right: 12px;
  border-right: 1px solid var(--border-color);
  margin-right: 12px;
  font-size: 14px;
}

.light-theme .mobile-prefix {
  border-color: rgba(0, 0, 0, 0.08);
}

.mobile-prefix i {
  color: var(--text-muted);
  font-size: 13px;
}

#mobile-number-input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-color);
  letter-spacing: 0.5px;
}

.login-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.login-footer i {
  font-size: 13px;
}

/* ==========================================================================
   Responsive Adaptations for Tablets and Mobile sizes
   ========================================================================== */
@media (max-width: 576px) {
  /* Hero Floating widgets */
  .widget-rating {
    right: 10px !important;
    top: 10px !important;
    transform: scale(0.9);
  }
  
  .widget-live {
    left: 10px !important;
    bottom: 10px !important;
    transform: scale(0.9);
  }
  
  .hero-cta {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    width: 100% !important;
  }
  
  .hero-cta .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  
  /* Trust banner items */
  .trust-flex {
    justify-content: center !important;
    gap: 16px !important;
  }
  
  /* Events / Jobs directory filters stack vertically */
  .page-filters-row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    width: 100% !important;
  }
  
  .filter-dropdown {
    width: 100% !important;
    display: flex !important;
  }
  
  .filter-dropdown select {
    width: 100% !important;
  }
  
  /* Jobs lists cards */
  .job-page-item-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
  
  .job-page-item-card div:last-child {
    align-self: flex-end !important;
  }
  
  .job-widget-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
  
  .job-widget-card .job-price {
    align-self: flex-end !important;
  }

  /* Events lists cards & highlights */
  .event-widget-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 20px !important;
  }

  .event-widget-arrow {
    align-self: flex-end !important;
  }

  .event-detail-item-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 20px !important;
  }

  .event-detail-item-card .event-widget-arrow {
    align-self: flex-end !important;
  }

  .highlights-split {
    gap: 24px !important;
  }
  
  /* Quote section mobile improvements */
  .quote-card {
    padding: 32px 20px !important;
  }
  
  .quote-text {
    font-size: 19px !important;
    line-height: 1.4 !important;
  }
  
  .quote-mark {
    font-size: 80px !important;
    top: -5px !important;
    left: 15px !important;
  }
  
  /* Modals and Login adaptive layouts */
  .modal-container {
    padding: 24px !important;
  }
  
  .login-card {
    padding: 24px !important;
  }
  
  .login-heading {
    font-size: 26px !important;
  }
}

@media (max-width: 480px) {
  /* Artist card profile photo adjustments */
  .artist-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================
   6. PLATFORM STARTUP SPLASH SCREEN (5-SECOND ENTRY ANIMATION)
   ========================================================== */

/* Body locking on splash screen */
body.splash-active {
  overflow: hidden !important;
  height: 100vh !important;
}

.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0b0813;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.splash-screen.fade-out {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

/* Background Soft Glows in Splash Screen */
.splash-glow-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.splash-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  animation: splashGlowPulse 8s infinite alternate ease-in-out;
}

.glow-pink {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #ff5b99 0%, transparent 70%);
  top: 15%;
  left: 15%;
}

.glow-purple {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #803dff 0%, transparent 70%);
  bottom: 15%;
  right: 15%;
  animation-delay: -4s;
}

.splash-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90%;
}

/* Logo Animation */
.splash-logo-container {
  margin-bottom: 24px;
  filter: drop-shadow(0 0 15px rgba(128, 61, 255, 0.4));
  animation: splashLogoEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, logoPulse 2.5s infinite 1.2s ease-in-out;
}

.splash-circle {
  animation: splashDotBounce 1.5s infinite alternate ease-in-out;
}

/* Typography styles matching Outfits / Playfair */
.splash-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0 0 8px 0;
  opacity: 0;
  animation: splashTextFadeIn 0.8s ease-out 0.4s forwards;
}

.splash-logo-text span {
  background: linear-gradient(135deg, #a855f7 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.splash-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #94a3b8;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 40px 0;
  opacity: 0;
  animation: splashTextFadeIn 0.8s ease-out 0.6s forwards;
}

/* Splash Loader Progress Bar */
.splash-loading-wrapper {
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: splashTextFadeIn 0.8s ease-out 0.8s forwards;
}

.splash-bar-background {
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.splash-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff5b99, #803dff, #ff9b26);
  border-radius: 2px;
}

.splash-loading-percentage {
  font-family: monospace;
  font-size: 13px;
  color: #cbd5e1;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Animations Keyframes */
@keyframes splashGlowPulse {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.25;
  }
  100% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.45;
  }
}

@keyframes splashLogoEntrance {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.7);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 15px rgba(128, 61, 255, 0.4));
  }
  50% {
    transform: scale(1.03);
    filter: drop-shadow(0 0 25px rgba(255, 91, 153, 0.6));
  }
}

@keyframes splashDotBounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-4px);
  }
}

@keyframes splashTextFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating animations keyframes */
@keyframes heroFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

@keyframes ratingFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes liveFloat {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-10px) scale(1.01); }
}

/* Page staggered entrance setup */
.badge-tag, .hero-title, .hero-subtitle, .hero-cta, .hero-visual {
  opacity: 0;
  transform: translateY(20px);
}

body.intro-active .badge-tag {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

body.intro-active .hero-title {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.15s forwards;
}

body.intro-active .hero-subtitle {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
}

body.intro-active .hero-cta {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.45s forwards;
}

body.intro-active .hero-visual {
  animation: scaleIn 1s cubic-bezier(0.25, 1, 0.5, 1) 0.6s forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.96) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}


