:root {
  --bg: #060606;
  --bg-soft: #111111;
  --panel: rgba(17, 17, 17, 0.88);
  --card: #121212;
  --text: #f7f5ef;
  --muted: #c8c1b4;
  --gold: #d4a436;
  --gold-soft: #f2d38c;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 26px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100% - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(212, 164, 54, 0.18), transparent 26%),
    radial-gradient(circle at bottom left, rgba(212, 164, 54, 0.12), transparent 24%),
    linear-gradient(180deg, #060606 0%, #0a0a0a 42%, #101010 100%);
  min-height: 100vh;
}

img,
video {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  height: auto;
  width: auto;
  object-fit: contain;
}

/* Optimize avatar images for memory efficiency */
img[src*="avatars"],
img[src*="uploads"],
.dashboard-friend-detail-head img,
.friend-list-main img,
.friend-request-main img,
.content-viewer-avatar {
  max-width: 200px;
  max-height: 200px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}

/* Smaller avatar for friend list items */
.friend-list-main img {
  width: 48px;
  height: 48px;
  min-width: 48px;
}

/* Compact friend request avatars */
.friend-request-main img {
  width: 40px;
  height: 40px;
  min-width: 40px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.password-toggle-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.password-toggle-wrap input {
  width: 100%;
  padding-right: 5.5rem;
}

.password-toggle-btn {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.2rem 0.3rem;
}

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

main {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 88%, transparent 100%);
  pointer-events: none;
  opacity: 0.22;
  z-index: -1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid rgba(212, 164, 54, 0.4);
  border-radius: 999px;
  color: var(--gold-soft);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  background: rgba(212, 164, 54, 0.09);
}

.section {
  padding: 5.5rem 0;
}

.section-tight {
  padding: 4rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-head h2,
.page-hero h1,
.hero-copy h1,
.cta-banner h2,
.split-copy h2,
.story-copy h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  max-width: 12ch;
}

.section-head p,
.hero-copy p,
.page-hero p,
.split-copy p,
.story-copy p,
.card p,
.metric-card p,
.timeline-item p,
.package p,
.footer-column p,
.footer-column a,
.detail-list li,
.contact-card p,
.hub-card p,
.article-card p,
.video-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  font-weight: 700;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #f2d38c 0%, #c38a1b 100%);
  color: #000000;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
  color: #e0b02b;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(212, 164, 54, 0.45);
  color: var(--gold-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(6, 6, 6, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  background: white;
  padding: 0.2rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  letter-spacing: 0.02em;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.88rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  font-weight: 600;
}

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

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.6rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex: 1;
}

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.88) 0%, rgba(6, 6, 6, 0.58) 44%, rgba(6, 6, 6, 0.7) 100%),
    linear-gradient(180deg, rgba(6, 6, 6, 0.25) 0%, rgba(6, 6, 6, 0.8) 100%);
  z-index: -1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-grid,
.page-hero-grid,
.split,
.story-block,
.profile-wrap,
.artist-detail-grid,
.booking-layout {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  padding: 4rem 0;
}

.page-hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.split,
.story-block {
  grid-template-columns: 1fr 1fr;
}

.profile-wrap {
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
}

