/* ========================================
   PLAYFABLECREST - PREMIUM DESIGN SYSTEM
   Purple + Orange Glassmorphism
   ======================================== */

/* === CSS RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0618;
    --bg-secondary: #120a2a;
    --bg-tertiary: #1a0f35;
    --purple-primary: #7c3aed;
    --purple-light: #a855f7;
    --purple-glow: rgba(124, 58, 237, 0.4);
    --orange-primary: #f97316;
    --orange-light: #fb923c;
    --orange-glow: rgba(249, 115, 22, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.07);
    --glass-bg-hover: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-border-hover: rgba(255, 255, 255, 0.2);
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --blur-amount: 18px;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--purple-light);
    text-decoration: none;
    transition: color var(--transition-smooth);
}

a:hover {
    color: var(--orange-light);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
}

/* === GRADIENT TEXT === */
.gradient-text {
    background: linear-gradient(135deg, var(--purple-light), var(--orange-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === GLASS CARD BASE === */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-smooth);
    background: transparent;
}

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

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

.nav-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    gap: 0;
}

.logo-play {
    color: var(--purple-light);
}

.logo-fable {
    color: var(--text-primary);
}

.logo-crest {
    color: var(--orange-primary);
}

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

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 18px;
    border-radius: 12px;
    transition: all var(--transition-smooth);
    text-decoration: none;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--glass-bg);
}

.nav-link.active {
    color: var(--text-primary);
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.3);
}

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

.hamburger .bar {
    width: 28px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

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

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 6, 24, 0.8);
    backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: floatOrb 20s infinite ease-in-out;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--purple-primary), transparent 70%);
    top: -20%;
    right: -10%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--orange-primary), transparent 70%);
    bottom: -20%;
    left: -10%;
    animation-delay: -7s;
    opacity: 0.3;
}

.hero-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--purple-light), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    opacity: 0.2;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 30px) scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple-light), var(--orange-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

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

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 50px; }
}

/* ========================================
   PAGE HERO (Sub-pages)
   ======================================== */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 140px 24px 60px;
}

.page-hero-sm {
    min-height: 35vh;
    padding: 130px 24px 40px;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.page-hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.market-detail-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 140px 24px 60px;
}

.market-detail-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
    transition: color var(--transition-smooth);
}

.back-link:hover {
    color: var(--purple-light);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-light));
    color: var(--text-primary);
    box-shadow: 0 4px 20px var(--purple-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--purple-glow);
    color: var(--text-primary);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

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

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

.btn-outline:hover {
    border-color: var(--purple-light);
    color: var(--purple-light);
    background: rgba(124, 58, 237, 0.1);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
    border-radius: 10px;
}

.btn-full {
    width: 100%;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 100px 0;
    position: relative;
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(249, 115, 22, 0.2));
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--purple-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

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

/* ========================================
   MARKET CARDS GRID
   ======================================== */
.markets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.markets-grid.compact {
    grid-template-columns: repeat(4, 1fr);
}

.market-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.market-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15), 0 0 40px rgba(124, 58, 237, 0.05);
}

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

.market-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.market-card:hover .market-card-image img {
    transform: scale(1.08);
}

.market-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(10, 6, 24, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.market-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(10, 6, 24, 0.9));
}

.art-style-tag {
    font-size: 0.75rem;
    color: var(--orange-light);
    font-weight: 500;
}

.market-card-content {
    padding: 24px;
}

.market-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.market-location {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.market-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.meta-tag {
    font-size: 0.75rem;
    padding: 4px 12px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 6px;
    color: var(--text-secondary);
}

/* ========================================
   MARKET FEATURE CARDS (Markets page)
   ======================================== */
.market-detail-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.market-feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

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

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

.market-feature-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.market-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.market-feature-image:hover img {
    transform: scale(1.05);
}

.market-rank {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    opacity: 0.3;
    text-shadow: 0 0 40px var(--purple-glow);
}

.market-feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(249, 115, 22, 0.2));
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--purple-light);
    font-weight: 600;
    margin-bottom: 12px;
}

