/* ===============================
   HOME PAGE THEME
=============================== */
.page-home {
  --bg: #000000;
  --panel: #111114;
  --panel-2: #17171b;
  --line: #232328;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --chip: #1b1b20;
  --chip-active: #f4f4f5;
  --chip-active-text: #0a0a0b;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  --radius: 22px;

  color: var(--text);
  background: radial-gradient(circle at top, #000000 0%, var(--bg) 42%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}

.page-home *,
.page-home *::before,
.page-home *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.page-home a {
  color: inherit;
  text-decoration: none;
}

.page-home button,
.page-home input {
  font: inherit;
}

.page-home ::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* ===============================
   APP WRAPPER
=============================== */
.page-home .app {
  max-width: 980px;
  margin: 0 auto;
  min-height: 100vh;
  padding-bottom: 62px;
}

/* ===============================
   TOP BAR
=============================== */
.page-home .top-shell {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: linear-gradient(to bottom, #002b2b, #000000);
  border-bottom: 1px solid #000000;
}

.page-home .topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px 10px;
}

.page-home .brand {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  flex: 0 0 auto;
}

.page-home .brand img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.page-home .search-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.page-home .search-wrap svg {
  width: 18px;
  height: 18px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2;
  flex: 0 0 auto;
}

.page-home .search-wrap input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 15px;
}

.page-home .search-wrap input::placeholder {
  color: var(--muted);
}

.page-home .top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.page-home .icon-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.page-home .icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===============================
   HERO
=============================== */
.page-home .hero-row {
  padding: 12px 14px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-home .hero-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.page-home .hero-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: -1px !important;
}

.page-home .sort-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 13px;
  white-space: nowrap;
}

.page-home .sort-pill svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ===============================
   CHIPS
=============================== */
.page-home .chips {
  display: flex;
  gap: 10px;
  padding: 6px 14px 14px;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.page-home .chips::-webkit-scrollbar {
  display: none;
}

.page-home .chip {
  flex: 0 0 auto;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--chip);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.2s ease;
  user-select: none;
  font-size: 12px !important;
}

.page-home .chip svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.page-home .chip.active {
  background: var(--chip-active);
  color: var(--chip-active-text);
  border-color: transparent;
}

/* ===============================
   CONTENT + GRID
=============================== */
.page-home .content {
  padding: 0 4px 8px;
}

.page-home .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #000;
}

.page-home .card {
  position: relative;
  aspect-ratio: 1 / 1.28;
  overflow: hidden;
  background: #111;
  isolation: isolate;
}

.page-home .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: saturate(1.02) contrast(1.02);
}

.page-home .card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0) 36%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04), transparent 18%);
  z-index: 1;
  pointer-events: none;
}

.page-home .card:hover img {
  transform: scale(1.05);
}

/* ===============================
   CARD BADGES
=============================== */
.page-home .badge-row {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
  pointer-events: none;
}

.page-home .media-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(10, 10, 11, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.page-home .media-badge svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .save-btn {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(10, 10, 11, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.page-home .save-btn svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===============================
   CARD FOOTER
=============================== */
.page-home .card-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
}

.page-home .avatar-badge {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  flex: 0 0 auto;
  background: #222;
}


.page-home .hidden {
  display: none !important;
}

/* ===============================
   EVENT MODAL
=============================== */
.page-home .event-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  isolation: isolate;
}

.page-home .event-modal.active {
  display: block;
}

.page-home .event-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 20, 0.72);
  backdrop-filter: blur(14px);
}

.page-home .event-modal-sheet {
  position: absolute;
  inset: 0;
  min-height: 0;
  background: #f3f5f9;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.18s ease;
  will-change: transform, opacity;
}

.page-home .event-modal.active .event-modal-sheet {
  transform: translateY(0);
  opacity: 1;
}

.page-home .modal-grabber {
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;
}

.page-home .event-hero {
  position: relative;
  height: 420px;
  background: #101522;
  overflow: hidden;
}

.page-home .event-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.page-home .event-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(9, 12, 20, 0.78) 0%, rgba(9, 12, 20, 0.26) 48%, rgba(9, 12, 20, 0.04) 100%);
  z-index: 1;
}