.artist-detail-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.booking-layout {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.hero-copy h1 {
  font-size: clamp(3.25rem, 8vw, 7.2rem);
  max-width: 8ch;
  margin: 1rem 0 1rem;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  margin: 1rem 0;
}

.hero-copy p {
  max-width: 38rem;
  font-size: 1.08rem;
}

.hero-card,
.card,
.metric-card,
.package,
.contact-card,
.hub-card,
.article-card,
.timeline-card,
.testimonial,
.artist-detail-card,
.booking-card,
.video-card,
.leaderboard,
.spotlight,
.service-card,
.profile-panel,
.event-card {
  overflow: hidden;
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(15, 15, 15, 0.82);
}

.hero-card img,
.artist-card img,
.article-card img,
.video-card video,
.video-card img,
.gallery-grid img,
.split-media img,
.split-media video,
.story-media img,
.page-hero-media img,
.page-hero-media video,
.profile-wrap img,
.artist-detail-card video,
.artist-detail-card img,
.spotlight img {
  width: 100%;
  border-radius: calc(var(--radius) - 10px);
  object-fit: cover;
}

.hero-card img,
.profile-wrap img {
  aspect-ratio: 4 / 5;
  margin-bottom: 1rem;
}

.split-media img,
.split-media video,
.story-media img,
.page-hero-media img,
.page-hero-media video {
  min-height: 420px;
  box-shadow: var(--shadow);
}

.story-media img {
  min-height: 480px;
}

.card-grid,
.stats-grid,
.metrics-grid,
.package-grid,
.article-grid,
.info-grid,
.hub-grid,
.service-grid,
.testimonial-grid,
.gallery-grid,
.artist-grid,
.video-grid,
.event-grid {
  display: grid;
  gap: 1.2rem;
}

.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.artist-grid,
.stats-grid,
.metrics-grid,
.event-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.video-grid,
.service-grid,
.package-grid,
.testimonial-grid,
.article-grid,
.info-grid,
.hub-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.icon-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--gold-soft);
  background: rgba(212, 164, 54, 0.15);
  border: 1px solid rgba(212, 164, 54, 0.25);
  font-size: 1.2rem;
}

.card h3,
.split-copy h2,
.story-copy h2,
.video-copy h3,
.article-card h3,
.package h3,
.service-card h3,
.contact-card h3,
.hub-card h3 {
  margin: 0 0 0.8rem;
  font-family: "Syne", sans-serif;
}

.artist-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.artist-card img {
  aspect-ratio: 4 / 5;
  margin-bottom: 1rem;
}

.artist-meta,
.inline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--gold-soft);
  font-size: 0.9rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0 2rem;
}

.filter-btn {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
}

.filter-btn.active {
  border-color: rgba(212, 164, 54, 0.5);
  background: rgba(212, 164, 54, 0.13);
  color: var(--gold-soft);
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.detail-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.stat-value {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold-soft);
  font-size: 1.8rem;
  font-family: "Syne", sans-serif;
}

.video-card video,
.video-card img {
  aspect-ratio: 16 / 10;
  margin-bottom: 1rem;
}

.video-copy {
  display: grid;
  gap: 0.5rem;
}

.pricing-badge {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(212, 164, 54, 0.14);
  color: var(--gold-soft);
  font-size: 0.86rem;
  margin-bottom: 1rem;
}

.cta-banner {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 164, 54, 0.25);
  background:
    linear-gradient(120deg, rgba(212, 164, 54, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02)),
    #121212;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.cta-banner h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.page-hero {
  padding: 5rem 0 3rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(15, 15, 15, 0.82);
}