.market-feature-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 16px;
}

.market-feature-content p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.market-feature-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
    padding: 20px;
    background: var(--glass-bg);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.meta-item strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange-light);
    margin-bottom: 4px;
}

.meta-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.market-feature-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ========================================
   CITIES SHOWCASE (Home)
   ======================================== */
.cities-showcase {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.city-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-smooth);
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
}

.city-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.city-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.city-card:hover .city-card-bg img {
    transform: scale(1.1);
}

.city-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(10, 6, 24, 0.95));
    z-index: 1;
}

.city-card-content h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.city-card-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.city-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-smooth);
}

.city-card:hover .city-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   WHY SECTION
   ======================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    transition: all var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.1);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 700;
}

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

/* ========================================
   ARTIST CARDS (Home)
   ======================================== */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.artist-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all var(--transition-smooth);
}

.artist-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 15px 50px rgba(124, 58, 237, 0.12);
}

.artist-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--purple-primary);
    box-shadow: 0 0 20px var(--purple-glow);
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-info h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.artist-style {
    font-size: 0.85rem;
    color: var(--orange-light);
    font-weight: 500;
    margin-bottom: 4px;
}

.artist-city {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.artist-bio {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ========================================
   ARTIST FULL CARDS (Artists page)
   ======================================== */
.artists-full-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.artist-full-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

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

.artist-full-card.reverse > * {
    direction: ltr;
}

.artist-full-image {
    position: relative;
}

.artist-full-image > img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--purple-primary);
    box-shadow: 0 0 30px var(--purple-glow);
    margin-bottom: 24px;
}

.artist-featured-work {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.artist-featured-work img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.artist-featured-work:hover img {
    transform: scale(1.05);
}

.artist-full-info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.artist-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag-style {
    padding: 6px 14px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--purple-light);
    font-weight: 500;
}

.tag-city {
    padding: 6px 14px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--orange-light);
    font-weight: 500;
}

.artist-full-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.artist-price-range {
    padding: 12px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 20px 0;
}

.artist-price-range strong {
    color: var(--orange-light);
}

/* ========================================
   TIPS SECTION
   ======================================== */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tip-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    transition: all var(--transition-smooth);
}

.tip-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.3);
}

.tip-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple-light), var(--orange-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.tip-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

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

/* ========================================
   CTA SECTION
   ======================================== */
.cta-card {
    position: relative;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(249, 115, 22, 0.15));
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 28px;
    padding: 64px;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--purple-glow), transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.cta-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ========================================
   CITY FEATURE (Cities page)
   ======================================== */
.city-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

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

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

.city-feature-image {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.city-feature-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.city-feature-image:hover img {
    transform: scale(1.05);
}

.city-feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(249, 115, 22, 0.2));
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--purple-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.city-feature-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 4px;
}

.city-tagline {
    font-size: 1.1rem;
    color: var(--orange-light);
    font-weight: 500;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.city-feature-content > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.city-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.highlight-item {
    padding: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
}

.highlight-item h4 {
    font-size: 0.85rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.highlight-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   MARKET DETAIL PAGE
   ======================================== */
.gallery-slideshow {
    margin-bottom: 48px;
}

.gallery-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 2/1;
    margin-bottom: 16px;
    border: 1px solid var(--glass-border);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(10, 6, 24, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-smooth);
}

.gallery-nav:hover {
    background: rgba(124, 58, 237, 0.4);
    border-color: var(--purple-light);
}

.gallery-prev {
    left: 16px;
}

.gallery-next {
    right: 16px;
}

.gallery-counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(10, 6, 24, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

.gallery-thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.gallery-thumb {
    width: 120px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-smooth);
    flex-shrink: 0;
}

.gallery-thumb.active {
    border-color: var(--purple-light);
    box-shadow: 0 0 15px var(--purple-glow);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.market-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

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

.detail-section h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--glass-border);
}

.detail-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.detail-list {
    padding-left: 20px;
    margin-bottom: 16px;
}