.page-home .hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(to top, rgb(59, 59, 59) 0%, rgba(243, 245, 249, 0) 100%);
  z-index: 2;
}

.page-home .hero-topbar {
  position: absolute;
  top: 18px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  z-index: 4;
}

.page-home .hero-icon-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.page-home .hero-icon-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .follow-btn {
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: none;
  background: #0f172a;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-home .follow-btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.page-home .follow-btn.is-following {
  background: #e5e7eb;
  color: #111;
}

.page-home .event-card {
  position: relative;
  z-index: 5;
  margin: -90px 0 0;
  background: #fff;
  border-top: 1px solid rgba(13, 18, 28, 0.08);
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.12);
  padding: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.page-home .event-card-scroll {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}

.page-home .event-card-inner {
  padding: 16px;
  padding-bottom: 120px;
}

.page-home .organizer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.page-home .organizer-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.page-home .organizer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
  background: #e8ecf3;
  border: 2px solid #fff;
  box-shadow: 0 8px 18px rgba(14, 20, 34, 0.1);
}

.page-home .organizer-meta {
  min-width: 0;
}

.page-home .organizer-name {
  font-size: 14px;
  font-weight: 850;
  color: #101522;
  line-height: 1.1;
}

.page-home .organizer-role {
  font-size: 11px;
  color: #7a8191;
  font-weight: 600;
  margin-top: 3px;
}

.page-home .organizer-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.page-home .mini-action {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #f1f4f8;
  color: #1a2130;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.page-home .mini-action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.page-home .title-copy {
  min-width: 0;
  flex: 1;
}

.page-home .modal-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #012900;
  max-width: 29ch !important;
}

.page-home .location-row,
.page-home .rating-row {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  font-size: 12px;
  color: #556070;
}

.page-home .rating-row {
  margin-top: 7px;
  font-weight: 700;
}

.page-home .location-row svg,
.page-home .rating-row svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .rating-muted {
  font-weight: 600;
  color: #8a91a1;
}

.page-home .fav-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
   background: transparent;
  border: 0;
  padding: 0;
  display: inline-grid;
  place-items: center;
  color: #9ca3af;
  transition: transform 0.18s ease, color 0.18s ease;
  display: grid;
  box-shadow: 0 12px 24px rgba(16, 162, 106, 0.26);
  cursor: pointer;
  flex-shrink: 0;
}

.page-home .fav-btn svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: fill 0.18s ease, stroke 0.18s ease, transform 0.18s ease;
}

.fav-btn.is-active {
  color: #ef4444;
}

.fav-btn.is-active svg {
  fill: currentColor;
  stroke: currentColor;
}

.fav-btn:active {
  transform: scale(0.95);
}

.fav-btn:disabled {
  opacity: 0.6;
  pointer-events: none;
}

.page-home .detail-section {
  margin-top: 16px;
}

.page-home .section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.page-home .section-head.compact {
  margin-bottom: 8px;
}

.page-home .section-head h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 850;
  color: #111827;
  letter-spacing: -0.02em;
}

.page-home .section-head span {
  font-size: 12px;
  color: #7b8192;
  font-weight: 700;
}

.page-home .feature-box {
  background: #fff;
  border-radius: 20px;
  padding: 12px;
  border: 1px solid rgba(13, 18, 28, 0.08);
  box-shadow: 0 10px 30px rgba(14, 20, 34, 0.04);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 8px;
}

.page-home .feature-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(13, 18, 28, 0.05);
  min-width: 0;
}