.timeline-year {
  color: var(--gold-soft);
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.profile-stats div,
.leader-item,
.day-btn,
.time-btn {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.calendar-strip,
.time-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 0.75rem;
}

.day-btn,
.time-btn {
  color: var(--text);
  cursor: pointer;
  text-align: center;
}

.day-btn.active,
.time-btn.active {
  border-color: rgba(212, 164, 54, 0.52);
  background: rgba(212, 164, 54, 0.16);
  color: var(--gold-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.auth-form {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: var(--text);
}

.form-group input {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.error-message {
  color: #feb2b2;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.auth-alternatives {
  text-align: center;
  margin-top: 1rem;
}

.auth-alternatives p {
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.google-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.auth-inline-link {
  margin-top: 0.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold-soft);
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.auth-inline-form {
  margin-top: 0.9rem;
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(3, 5, 2, 0.03);
  color: rgba(170, 162, 45, 0.92);
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-response {
  margin: 1rem 0 0;
  min-height: 1.5rem;
  color: var(--muted);
}

.form-response.is-success {
  color: #9ae6b4;
}

.form-response.is-error {
  color: #feb2b2;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.leaderboard ol,
.footer-links,
.social-links,
.newsletter {
  display: grid;
  gap: 0.75rem;
}

.leaderboard ol {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.leader-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(4, 4, 4, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 1.2rem;
  padding: 4rem 0 1.2rem;
}

.footer-column h3 {
  margin-top: 0;
  font-family: "Syne", sans-serif;
}

.newsletter input {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.auth-layout,
.dashboard-layout,
.feed-grid {
  display: grid;
  gap: 1.2rem;
}

.auth-layout,
.dashboard-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-layout-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 620px;
}

.auth-card,
.feed-card,
.dashboard-profile-card,
.gate-card {
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(15, 15, 15, 0.82);
}

.auth-card h2,
.feed-card h3,
.dashboard-profile-card h2,
.gate-card h2 {
  margin-top: 0;
  font-family: "Syne", sans-serif;
}

.google-btn {
  width: 100%;
  margin-top: 0.9rem;
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1rem 0;
  color: var(--muted);
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.dashboard-profile-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.2rem;
  align-items: center;
}

.dashboard-profile-card .dashboard-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Search Styles */
.search-container {
  max-width: 800px;
  margin: 0 auto;
}

.search-input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  align-items: center;
}

.search-input {
  flex: 1;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 1rem;
}

.search-input:focus {
  outline: none;
  border-color: rgba(212, 164, 54, 0.5);
  box-shadow: 0 0 0 2px rgba(212, 164, 54, 0.1);
}

.search-select {
  padding: 1rem 1.2rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(155, 146, 17, 0.92);
  font-size: 1rem;
  min-width: 120px;
}

.search-select:focus {
  outline: none;
  border-color: rgba(212, 164, 54, 0.5);
}

.search-results {
  display: grid;
  gap: 1rem;
}

.search-result-item {
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(15, 15, 15, 0.82);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.25s ease;
}

.search-result-item:hover {
  border-color: rgba(212, 164, 54, 0.3);
}

.search-result-avatar {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.1);
}

.search-result-content {
  flex: 1;
  min-width: 0;
}

.search-result-content h4 {
  margin: 0 0 0.3rem 0;
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  color: var(--text);
}

.search-result-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.search-result-meta {
  color: var(--gold-soft);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

.search-result-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.btn-small {
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.friend-request-sent {
  background: rgba(154, 230, 180, 0.1);
  border-color: rgba(154, 230, 180, 0.3);
  color: #9ae6b4;
  cursor: default;
}

.friend-request-sent:hover {
  transform: none;
}

.dashboard-friend-stats,
.dashboard-friend-columns {
  display: grid;
  gap: 1rem;
}

.dashboard-friend-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.friend-stat-card,
.chatroom-room-button,
.chat-message-card,
.friend-request-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.friend-stat-card {
  padding: 1rem;
  text-align: center;
}

.friend-stat-card strong {
  display: block;
  font-size: 1.5rem;
  font-family: "Syne", sans-serif;
}

.friend-stat-card span,
.dashboard-empty-note,
.chatroom-room-button span,
.chatroom-room-button small,
.chatroom-topic-line,
.chatroom-room-meta span,
.chat-message-author span,
.friend-request-main span {
  color: var(--muted);
}

.dashboard-friend-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.dashboard-friend-column h3 {
  margin-bottom: 0.8rem;
}

.friend-request-card {
  padding: 0.9rem 1rem;
  display: grid;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.friend-request-card-compact {
  padding: 0.8rem 1rem;
}

.friend-request-main {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.friend-request-main img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
}

.friend-request-actions,
.chatroom-message-form-actions,
.chatroom-room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chatroom-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.2rem;
}

.chatroom-sidebar,
.chatroom-main {
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(255, 246, 121, 0.82)82)2)2);
}

.chatroom-sidebar-head h3,
.chatroom-main-head h3 {
  margin: 0.3rem 0 0;
  color: #e09770;
}

.chatroom-room-list,
.chatroom-message-list {
  display: grid;
  gap: 0.85rem;
}

.chatroom-room-button {
  width: 100%;
  padding: 1rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.chatroom-room-button strong,
.chatroom-room-button span,
.chatroom-room-button small {
  display: block;
  color: var(--text); 
}

.chatroom-room-button.is-active,
.chatroom-room-button:hover {
  border-color: rgba(212, 164, 54, 0.35);
  transform: translateY(-1px);
}

.chatroom-room-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.chatroom-main {
  display: grid;
  gap: 1rem;
}

.chatroom-main-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.chatroom-topic-line {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.chatroom-message-list {
  max-height: 620px;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.chat-message-card {
  padding: 1rem;
}

.chat-message-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
}

.chat-message-author {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.chat-message-author img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
}

.chat-message-text {
  margin: 0.9rem 0;
  line-height: 1.6;
}

.chatroom-message-form textarea {
  width: 100%;
  min-height: 110px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.chatroom-message-form textarea:focus {
  outline: none;
  border-color: rgba(212, 164, 54, 0.5);
}

/* Content Viewer Modal */
.content-viewer-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.content-viewer-modal[hidden] {
  display: none !important;
  visibility: hidden !important;
}

.content-viewer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(133, 127, 56, 0.9) 0.9);
  animation: fadeIn 0.3s ease;
}

.content-viewer-container {
  position: relative;
  z-index: 101;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.5rem;
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid rgba(212, 164, 54, 0.25);
  border-radius: var(--radius);
  padding: 1.5rem;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
}

.content-viewer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
  border-radius: 8px;
  display: grid;
  place-items: center;
  transition: background 0.25s ease;
  z-index: 102;
}

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

.content-viewer-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  min-height: 400px;
}

.content-viewer-media video,
.content-viewer-media audio,
.content-viewer-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.content-viewer-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}

.content-viewer-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.content-viewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.content-viewer-header strong {
  display: block;
  font-family: "Syne", sans-serif;
}

.content-viewer-header span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.content-viewer-title {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
}

.content-viewer-description {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.content-viewer-stats {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.content-viewer-views {
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 0.9rem;
}

.content-viewer-reactions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.content-viewer-link {
  width: fit-content;
}

.content-viewer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.content-viewer-empty {
  padding: 2rem;
  text-align: center;
  color: var(--muted);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@media (max-width: 768px) {
  .dashboard-friend-stats,
  .dashboard-friend-columns,
  .chatroom-shell {
    grid-template-columns: 1fr;
  }

  .content-viewer-container {
    grid-template-columns: 1fr;
    max-height: 100vh;
    padding: 1rem;
  }

  .content-viewer-media {
    min-height: 300px;
  }

  .feed-head {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .feed-source-badge {
    margin-left: 0;
  }

  .chatroom-main-head,
  .chat-message-head {
    flex-direction: column;
  }
}

.dashboard-profile-card .dashboard-actions .btn {
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
}

.dashboard-profile-card img,
.feed-head img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.dashboard-panel {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

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

.feed-card video,
.feed-card img,
.feed-audio {
  width: 100%;
  margin: 1rem 0;
}

.feed-card video,
.feed-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: calc(var(--radius) - 10px);
}

.feed-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.feed-head img {
  width: 64px;
  border-radius: 18px;
}

.feed-head strong {
  display: block;
}

.feed-head span,
.audio-placeholder span {
  color: var(--muted);
}

.feed-source-badge {
  margin-left: auto;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 164, 54, 0.25);
  background: rgba(212, 164, 54, 0.1);
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.feed-head .view-count {
  color: var(--gold-soft);
  font-weight: 600;
}

.audio-placeholder {
  display: grid;
  gap: 0.25rem;
  padding: 1.2rem;
  margin: 1rem 0;
  border-radius: 22px;
  border: 1px dashed rgba(212, 164, 54, 0.35);
  background: rgba(212, 164, 54, 0.08);
}

.media-stack {
  display: grid;
  gap: 0.85rem;
}

.media-preview-button {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.feed-audio {
  border-radius: 18px;
  filter: sepia(0.2) saturate(0.9);
}

.media-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 164, 54, 0.35);
  background: rgba(212, 164, 54, 0.1);
  color: var(--gold-soft);
  font-weight: 700;
}

.feed-card-footer {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.feed-card-actions,
.reaction-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.reaction-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 600;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.reaction-chip:hover {
  border-color: rgba(212, 164, 54, 0.35);
  transform: translateY(-1px);
}

.reaction-chip.is-active {
  border-color: rgba(212, 164, 54, 0.55);
  background: rgba(212, 164, 54, 0.15);
  color: var(--gold-soft);
}

.reaction-chip:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.reaction-chip-emoji {
  font-size: 1rem;
  line-height: 1;
}

.reaction-chip-count {
  min-width: 1ch;
}

.gate-card {
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.8s ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal:nth-child(3) {
  animation-delay: 0.16s;
}

.reveal:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .page-hero-grid,
  .split,
  .story-block,
  .profile-wrap,
  .artist-detail-grid,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .artist-grid,
  .stats-grid,
  .metrics-grid,
  .event-grid,
  .video-grid,
  .service-grid,
  .package-grid,
  .testimonial-grid,
  .article-grid,
  .info-grid,
  .hub-grid,
  .gallery-grid,
  .footer-grid,
  .auth-layout,
  .dashboard-layout,
  .feed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-panel {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.8rem);
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(3, 3, 3, 0.96);
    display: none;
    box-shadow: var(--shadow);
  }

  .nav-panel.open {
    display: grid;
    gap: 1rem;
  }

  .nav-links,
  .nav-actions,
  .cta-banner,
  .section-head,
  .footer-bottom {
    flex-direction: column;
    align-items: start;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section,
  .page-hero {
    padding: 4rem 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 3rem 0;
  }

  .card-grid,
  .artist-grid,
  .stats-grid,
  .metrics-grid,
  .video-grid,
  .service-grid,
  .package-grid,
  .testimonial-grid,
  .article-grid,
  .info-grid,
  .hub-grid,
  .gallery-grid,
  .event-grid,
  .footer-grid,
  .form-grid,
  .profile-stats,
  .auth-layout,
  .dashboard-layout,
  .feed-grid,
  .dashboard-profile-card {
    grid-template-columns: 1fr;
  }

  .artist-strip {
    grid-auto-columns: minmax(240px, 85vw);
  }

  .brand-text span {
    display: none;
  }
}

.street-2026-page {
  --street-bg: #0a0a0a;
  --street-gold: #ffd700;
  --street-purple: #6a0dad;
  --street-white: #f8f5ff;
  --street-grey: #d7d2dc;
}

.street-hero {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 5rem;
  background:
    radial-gradient(circle at top left, rgba(106, 13, 173, 0.38), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 215, 0, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(10, 10, 10, 0.96), rgba(17, 7, 26, 0.92));
}

.street-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.8), rgba(106, 13, 173, 0.26)),
    url("images/481210990_970852808472361_3295184977693896008_n.jpg") center/cover;
  opacity: 0.24;
  transform: scale(1.05);
}

.street-hero-content,
.street-intro-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
}

.street-hero-copy,
.street-countdown-card,
.street-preview-card,
.street-intro-copy,
.street-form-shell,
.street-success-dialog {
  position: relative;
  z-index: 0.5;
}

.street-hero-copy h1,
.street-form-top h2,
.street-intro-copy h2,
.street-success-dialog h2,
.street-countdown-card h2 {
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.04em;
}

.street-hero-copy h1 {
  margin: 1rem 0 0.75rem;
  max-width: 10ch;
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  line-height: 0.95;
}

.street-tagline {
  margin: 0 0 0.8rem;
  color: var(--street-gold);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.street-hero-text,
.street-intro-copy p,
.street-highlight-card p,
.street-countdown-card p,
.street-success-dialog p,
.street-rules-box,
.street-rules-indicator,
.street-step span {
  color: var(--street-grey);
  font-family: "Open Sans", sans-serif;
}

.street-countdown-card {
  padding: 1.6rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.78);
  box-shadow: var(--shadow);
}

.street-countdown-card h2 {
  margin: 1rem 0 0.7rem;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.street-countdown-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.street-countdown-grid div,
.street-step,
.street-highlight-card,
.street-upload-card,
.street-rules-box,
.street-check,
.street-success-dialog .street-application-id {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.street-countdown-grid div {
  padding: 1rem;
  border-radius: 22px;
  text-align: center;
}

.street-countdown-grid strong {
  display: block;
  color: var(--street-gold);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
}

.street-countdown-grid span {
  color: var(--street-white);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.street-preview-card {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.street-preview-card video,
.street-preview-card img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.street-intro-copy h2,
.street-form-top h2 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.street-highlight-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.street-highlight-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: 24px;
}

.street-highlight-card h3,
.street-section-head h3,
.street-success-dialog .street-application-id strong,
.street-step strong {
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.street-highlight-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(106, 13, 173, 0.94), rgba(255, 215, 0, 0.88));
  color: #120718;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

.street-form-shell {
  padding: 1.5rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(13, 10, 18, 0.88);
  box-shadow: var(--shadow);
}

.street-form-top {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}

.street-step-indicator {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.street-step {
  padding: 1rem;
  border-radius: 20px;
}

.street-step.is-active {
  border-color: rgba(255, 215, 0, 0.45);
  background:
    linear-gradient(135deg, rgba(106, 13, 173, 0.28), rgba(255, 215, 0, 0.12)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.1) inset;
}

.street-step.is-complete {
  border-color: rgba(255, 215, 0, 0.35);
}

.street-step span {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.street-step strong {
  color: var(--street-white);
  font-size: 1rem;
}

.street-form-card {
  display: grid;
  gap: 1.3rem;
}

.street-form-section {
  padding: 1.3rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.street-section-head {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.street-form-grid {
  gap: 1rem;
}

.street-form-grid .form-field input,
.street-form-grid .form-field select,
.street-form-grid .form-field textarea {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 215, 0, 0.5);
}

.street-form-grid .form-field span,
.street-toggle-group span,
.street-check span,
.street-dropzone span,
.street-dropzone small,
.street-progress-meta {
  color: var(--street-white);
}

.street-toggle-group {
  display: inline-flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.street-toggle-option {
  position: relative;
}

.street-toggle-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.street-toggle-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.street-toggle-option input:checked + span {
  border-color: rgba(255, 215, 0, 0.45);
  background: linear-gradient(135deg, rgba(106, 13, 173, 0.34), rgba(255, 215, 0, 0.15));
  color: var(--street-gold);
}

.street-upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.street-upload-card {
  padding: 1rem;
  border-radius: 24px;
}

.street-dropzone {
  min-height: 220px;
  display: grid;
  place-items: center;
  gap: 0.55rem;
  padding: 1.3rem;
  border-radius: 24px;
  border: 1px dashed rgba(255, 215, 0, 0.35);
  background:
    linear-gradient(135deg, rgba(106, 13, 173, 0.18), rgba(255, 215, 0, 0.07)),
    rgba(255, 255, 255, 0.02);
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.street-dropzone:hover,
.street-dropzone.is-dragover {
  transform: translateY(-2px);
  border-color: rgba(255, 215, 0, 0.55);
  background:
    linear-gradient(135deg, rgba(106, 13, 173, 0.25), rgba(255, 215, 0, 0.13)),
    rgba(255, 255, 255, 0.03);
}

.street-dropzone strong {
  font-family: "Poppins", sans-serif;
  color: var(--street-gold);
  font-size: 1.1rem;
}

.street-progress-wrap {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.street-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.street-progress-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.street-progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6a0dad, #ffd700);
  transition: width 0.15s linear;
}

.street-rules-box {
  max-height: 260px;
  overflow-y: auto;
  padding: 1rem 1rem 1rem 1.2rem;
  border-radius: 22px;
  scrollbar-width: thin;
}

.street-rules-box ol {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.85rem;
}

.street-rules-indicator {
  margin-top: 0.7rem;
  font-size: 0.92rem;
}

.street-rules-indicator.is-complete {
  color: var(--street-gold);
}

.street-agreement-section {
  display: grid;
  gap: 0.8rem;
}

.street-check {
  display: flex;
  align-items: start;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 20px;
}

.street-check input {
  margin-top: 0.25rem;
  accent-color: var(--street-gold);
}

.street-submit-wrap {
  text-align: center;
}

.street-submit-btn {
  min-width: min(100%, 360px);
  padding: 1.1rem 1.6rem;
  font-size: 1rem;
  background: linear-gradient(90deg, #6a0dad, #ffd700);
  color: #14091e;
  box-shadow: 0 18px 50px rgba(106, 13, 173, 0.24);
}

.street-submit-btn:hover {
  box-shadow: 0 18px 60px rgba(255, 215, 0, 0.18);
}

.street-floating-apply {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #6a0dad, #ffd700);
  color: #14091e;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
}

.street-success-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
}

.street-success-modal[hidden] {
  display: none !important;
  visibility: hidden !important;
}

.street-success-dialog {
  width: min(540px, 100%);
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(106, 13, 173, 0.18), rgba(255, 215, 0, 0.08)),
    rgba(12, 11, 16, 0.95);
  box-shadow: var(--shadow);
  text-align: center;
}

.street-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
}

.street-application-id {
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
  margin: 1rem 0 1.3rem;
  border-radius: 22px;
}

.street-application-id span {
  color: var(--street-grey);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
}

.street-application-id strong {
  color: var(--street-gold);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

@media (max-width: 1100px) {
  .street-hero-content,
  .street-intro-grid,
  .street-upload-grid {
    grid-template-columns: 1fr;
  }

  .street-step-indicator {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .street-hero {
    padding: 5rem 0 4rem;
  }

  .street-form-shell,
  .street-success-dialog {
    padding: 1.2rem;
  }

  .street-step-indicator,
  .street-countdown-grid {
    grid-template-columns: 1fr;
  }

  .street-preview-card video,
  .street-preview-card img {
    min-height: 320px;
  }

  .street-dropzone {
    min-height: 180px;
  }

  .street-floating-apply {
    right: 0.8rem;
    left: 0.8rem;
    bottom: 0.8rem;
    text-align: center;
  }
}

.countdown-container {
  text-align: center;
  color: #eaf8aa;
  padding: 30px;
  background: rgba(255, 4, 4, 0.25);
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  color: blanchedalmonds;
  
}

#countdown div {
  background: #111;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

#countdown span {
  font-size: 2rem;
  font-weight: bold;
  color: #FFD700;
}

#countdown p {
  margin: 5px 0 0;
  font-size: 0.9rem;
}

.admin-hero-card {
  background: linear-gradient(145deg, rgba(212, 164, 54, 0.16), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(212, 164, 54, 0.22);
  border-radius: 28px;
  padding: 2rem;
}

.admin-mini-stats {
  display: grid;
  gap: 1rem;
}

.admin-mini-stats div,
.admin-metric-card,
.admin-list-card,
.admin-table-row {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.admin-mini-stats div {
  padding: 1rem 1.2rem;
}

.admin-mini-stats strong,
.admin-metric-card span {
  display: block;
  color: var(--gold-soft);
  margin-bottom: 0.35rem;
}

.admin-mini-stats span,
.admin-metric-card strong {
  font-size: 1.8rem;
  font-weight: 700;
}

.admin-shell {
  display: grid;
  gap: 1.5rem;
}

.admin-shell-top,
.admin-section-head,
.admin-list-card,
.admin-list-actions,
.admin-table-row {
  display: flex;
  align-items: center;
}

.admin-shell-top,
.admin-section-head,
.admin-list-card,
.admin-table-row {
  justify-content: space-between;
  gap: 1rem;
}

.admin-metric-grid,
.admin-grid {
  display: grid;
  gap: 1.25rem;
}

.admin-metric-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.admin-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.admin-grid-wide {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.admin-metric-card {
  padding: 1.35rem;
}

.admin-table-list,
.admin-list-wrap {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.admin-table-row,
.admin-list-card {
  padding: 1rem 1.1rem;
}

.admin-table-row {
  align-items: flex-start;
  flex-direction: column;
}

.admin-list-card {
  align-items: flex-start;
}

.admin-list-card p,
.admin-empty-state {
  margin: 0.35rem 0;
}

.admin-list-card span,
.admin-table-row span,
.admin-empty-state {
  color: rgba(255, 255, 255, 0.72);
}

.admin-list-actions {
  gap: 0.6rem;
  flex-wrap: wrap;
}

.admin-login-form {
  margin-top: 1rem;
}

@media (max-width: 720px) {
  .admin-shell-top,
  .admin-section-head,
  .admin-list-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