.detail-list li {
    list-style: disc;
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 0.92rem;
}

.detail-list li strong {
    color: var(--text-primary);
}

/* Sidebar */
.sidebar-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 24px;
}

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

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 12px;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.info-value {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: right;
}

.pricing-tiers {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-tier {
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.tier-name {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--purple-light);
    font-weight: 600;
}

.tier-range {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 4px 0;
}

.price-tier p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

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

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-card {
    padding: 40px;
}

.contact-form-card h2 {
    font-size: 1.5rem;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all var(--transition-smooth);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--purple-light);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23cbd5e1' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--purple-primary), var(--orange-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 20px;
}

.form-success h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

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

.contact-info-card {
    padding: 28px;
    margin-bottom: 20px;
}

.contact-info-card h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.contact-info-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-info-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link-lg {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all var(--transition-smooth);
    text-decoration: none;
}

.social-link-lg:hover {
    border-color: var(--purple-light);
    color: var(--text-primary);
    background: rgba(124, 58, 237, 0.1);
}

/* ========================================
   FAQ PAGE
   ======================================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.faq-item.active {
    border-color: rgba(124, 58, 237, 0.3);
}

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

.faq-question:hover {
    color: var(--purple-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--purple-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

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

.faq-answer a {
    color: var(--purple-light);
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-content {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px;
}

.legal-content h2 {
    font-size: 1.3rem;
    margin: 32px 0 12px;
    color: var(--text-primary);
}

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

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

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

.legal-content ul li {
    list-style: disc;
    color: var(--text-secondary);
    margin-bottom: 6px;
    line-height: 1.7;
    font-size: 0.92rem;
}

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

.cookie-table {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    margin: 16px 0;
}

.cookie-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.cookie-row:first-child {
    background: rgba(124, 58, 237, 0.1);
    color: var(--text-primary);
    font-weight: 600;
}

.cookie-row:last-child {
    border-bottom: none;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    padding: 64px 0 32px;
    margin-top: 0;
}

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

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 16px 0;
    max-width: 300px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--transition-smooth);
    text-decoration: none;
}

.footer-social a:hover {
    border-color: var(--purple-light);
    background: rgba(124, 58, 237, 0.15);
    transform: translateY(-2px);
}

.footer-links h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: color var(--transition-smooth);
    text-decoration: none;
}

.footer-links ul li a:hover {
    color: var(--purple-light);
}

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.footer-bottom a {
    color: var(--text-secondary);
    text-decoration: none;
}

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

/* ========================================
   SCROLL REVEAL ANIMATION
   ======================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .markets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .cities-showcase {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .market-feature-card,
    .market-feature-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .city-feature,
    .city-feature.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

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

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

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

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

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(18, 10, 42, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        border-left: 1px solid var(--glass-border);
    }

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

    .nav-link {
        padding: 14px 18px;
        font-size: 1.05rem;
    }

    .hero {
        min-height: auto;
        padding: 120px 24px 60px;
    }

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

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .section {
        padding: 60px 0;
    }

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

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

    .cities-showcase .city-card:last-child {
        grid-column: span 2;
    }

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

    .market-feature-meta {
        grid-template-columns: 1fr;
    }

    .city-highlights {
        grid-template-columns: 1fr;
    }

    .gallery-main {
        aspect-ratio: 16/9;
    }

    .gallery-thumb {
        width: 80px;
        height: 50px;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .legal-content {
        padding: 28px;
    }

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

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

    .cookie-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .artist-full-image > img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .cities-showcase {
        grid-template-columns: 1fr;
    }

    .cities-showcase .city-card:last-child {
        grid-column: span 1;
    }

    .city-card {
        aspect-ratio: 16/9;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .market-feature-buttons {
        flex-direction: column;
    }
}

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(124, 58, 237, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(124, 58, 237, 0.5);
}

/* ========================================
   SELECTION
   ======================================== */
::selection {
    background: rgba(124, 58, 237, 0.3);
    color: var(--text-primary);
}