
  :root {
    --pink: #FF2D8A;
    --pink-light: #FF6EB0;
    --pink-dark: #E0196E;
    --pink-hover: #FF4D9E;
    --pink-glow: rgba(255, 45, 138, 0.15);
    --pink-glow-strong: rgba(255, 45, 138, 0.3);

    --magenta: #8B0A50;
    --magenta-light: #A81563;
    --magenta-dark: #6D0840;
    --magenta-deep: #4A0530;

    --black: #0D0D0D;
    --black-light: #1A1A1A;
    --black-card: #1E1E1E;
    --black-elevated: #252525;

    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F3F3F3;
    --gray-200: #E0E0E0;
    --gray-300: #B0B0B0;
    --gray-400: #888888;
    --gray-500: #666666;
    --gray-600: #444444;
    --gray-700: #333333;
    --gray-800: #222222;

    --success: #22C55E;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Outfit', var(--font-main);

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 20px rgba(255, 45, 138, 0.2);

    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 400ms ease;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { font-size: 16px; scroll-behavior: smooth; }
  body {
    font-family: var(--font-main);
    background: var(--white);
    color: var(--gray-700);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  a { color: var(--pink); text-decoration: none; transition: color var(--transition-fast); }
  a:hover { color: var(--pink-light); }

  h1, h2, h3, h4 { font-family: var(--font-display); color: var(--black); line-height: 1.2; }
  h1 { font-size: 2.5rem; font-weight: 800; }
  h2 { font-size: 1.75rem; font-weight: 700; }
  h3 { font-size: 1.25rem; font-weight: 600; }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
  .container-narrow { max-width: 800px; margin: 0 auto; padding: 0 1rem; }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem; border-radius: var(--radius-full);
    font-weight: 600; font-size: 0.95rem;
    cursor: pointer; border: none;
    transition: all var(--transition-normal);
    text-decoration: none;
  }
  .btn-primary {
    background: var(--pink); color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 45, 138, 0.3);
  }
  .btn-primary:hover {
    background: var(--pink-hover); color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 45, 138, 0.4);
    transform: translateY(-1px);
  }
  .btn-secondary {
    background: transparent; color: var(--pink);
    border: 2px solid var(--pink);
  }
  .btn-secondary:hover {
    background: var(--pink-glow); color: var(--pink-light);
    border-color: var(--pink-light);
  }
  .btn-dark {
    background: var(--black-elevated); color: var(--white);
    border: 1px solid var(--gray-700);
  }
  .btn-dark:hover { background: var(--gray-700); }
  .btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }

  /* Tags & Badges */
  .tag {
    display: inline-flex; align-items: center; gap: 0.25rem;
    padding: 0.25rem 0.75rem; border-radius: var(--radius-full);
    font-size: 0.8rem; font-weight: 500;
    background: rgba(255, 45, 138, 0.08); color: var(--pink-dark);
    border: 1px solid rgba(255, 45, 138, 0.15);
  }
  .tag-magenta {
    background: rgba(139, 10, 80, 0.08); color: var(--magenta);
    border-color: rgba(139, 10, 80, 0.15);
  }
  .tag-gray {
    background: var(--gray-100); color: var(--gray-600);
    border-color: var(--gray-200);
  }
  .badge-fan {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.2rem 0.6rem; border-radius: var(--radius-full);
    font-size: 0.75rem; font-weight: 600;
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 100%);
    color: var(--white);
  }
  .badge-verified {
    display: inline-flex; align-items: center; gap: 0.2rem;
    color: var(--success); font-size: 0.85rem; font-weight: 600;
  }

  /* Cards */
  .card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
  }
  .card:hover {
    border-color: var(--pink);
    box-shadow: 0 8px 25px rgba(255, 45, 138, 0.12);
    transform: translateY(-2px);
  }
  .card a { color: inherit; text-decoration: none; }
  .card-image {
    width: 100%; aspect-ratio: 4/3;
    object-fit: cover; display: block;
    background: var(--gray-100);
  }
  .card-body { padding: var(--space-md); }
  .card-title { font-size: 1.1rem; font-weight: 600; color: var(--black); margin-bottom: 0.25rem; }
  .card-meta { font-size: 0.85rem; color: var(--gray-500); }

  /* Artist card specific */
  .artist-card .card-image { aspect-ratio: 1; border-radius: 50%; margin: var(--space-sm) auto 0; width: 60%; }
  .artist-card .card-disciplines { margin: 0.4rem 0; display: flex; flex-wrap: wrap; gap: 0.3rem; justify-content: center; }
  .artist-card .card-body { text-align: center; padding: var(--space-sm) var(--space-md) var(--space-md); }
  .artist-card .card-title { font-size: 0.95rem; }
  .card-fav { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,0.45); color: #fff; font-size: 0.85rem; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; z-index: 2; transition: background 0.15s, transform 0.15s; }
  .card-fav:hover { background: rgba(255,45,138,0.9); transform: scale(1.15); }
  .card-fav[data-fav="1"] { background: rgba(255,45,138,0.9); }

  /* Event list card (horizontal layout — used in Events page, Venue detail, Search results) */
  .event-list-card {
    display: flex; gap: var(--space-md); position: relative;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: all var(--transition-normal); text-decoration: none; color: inherit;
    margin-bottom: var(--space-md); box-shadow: var(--shadow-sm);
  }
  .event-list-card:hover { border-color: var(--pink); box-shadow: 0 4px 15px rgba(255,45,138,0.1); transform: translateY(-1px); }
  .event-list-card.past { opacity: 0.6; }
  .event-list-image { width: 180px; min-height: 140px; object-fit: cover; flex-shrink: 0; background: var(--gray-100); }
  .event-list-info { padding: var(--space-md); flex: 1; min-width: 0; }
  .event-list-date { font-size: 0.85rem; color: var(--pink-dark); font-weight: 600; margin-bottom: 0.2rem; }
  .event-list-name { font-size: 1.1rem; font-weight: 700; color: var(--black); margin-bottom: 0.3rem; }
  .event-list-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; font-size: 0.85rem; color: var(--gray-500); margin-bottom: 0.3rem; }
  .event-list-desc { font-size: 0.85rem; color: var(--gray-500); line-height: 1.5; }
  @media (max-width: 600px) { .event-list-card { flex-direction: column; } .event-list-image { width: 100%; min-height: 160px; } }

  /* Grid layouts */
  .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  @media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 768px) {
    .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.35rem; }
  }
  @media (max-width: 480px) {
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  }

  /* Section dividers */
  .section { padding: var(--space-3xl) 0; }
  .section-dark { background: var(--black); color: var(--gray-200); padding: var(--space-3xl) 0; }
  .section-dark h2, .section-dark h3 { color: var(--white); }
  .section-light { background: var(--gray-50); }
  .section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-xl); flex-wrap: wrap; gap: 0.5rem; }
  .section-header h2 { margin: 0; }
  .section-link { color: var(--pink); font-weight: 600; font-size: 0.95rem; }
  .section-link:hover { color: var(--pink-dark); }

  /* Forms */
  .form-input, .form-select {
    width: 100%; padding: 0.75rem 1rem;
    background: var(--white); color: var(--black);
    border: 2px solid var(--gray-200); border-radius: var(--radius-md);
    font-size: 1rem; font-family: var(--font-main);
    transition: border-color var(--transition-fast);
  }
  .form-input:focus, .form-select:focus {
    outline: none; border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 45, 138, 0.1);
  }
  .form-input::placeholder { color: var(--gray-400); }
  .form-label { display: block; font-weight: 600; color: var(--gray-700); margin-bottom: 0.5rem; font-size: 0.9rem; }

  /* Event timeline */
  .event-timeline { position: relative; }
  .event-timeline::before {
    content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, var(--pink), var(--magenta), var(--gray-700));
  }
  .event-timeline-item {
    position: relative; padding-left: 52px; padding-bottom: var(--space-lg);
  }
  .event-timeline-dot {
    position: absolute; left: 12px; top: 4px; width: 18px; height: 18px;
    border-radius: 50%; background: var(--pink);
    border: 3px solid var(--white); z-index: 1;
  }
  .event-timeline-dot.past { background: var(--gray-400); }
  .event-timeline-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-md); padding: var(--space-md);
    display: flex; gap: var(--space-md); align-items: flex-start;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
  }
  .event-timeline-card:hover {
    border-color: var(--pink); box-shadow: 0 4px 15px rgba(255, 45, 138, 0.1);
  }
  .event-timeline-card a { color: inherit; text-decoration: none; display: flex; gap: var(--space-md); align-items: flex-start; width: 100%; }
  .event-timeline-image {
    width: 80px; height: 80px; border-radius: var(--radius-sm);
    object-fit: cover; flex-shrink: 0; background: var(--gray-800);
  }
  .event-timeline-info { flex: 1; min-width: 0; }
  .event-timeline-date { font-size: 0.8rem; color: var(--pink-dark); font-weight: 600; margin-bottom: 0.2rem; }
  .event-timeline-name { font-size: 1rem; font-weight: 600; color: var(--black); margin-bottom: 0.2rem; }
  .event-timeline-venue { font-size: 0.85rem; color: var(--gray-500); }
  .event-timeline-type {
    display: inline-block; padding: 0.15rem 0.5rem; border-radius: var(--radius-full);
    font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
    background: rgba(255, 45, 138, 0.12); color: var(--pink-dark); margin-top: 0.25rem;
  }
  @media (max-width: 480px) {
    .event-timeline-image { width: 60px; height: 60px; }
  }

  /* Loading skeleton */
  .skeleton {
    background: linear-gradient(90deg, var(--gray-100) 0%, var(--gray-200) 50%, var(--gray-100) 100%);
    background-size: 200% 100%; animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
  }
  @keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

  /* No results */
  .no-results { text-align: center; padding: var(--space-3xl); color: var(--gray-500); }
  .no-results h3 { color: var(--gray-600); margin-bottom: 0.5rem; }

  .site-header {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-800);
    position: sticky; top: 0; z-index: 100;
  }
  .header-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 1rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
  }
  .header-logo {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
    color: var(--white); text-decoration: none;
  }
  .header-logo-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: white;
  }
  .header-nav { display: flex; align-items: center; gap: 0.25rem; }
  .header-nav a {
    padding: 0.5rem 0.875rem; border-radius: var(--radius-full);
    color: var(--gray-300); font-size: 0.9rem; font-weight: 500;
    transition: all var(--transition-fast); text-decoration: none;
  }
  .header-nav a:hover { color: var(--white); background: var(--gray-800); }
  .header-nav a.active { color: var(--pink); background: var(--pink-glow); }
  .header-actions { display: flex; align-items: center; gap: 0.75rem; }
  .lang-select {
    background: transparent; color: var(--gray-300); border: 1px solid var(--gray-700);
    padding: 0.3rem 0.5rem; border-radius: var(--radius-sm); font-size: 0.75rem;
    cursor: pointer; font-weight: 500; max-width: 120px; text-overflow: ellipsis;
  }
  .lang-select:focus { outline: none; border-color: var(--pink); }
  .lang-select option { background: var(--black); color: var(--white); }
  .user-menu { position: relative; }
  .user-menu-btn { cursor: pointer; }
  .user-dropdown {
    display: none; position: absolute; right: 0; top: calc(100% + 0.5rem);
    background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12); min-width: 160px; z-index: 100;
    overflow: hidden;
  }
  .user-dropdown.show { display: block; }
  .user-dropdown a {
    display: block; padding: 0.75rem 1rem; color: var(--gray-700);
    font-size: 0.9rem; text-decoration: none; transition: background var(--transition-fast);
  }
  .user-dropdown a:hover { background: var(--gray-50); color: var(--pink); }
  .header-lang-btn {
    padding: 0.4rem 0.75rem; border-radius: var(--radius-full);
    background: var(--gray-800); color: var(--gray-300);
    font-size: 0.8rem; font-weight: 500; cursor: pointer; border: none;
    transition: all var(--transition-fast);
  }
  .header-lang-btn:hover { background: var(--gray-700); color: var(--white); }

  /* Mobile menu */
  .header-menu-btn {
    display: none; background: none; border: none; color: var(--white);
    font-size: 1.5rem; cursor: pointer; padding: 0.25rem;
  }
  @media (max-width: 768px) {
    .header-nav { display: none; }
    .header-menu-btn { display: block; }
    .header-nav.mobile-open {
      display: flex; flex-direction: column;
      position: absolute; top: 64px; left: 0; right: 0;
      background: var(--black); border-bottom: 1px solid var(--gray-800);
      padding: 0.5rem 1rem 1rem;
    }
  }

  .site-footer {
    background: var(--black);
    border-top: 3px solid var(--pink);
    padding: var(--space-3xl) 0 var(--space-xl);
    margin-top: 0;
  }
  .footer-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 1rem;
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem;
  }
  .footer-brand .footer-brand-name { color: var(--white); margin-bottom: 0.5rem; font-size: 1.17em; font-weight: 700; }
  .footer-brand p { color: var(--gray-400); font-size: 0.9rem; max-width: 300px; }
  .footer-col h4, .footer-col .footer-heading { color: var(--gray-200); font-size: 0.9rem; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
  .footer-col a { display: block; color: var(--gray-400); font-size: 0.875rem; padding: 0.2rem 0; }
  .footer-col a:hover { color: var(--pink); }
  .footer-bottom {
    max-width: 1200px; margin: var(--space-xl) auto 0; padding: var(--space-md) 1rem 0;
    border-top: 1px solid var(--gray-800);
    display: flex; justify-content: space-between; align-items: center;
    color: var(--gray-300); font-size: 0.8rem; flex-wrap: wrap; gap: 0.5rem;
  }
  .footer-lang { display: flex; align-items: center; gap: 0.4rem; }
  .footer-lang select {
    background: transparent; color: var(--gray-400); border: 1px solid var(--gray-700);
    padding: 0.25rem 0.5rem; border-radius: var(--radius-sm); font-size: 0.8rem; cursor: pointer;
  }
  .footer-lang select option { background: var(--black); color: var(--white); }
  @media (max-width: 768px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; }
  }
  @media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }
