/* ============================================================
   ANTIGRAVITY DJ PORTAL — profile.css
   DJ Public Profile Page Styles
   ============================================================ */

/* ── Profile Wrapper ── */
.profile-page {
  position: relative;
  z-index: 1;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.profile-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 45vh 20px 40px;
  overflow: hidden;
  min-height: 400px;
}

.profile-hero-cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.profile-hero-cover:hover {
  transform: scale(1.08);
}

.profile-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(5, 5, 8, 0.4) 40%,
    rgba(5, 5, 8, 0.85) 70%,
    #050508 100%
  );
  z-index: 1;
}

.profile-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  width: 100%;
}

/* ── Powered By ── */
.powered-by {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.powered-by a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.powered-by a:hover {
  color: var(--theme-color);
}

/* ── Avatar ── */
.profile-avatar-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--theme-color);
  box-shadow: 0 0 30px color-mix(in srgb, var(--theme-color) 40%, transparent);
  position: relative;
  z-index: 1;
  display: block;
}

.profile-avatar-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--theme-color), var(--accent-color)) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: spin 8s linear infinite;
}

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

.profile-avatar-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--theme-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

/* ── Live Indicator ── */
.live-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: #EF4444;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 2px solid var(--bg);
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: live-pulse 1.2s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

.profile-display-name {
  font-family: 'Monument Extended', sans-serif;
  font-weight: 800;
  line-height: 0.8;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 40px; /* Üstten biraz boşluk */
  padding-left: 20px; /* Yanlardan scrollbar taşmasını önlemek için */
  padding-right: 20px;
  box-sizing: border-box;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 10;
  pointer-events: none;
  white-space: nowrap;
}

/* ── Location & Short Bio ── */
.profile-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.profile-location svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.7;
}

.profile-tagline {
  font-size: 16px;
  color: rgba(203, 213, 225, 0.85);
  line-height: 1.6;
  margin-bottom: 8px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Bio Heading ── */
.bio-heading {
  font-family: 'Monument Extended', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(to bottom, var(--theme-color) 0%, color-mix(in srgb, var(--theme-color) 6%, transparent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Genre Tags ── */
.profile-genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 16px 0;
}

.genre-tag {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.2s ease;
  cursor: default;
}

.genre-tag:hover {
  background: color-mix(in srgb, var(--theme-color) 20%, transparent);
  border-color: color-mix(in srgb, var(--theme-color) 40%, transparent);
  color: var(--theme-color);
}

.genre-tag-primary {
  background: color-mix(in srgb, var(--theme-color) 20%, transparent);
  border-color: color-mix(in srgb, var(--theme-color) 40%, transparent);
  color: var(--theme-color);
}

/* ── Social Links ── */
.profile-social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.social-link svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.social-link:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--theme-color) 40%, transparent);
}

/* ── Scroll Indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-10px); }
}

/* ── Hero Stats Strip ── */
.profile-hero-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

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

.hero-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  display: block;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}

/* ── Hero CTA ── */
.hero-cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ============================================================
   BIO SECTION
   ============================================================ */

.profile-bio-section {
  padding: 40px 20px 60px;
  max-width: 700px;
  margin: 0 auto;
}

.profile-bio {
  font-size: 17px;
  line-height: 1.8;
  color: #CBD5E1;
  word-break: break-word;
}

.profile-bio p {
  margin-bottom: 1em;
}

.profile-bio p:last-child {
  margin-bottom: 0;
}

.profile-bio h1,
.profile-bio h2,
.profile-bio h3 {
  color: #fff;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-family: 'Space Grotesk', sans-serif;
}

.profile-bio h1 { font-size: 28px; }
.profile-bio h2 { font-size: 24px; }
.profile-bio h3 { font-size: 20px; }

.profile-bio a {
  color: var(--theme-color);
  text-decoration: underline;
}

.profile-bio a:hover {
  color: var(--accent-color);
}

.profile-bio ul,
.profile-bio ol {
  margin-bottom: 1em;
  padding-left: 20px;
}

.profile-bio li {
  margin-bottom: 0.5em;
}

.profile-bio blockquote {
  border-left: 4px solid var(--theme-color);
  padding-left: 16px;
  margin-left: 0;
  margin-right: 0;
  color: var(--muted);
  font-style: italic;
  background: rgba(255,255,255,0.02);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
}

/* ============================================================
   PROFILE TABS
   ============================================================ */

.profile-tabs-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.profile-tabs-container {
  flex: 1;
  max-width: 900px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.profile-tabs-wrapper.can-scroll-left .profile-tabs-container {
  mask-image: linear-gradient(to right, transparent, black 20px, black);
  -webkit-mask-image: linear-gradient(to right, transparent, black 20px, black);
}
.profile-tabs-wrapper.can-scroll-right .profile-tabs-container {
  mask-image: linear-gradient(to left, transparent, black 20px, black);
  -webkit-mask-image: linear-gradient(to left, transparent, black 20px, black);
}
.profile-tabs-wrapper.can-scroll-left.can-scroll-right .profile-tabs-container {
  mask-image: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
}

.tab-scroll-arrow {
  display: none;
  background: none;
  border: none;
  color: var(--muted);
  width: 40px;
  height: 50px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease;
  flex-shrink: 0;
  z-index: 2;
  padding: 0;
}

.profile-tabs-wrapper.can-scroll-left .tab-scroll-arrow.left,
.profile-tabs-wrapper.can-scroll-right .tab-scroll-arrow.right {
  display: flex;
}

.tab-scroll-arrow:hover {
  color: var(--theme-color);
}

.profile-tabs-wrapper.scrolled {
  background: rgba(5, 5, 8, 0.96);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.profile-tabs {
  display: flex;
  gap: 8px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 10px;
}

.profile-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
  outline: none;
  flex-shrink: 0;
}

.tab-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.tab-btn:hover {
  color: var(--text);
}

.tab-btn.active {
  color: var(--theme-color);
  border-bottom-color: var(--theme-color);
}

.tab-btn .tab-count {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1px 8px;
  font-size: 11px;
  font-weight: 600;
  min-width: 22px;
  text-align: center;
  transition: all 0.2s ease;
}

.tab-btn.active .tab-count {
  background: color-mix(in srgb, var(--theme-color) 20%, transparent);
  border-color: color-mix(in srgb, var(--theme-color) 40%, transparent);
  color: var(--theme-color);
}

/* ── Tab Content Area ── */
.tab-content-area {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  min-height: 50vh;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeSlideIn 0.4s ease;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   SONGS TAB
   ============================================================ */

.songs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.song-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.song-card:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.song-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.song-cover {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--surface-hover);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.song-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.song-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--theme-color), var(--accent-color));
  opacity: 0.7;
  color: #fff;
}

.song-info {
  flex: 1;
  min-width: 0;
}

.song-title {
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
  color: var(--text);
}

.song-artist {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.song-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.song-duration {
  font-size: 12px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.song-platform-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-hover);
  flex-shrink: 0;
  transition: all 0.2s ease;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
}

.song-platform-btn:hover {
  background: color-mix(in srgb, var(--theme-color) 20%, transparent);
  border-color: color-mix(in srgb, var(--theme-color) 40%, transparent);
  transform: scale(1.1);
}

.song-platform-btn svg {
  width: 18px;
  height: 18px;
}

.song-expand-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.song-expand-btn:hover {
  color: var(--theme-color);
  background: var(--surface-hover);
}

.song-expand-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.song-card.expanded .song-expand-btn svg {
  transform: rotate(180deg);
}

/* ── Song Embed Player ── */
.song-embed {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 0 solid var(--border);
}

.song-embed.open {
  max-height: 200px;
  border-top-width: 1px;
}

.song-embed iframe {
  width: 100%;
  height: 152px;
  border: none;
  display: block;
}

/* ── Song Number ── */
.song-number {
  width: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

/* ── Songs Filter Row ── */
.songs-filter-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.songs-search {
  flex: 1;
  min-width: 200px;
}

/* ============================================================
   VIDEOS TAB
   ============================================================ */

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--theme-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px color-mix(in srgb, var(--theme-color) 30%, transparent);
}

/* ── Video Thumbnail ── */
.video-thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface-hover);
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
}

/* ── Play Button Overlay ── */
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
}

.video-card:hover .video-play-btn {
  background: rgba(0, 0, 0, 0.2);
}

.play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.play-icon svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
  color: #fff;
}

.video-card:hover .play-icon {
  transform: scale(1.1);
  background: var(--theme-color);
  border-color: var(--theme-color);
  box-shadow: 0 0 30px color-mix(in srgb, var(--theme-color) 60%, transparent);
}

/* ── Video Duration Badge ── */
.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.3px;
}

/* ── Video Platform Badge ── */
.video-platform-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #fff;
  font-weight: 600;
}

/* ── Video Info ── */
.video-info {
  padding: 16px;
}

.video-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--text);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.video-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.video-views {
  font-size: 12px;
  color: var(--muted);
}

/* ── Video Modal ── */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.open {
  opacity: 1 !important;
  visibility: visible;
  pointer-events: auto;
}