.page-home .feature-ico {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: #eef3ff;
  color: #1849e6;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.page-home .feature-ico svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .feature-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.page-home .feature-text strong {
  font-size: 12px;
  font-weight: 850;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .feature-text span {
  margin-top: 3px;
  font-size: 10px;
  color: #7a8191;
  font-weight: 600;
}

.page-home .desc-section {
  margin-top: 16px;
}

.page-home .event-description {
  margin: 0;
  color: #475062;
  font-size: 14px;
  line-height: 1.75;
}

/* ===============================
   FIXED BOTTOM ROW
=============================== */
.page-home .bottom-row {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px calc(14px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-top: 1px solid rgba(13, 18, 28, 0.06);
  z-index: 9999;
}

.page-home .price-block {
  flex: 1;
  min-width: 0;
}

.page-home .price-label {
  font-size: 11px;
  color: #8a91a1;
  font-weight: 700;
}

.page-home .price-value {
  font-size: 18px;
  color: #0f1728;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.page-home .book-btn {
  border: 0;
  border-radius: 14px;
  padding: 10px 12px;
  background: linear-gradient(135deg, #004211 0%, #0b8d5a 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(16, 162, 106, 0.25);
  cursor: pointer;
  min-width: 140px;
}

/* ===============================
   SKELETON
=============================== */
.page-home .skeleton {
  background: linear-gradient(90deg, #252525, #313131, #1a1a1a);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}

/* ===============================
   CREATE MODAL
=============================== */
.page-home .create-modal {
  position: fixed;
  inset: 0;
  z-index: 2000 !important;
  pointer-events: none;
}

.page-home .create-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.page-home .create-sheet {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #0f172a;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 14px 16px 20px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
}

.page-home .create-handle {
  width: 40px;
  height: 4px;
  background: #334155;
  border-radius: 999px;
  margin: 0 auto 14px;
}

.page-home .create-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  text-align: center;
}

.page-home .create-item {
  background: transparent;
  border: none;
  color: #e5e7eb;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.page-home .create-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #006356, #00a896);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .create-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.page-home .create-item:hover .create-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-home .create-modal.active {
  pointer-events: auto;
}

.page-home .create-modal.active .create-backdrop {
  opacity: 1;
}

.page-home .create-modal.active .create-sheet {
  transform: translateY(0);
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 700px) {
  .page-home .app {
    max-width: 100%;
  }

  .page-home .hero-title {
    font-size: 17px !important;
  }
}

@media (max-width: 420px) {
  .page-home .topbar {
    gap: 10px;
    padding-inline: 10px;
  }

  .page-home .hero-row,
  .page-home .chips {
    padding-inline: 10px;
  }

  .page-home .content {
    padding-inline: 0;
  }

  .page-home .card-footer {
    padding: 8px;
  }

  .page-home .grid {
    gap: 1px;
  }

  .page-home .search-wrap {
    height: 44px;
  }

  .page-home .brand,
  .page-home .icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .page-home .nav-item {
    width: 42px;
    height: 42px;
  }
}

.shm-copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);

  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);

  color: #fff; /* 🔥 IMPORTANT */
  cursor: pointer;

  transition: all 0.2s ease;
}

.shm-copy-btn:hover {
  background: rgba(255,255,255,0.08);
  transform: scale(1.05);
}

.shm-copy-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor; /* 🔥 THIS FIXES VISIBILITY */
} 


.more-section {
  margin-top: 28px;
}

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

.more-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.more-card:hover {
  transform: translateY(-4px);
  opacity: 0.95;
}

.more-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}

.more-card .more-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.more-card .more-title {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

/* TABS */
.event-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.tab {
  flex: 1;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #f3f4f6;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
   color: #000000;
}

.tab.active {
  background: #111;
  color: #fff;
  border-color: transparent;
}

/* PANELS */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* GOING SECTION */
.going-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.going-avatars {
  display: flex;
}

.going-avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -8px;
}

.going-avatars img:first-child {
  margin-left: 0;
}

.going-text {
  font-size: 12px;
  font-weight: 700;
  color: #555;
}

/* TICKETS */
.tickets-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ticket-card {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ticket-info strong {
  color: #000000;
  font-size: 13px;
}

.ticket-info span {
  font-size: 11px;
  color: #000000;
}

.ticket-price {
  color: #0d9900;
  font-weight: 800;
  font-size: 13px;
}

.date-row {
  color: #000;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.85;
  font-size: 14px;
}

.date-row svg {
  color: #000;
  width: 16px;
  height: 16px;
  fill: currentColor;
}