.video-modal-inner {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
  animation: scaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-close svg {
  width: 18px;
  height: 18px;
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Video Modal Backdrop Click ── */
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* ============================================================
   PHOTOS TAB (Masonry)
   ============================================================ */

.photos-grid {
  columns: 3;
  column-gap: 16px;
}

.photo-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.photo-item:hover {
  border-color: var(--theme-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.photo-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
  background: var(--surface-hover);
}

.photo-item:hover img {
  transform: scale(1.03);
}

.photo-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(0, 0, 0, 0.55)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-item:hover::after {
  opacity: 1;
}

/* ── Photo Overlay Actions ── */
.photo-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-item:hover .photo-item-overlay {
  opacity: 1;
}

.photo-zoom-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.2s ease;
}

.photo-zoom-btn:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
  transform: scale(1.1);
}

/* ── Photo Lightbox ── */
.photo-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.photo-lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius);
  object-fit: contain;
  animation: scaleIn 0.3s ease;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  font-size: 18px;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-nav:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================================
   EVENTS TAB
   ============================================================ */

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

.event-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.event-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--theme-color), var(--accent-color));
}

.event-card:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.event-card.past-event {
  opacity: 0.55;
  filter: grayscale(0.3);
}

/* ── Event Date Block ── */
.event-date-block {
  text-align: center;
  min-width: 60px;
  flex-shrink: 0;
}

.event-day {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--theme-color);
  font-family: 'Space Grotesk', sans-serif;
  display: block;
}

.event-month {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 1px;
  display: block;
  margin-top: 4px;
}

.event-year {
  font-size: 11px;
  color: rgba(148, 163, 184, 0.5);
  margin-top: 2px;
  display: block;
}

/* ── Event Info ── */
.event-info {
  flex: 1;
  min-width: 0;
}

.event-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
  line-height: 1.3;
}

.event-venue {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-venue svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.event-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.event-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-time {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
}

.event-ticket-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--theme-color), var(--accent-color));
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.event-ticket-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--theme-color) 35%, transparent);
}

.event-ticket-btn svg {
  width: 14px;
  height: 14px;
}

.event-sold-out {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #EF4444;
  font-size: 13px;
  font-weight: 600;
}

/* ── Events Filter ── */
.events-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.filter-chip {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  outline: none;
}

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

.filter-chip.active {
  background: color-mix(in srgb, var(--theme-color) 20%, transparent);
  border-color: color-mix(in srgb, var(--theme-color) 40%, transparent);
  color: var(--theme-color);
}

/* ============================================================
   CONTACT / BOOKING SECTION
   ============================================================ */

.booking-section {
  padding: 60px 20px;
  max-width: 700px;
  margin: 0 auto;
}

.booking-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--theme-color),
    transparent
  );
}

.booking-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.booking-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
}

/* ============================================================
   PROFILE FOOTER
   ============================================================ */

.profile-footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  margin-top: 40px;
}

.profile-footer a {
  color: var(--theme-color);
  text-decoration: none;
}

.profile-footer a:hover {
  text-decoration: underline;
}

.powered-by {
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.6;
}

/* ============================================================
   RESPONSIVE — PROFILE
   ============================================================ */

@media (max-width: 768px) {
  .profile-hero {
    padding: 0 16px 50px;
  }

  .profile-avatar {
    width: 96px;
    height: 96px;
  }

  .profile-avatar-placeholder {
    width: 96px;
    height: 96px;
    font-size: 34px;
  }

  .profile-hero-stats {
    gap: 20px;
  }

  .hero-stat-value {
    font-size: 18px;
  }

  .tab-btn {
    padding: 14px 14px;
    font-size: 13px;
    gap: 6px;
  }

  .tab-content-area {
    padding: 24px 16px;
  }

  .event-card {
    padding: 18px;
    gap: 16px;
  }

  .event-day {
    font-size: 26px;
  }

  .event-title {
    font-size: 15px;
  }

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

  .photos-grid {
    columns: 2;
    column-gap: 12px;
  }

  .booking-card {
    padding: 24px 20px;
  }

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

  .profile-social-links {
    gap: 8px;
  }

  .social-link {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .profile-display-name {
    font-size: clamp(28px, 10vw, 40px);
  }

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

  .event-card {
    flex-direction: column;
    gap: 16px;
  }

  .event-date-block {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    min-width: auto;
  }

  .event-day {
    font-size: 24px;
  }

  .genre-tag {
    font-size: 11px;
    padding: 5px 12px;
  }

  .tab-btn {
    padding: 12px 10px;
    font-size: 12px;
  }

  .tab-btn .tab-count {
    display: none;
  }

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

  .video-modal-inner {
    aspect-ratio: auto;
    height: 56vw;
  }

  .lightbox-nav {
    width: 36px;
    height: 36px;
  }

  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}
