/* ══════════════════════════════════════════
   WPSA 2026 - Global Stylesheet
   Billennium Divas · Deep Plum · Gold
   ══════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap");

/* ── TOKENS ── */
:root {
  --plum-950: #0e0115;
  --plum-900: #160320;
  --plum-800: #1f062f;
  --plum-700: #2a0940;
  --plum-600: #380c55;
  --gold: #c9952a;
  --gold-lt: rgba(201, 149, 42, 0.15);
  --gold-md: rgba(201, 149, 42, 0.38);
  --gold-hi: #e2aa40;
  --rose: #c96878;
  --rose-lt: rgba(201, 104, 120, 0.15);
  --white: #fdf8f2;
  --cream: #f0dfc6;
  --txt: #e8d8c8;
  --txt2: #c0a898;
  --txt3: #906878;
  --txt4: #604858;
  --green: #4cab82;
  --red: #d94545;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow: 0 6px 32px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.65);
  --r: 4px;
  --r-lg: 8px;
  --tr: 0.2s ease;
  --max-w: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-size-adjust: 100%;
}
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--plum-900);
  color: var(--txt);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: var(--gold);
  text-decoration: none;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
}
input,
select,
textarea {
  font-family: inherit;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--plum-800);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-md);
  border-radius: 3px;
}

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-md {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── TYPOGRAPHY ── */
.playfair {
  font-family: "Playfair Display", Georgia, serif;
}

h1,
.h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h2,
.h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
}
h3,
.h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
}
h4 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--txt2);
}
small {
  font-size: 0.8125rem;
}

.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

/* ── SECTION WRAPPER ── */
.section {
  padding: clamp(48px, 8vw, 96px) 0;
  width: 100%;
}
.section + .section {
  border-top: 1px solid var(--gold-lt);
}

.section-header {
  margin-bottom: clamp(24px, 4vw, 40px);
}
.section-header p {
  max-width: 640px;
  margin-top: 12px;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-md) 25%,
    var(--gold-md) 75%,
    transparent
  );
}

/* ── ORNAMENT ── */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.orn-line {
  height: 1px;
  width: 52px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.orn-line.r {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.orn-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.orn-sm .orn-line {
  width: 30px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  padding: 14px 32px;
  transition: all var(--tr);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-hi));
  color: var(--plum-900);
  box-shadow: 0 2px 16px rgba(201, 149, 42, 0.35);
}
.btn-gold:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(201, 149, 42, 0.5);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  position: relative;
  overflow: hidden;
}
.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.btn-outline:hover::before {
  transform: scaleX(1);
}
.btn-outline:hover {
  color: var(--plum-900);
}
.btn-outline > * {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--txt2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--txt);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.75rem;
}
.btn-lg {
  padding: 17px 44px;
  font-size: 0.875rem;
}
.btn-full {
  width: 100%;
}
.btn-rose {
  background: var(--rose);
  color: #fff;
}
.btn-rose:hover {
  background: #d47888;
  transform: translateY(-1px);
}

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge-gold {
  background: var(--gold-lt);
  border: 1px solid var(--gold-md);
  color: var(--gold);
}
.badge-rose {
  background: var(--rose-lt);
  border: 1px solid rgba(201, 104, 120, 0.35);
  color: var(--rose);
}
.badge-green {
  background: rgba(76, 171, 130, 0.15);
  border: 1px solid rgba(76, 171, 130, 0.4);
  color: var(--green);
}
.badge-red {
  background: rgba(217, 69, 69, 0.12);
  border: 1px solid rgba(217, 69, 69, 0.35);
  color: var(--red);
}
.badge-amber {
  background: rgba(255, 165, 0, 0.12);
  border: 1px solid rgba(255, 165, 0, 0.35);
  color: #f5a020;
}

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
#nav {
  position: sticky;
  top: 0;
  z-index: 400;
  background: rgba(14, 1, 21, 0.96);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gold-lt);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 68px;
  padding: 0 var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 42px;
  width: auto;
}
.nav-logo-copy {
  display: flex;
  flex-direction: column;
}
.nav-logo-copy strong {
  font-family: "Playfair Display", serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.nav-logo-copy span {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 8px 18px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--txt3);
  background: transparent;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition:
    color var(--tr),
    background var(--tr);
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--tr);
}
.nav-link:hover {
  color: var(--txt);
}
.nav-link.active {
  color: var(--gold);
}
.nav-link.active::after {
  width: calc(100% - 24px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--txt2);
  border-radius: 2px;
  transition: all var(--tr);
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--plum-800);
  border-bottom: 1px solid var(--gold-lt);
  padding: 16px var(--gutter) 24px;
  z-index: 399;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile-menu.open {
  display: flex;
}
.nav-mobile-link {
  padding: 14px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--txt2);
  border-radius: var(--r);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  letter-spacing: 0.06em;
  transition: all var(--tr);
}
.nav-mobile-link:hover {
  color: var(--gold);
  background: var(--gold-lt);
}
.nav-mobile-link.active {
  color: var(--gold);
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .nav-logo-copy {
    display: none;
  }
  .nav-actions .btn-outline {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
}

/* ══════════════════════════════════════════
   PAGE SYSTEM
   ══════════════════════════════════════════ */
.page {
  display: none;
  animation: pagein 0.28s ease;
}
.page.active {
  display: block;
}
@keyframes pagein {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
  }
}

/* ══════════════════════════════════════════
   HOME - HERO
   ══════════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  min-height: clamp(520px, 80vh, 780px);
  overflow: hidden;
  background: linear-gradient(160deg, var(--plum-700) 0%, var(--plum-900) 60%);
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  opacity: 0.32;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 1, 21, 0.2) 0%,
    rgba(14, 1, 21, 0.65) 55%,
    var(--plum-900) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(40px, 8vw, 80px) var(--gutter) clamp(60px, 10vw, 100px);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero-title {
  color: var(--white);
  margin-bottom: 10px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-hi);
}
.hero-tags {
  font-size: 0.9375rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  color: var(--rose);
  margin: 10px 0;
}
.hero-theme {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gold-md);
  border-radius: 40px;
  padding: 7px 22px;
  font-size: 0.875rem;
  color: var(--cream);
  margin: 14px 0;
  letter-spacing: 0.04em;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 24px;
  margin: 14px 0 28px;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--txt2);
}
.hero-meta-item .bullet {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ── STATS STRIP ── */
#stats {
  background: var(--plum-800);
  border-top: 1px solid var(--gold-lt);
  border-bottom: 1px solid var(--gold-lt);
}
.stats-inner {
  display: flex;
  overflow-x: auto;
  max-width: var(--max-w);
  margin: 0 auto;
}
.stat-item {
  flex: 1;
  min-width: 120px;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--gold-lt);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--txt3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 5px;
}

/* ── COUNTDOWN ── */
#countdown {
  background: var(--plum-800);
  padding: 24px var(--gutter);
  text-align: center;
  border-bottom: 1px solid var(--gold-lt);
}
.cd-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--txt4);
  margin-bottom: 16px;
}
.countdown-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.cd-unit-block {
  text-align: center;
  min-width: 68px;
}
.cd-num {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.cd-name {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--txt3);
  margin-top: 4px;
}
.cd-sep {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--gold-md);
  padding-bottom: 16px;
}

/* ── ABOUT CARDS ── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.about-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--gold-lt);
  border-radius: var(--r-lg);
  padding: clamp(18px, 3vw, 28px);
  transition:
    border-color var(--tr),
    background var(--tr);
}
.about-card:hover {
  border-color: var(--gold-md);
  background: rgba(201, 149, 42, 0.05);
}
.about-card h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.125rem;
}
.about-card p {
  font-size: 0.9375rem;
}
.about-card strong {
  color: var(--gold);
}

/* ── AWARD TAG GRID ── */
.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.filter-btn {
  padding: 8px 18px;
  background: transparent;
  border: 1.5px solid var(--gold-lt);
  border-radius: 20px;
  color: var(--txt3);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--tr);
}
.filter-btn:hover {
  border-color: var(--gold-md);
  color: var(--txt2);
}
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-lt);
}

.award-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.award-cloud-tag {
  padding: 7px 14px;
  border: 1px solid var(--gold-lt);
  border-radius: var(--r);
  font-size: 0.875rem;
  color: var(--txt2);
  transition: all var(--tr);
}
.award-cloud-tag:hover {
  border-color: var(--gold-md);
  color: var(--cream);
}
.award-cloud-tag.eco {
  border-color: rgba(201, 104, 120, 0.3);
}

/* ── SCHEDULE ── */
.schedule-list {
  border-top: 1px solid var(--gold-lt);
}
.sch-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 18px 12px;
  border-bottom: 1px solid var(--gold-lt);
  transition: background var(--tr);
}
.sch-row:hover {
  background: rgba(201, 149, 42, 0.04);
}
.sch-time {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.4;
  padding-top: 2px;
}
.sch-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
}
.sch-desc {
  font-size: 0.875rem;
  color: var(--txt3);
  margin-top: 4px;
  font-style: italic;
}

/* ── JURY ── */
.jury-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 16px;
}
.jury-card {
  padding: 24px 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--gold-lt);
  border-radius: var(--r-lg);
  transition: all var(--tr);
}
.jury-card:hover {
  border-color: var(--gold-md);
  background: rgba(201, 149, 42, 0.05);
  transform: translateY(-2px);
}
.jury-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-md);
  margin: 0 auto 12px;
  background: var(--plum-700);
  display: block;
}
.jury-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}
.jury-role {
  font-size: 0.8rem;
  color: var(--txt3);
  line-height: 1.55;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r);
  opacity: 0.78;
  transition:
    opacity var(--tr),
    transform var(--tr);
  cursor: pointer;
}
.gallery-img:hover {
  opacity: 1;
  transform: scale(1.025);
}

/* ── PRICE CARD ── */
.price-card {
  max-width: 540px;
  margin: 0 auto;
  background: rgba(201, 149, 42, 0.05);
  border: 1px solid var(--gold-md);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
}
.price-big {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.price-meta {
  font-size: 0.875rem;
  color: var(--txt3);
  margin-bottom: 22px;
}
.price-date-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 22px;
  padding: 16px 0;
  border-top: 1px solid var(--gold-lt);
  border-bottom: 1px solid var(--gold-lt);
  text-align: center;
}
.price-date-val {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9375rem;
}
.price-date-lbl {
  font-size: 0.75rem;
  color: var(--txt3);
  margin-top: 2px;
}
.price-list {
  list-style: none;
  margin-bottom: 26px;
}
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--txt2);
  padding: 9px 0;
  border-bottom: 1px solid var(--gold-lt);
  line-height: 1.65;
}
.price-list li::before {
  content: "✦";
  color: var(--gold);
  font-size: 9px;
  flex-shrink: 0;
  margin-top: 5px;
}
.price-note {
  font-size: 0.8125rem;
  color: var(--txt4);
  margin-top: 12px;
  text-align: center;
}

/* ══════════════════════════════════════════
   LOCATION PAGE
   ══════════════════════════════════════════ */
.map-frame {
  border: 1px solid var(--gold-lt);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
  filter: saturate(0.75) brightness(0.88);
}
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.venue-card {
  border: 1px solid var(--gold-lt);
  border-radius: var(--r-lg);
  padding: 22px;
}
.venue-card-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.venue-card p {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 4px;
}
.venue-card strong {
  color: var(--gold);
  font-weight: 600;
}
.reach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.reach-card {
  border: 1px solid var(--gold-lt);
  border-radius: var(--r-lg);
  padding: 20px;
}
.reach-icon {
  font-size: 26px;
  margin-bottom: 10px;
}
.reach-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.reach-text {
  font-size: 0.875rem;
  color: var(--txt3);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   PARTNERS PAGE
   ══════════════════════════════════════════ */
.partner-tier {
  margin-bottom: 36px;
}
.partner-tier-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--gold-lt);
}
.partner-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.partner-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--gold-lt);
  border-radius: var(--r-lg);
  padding: 12px 20px;
  transition: all var(--tr);
}
.partner-chip:hover {
  border-color: var(--gold-md);
  background: rgba(201, 149, 42, 0.05);
}
.partner-initials {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-lt);
  border: 1.5px solid var(--gold-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.partner-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
}
.partner-type {
  font-size: 0.8125rem;
  color: var(--txt3);
  margin-top: 2px;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-link {
  padding: 10px 18px;
  border: 1px solid var(--gold-lt);
  border-radius: var(--r);
  font-size: 0.875rem;
  color: var(--txt3);
  transition: all var(--tr);
  display: inline-block;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-lt);
}

/* ══════════════════════════════════════════
   REGISTER PAGE
   ══════════════════════════════════════════ */
.reg-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.reg-main {
}
.reg-sidebar {
  position: sticky;
  top: 90px;
}

.form-step {
  padding: 32px 0;
  border-top: 1px solid var(--gold-lt);
}
.form-step:first-child {
  border-top: none;
  padding-top: 0;
}
.step-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field.col2 {
  grid-column: span 2;
}
.field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--txt3);
}
.req {
  color: var(--rose);
  margin-left: 2px;
}
.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(201, 149, 42, 0.2);
  border-radius: var(--r);
  padding: 13px 15px;
  color: var(--txt);
  font-size: 0.9375rem;
  outline: none;
  transition:
    border-color var(--tr),
    background var(--tr);
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(224, 216, 200, 0.25);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(201, 149, 42, 0.65);
  background: rgba(255, 255, 255, 0.06);
}
.field select option {
  background: var(--plum-700);
  color: var(--txt);
}
.field textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
}
.field-err {
  font-size: 0.8125rem;
  color: var(--red);
  margin-top: 3px;
  display: none;
}
.field.error input,
.field.error select,
.field.error textarea {
  border-color: rgba(217, 69, 69, 0.6);
}
.field.error .field-err {
  display: block;
}

/* ── TICKET CARDS ── */
.ticket-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ticket-card {
  border: 1.5px solid rgba(201, 149, 42, 0.22);
  border-radius: var(--r-lg);
  padding: 20px;
  cursor: pointer;
  transition: all var(--tr);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ticket-card:hover {
  border-color: var(--gold-md);
  background: rgba(201, 149, 42, 0.06);
}
.ticket-card.selected {
  border-color: var(--gold);
  background: rgba(201, 149, 42, 0.1);
  box-shadow: 0 0 0 1px var(--gold);
}
.ticket-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--gold-md);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--tr);
}
.ticket-card.selected .ticket-radio {
  background: var(--gold);
  border-color: var(--gold);
}
.ticket-card.selected .ticket-radio::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--plum-900);
  border-radius: 50%;
}
.ticket-body {
  flex: 1;
}
.ticket-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.ticket-desc {
  font-size: 0.875rem;
  color: var(--txt3);
  line-height: 1.65;
  margin-bottom: 10px;
}
.ticket-price {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.ticket-price sub {
  font-size: 0.875rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
.ticket-price small {
  font-size: 0.8125rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--txt4);
}
.ticket-err-msg {
  font-size: 0.875rem;
  color: var(--red);
  margin-top: 10px;
  display: none;
}

/* ── AWARD CATEGORY SELECTOR ── */
.award-sectors {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}
.award-sector {
}
.award-sector-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold-lt);
  display: flex;
  align-items: center;
  gap: 10px;
}
.award-sector-title .sector-count {
  background: var(--gold-lt);
  border: 1px solid var(--gold-md);
  color: var(--gold);
  border-radius: 20px;
  padding: 1px 8px;
  font-size: 0.625rem;
}
.award-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.award-sel-tag {
  padding: 9px 16px;
  border: 1.5px solid rgba(201, 149, 42, 0.22);
  border-radius: var(--r);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--txt2);
  cursor: pointer;
  user-select: none;
  transition: all var(--tr);
  display: flex;
  align-items: center;
  gap: 7px;
}
.award-sel-tag::before {
  content: "○";
  font-size: 0.75rem;
  color: var(--gold-md);
  flex-shrink: 0;
  transition: all var(--tr);
}
.award-sel-tag:hover {
  border-color: var(--gold-md);
  color: var(--cream);
  background: rgba(201, 149, 42, 0.04);
}
.award-sel-tag.on {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 149, 42, 0.12);
  font-weight: 500;
}
.award-sel-tag.on::before {
  content: "●";
  color: var(--gold);
}
.award-sel-tag.eco-t {
  border-color: rgba(201, 104, 120, 0.22);
  color: var(--txt2);
}
.award-sel-tag.eco-t.on {
  border-color: var(--rose);
  color: var(--rose);
  background: var(--rose-lt);
}
.award-sel-tag.eco-t.on::before {
  color: var(--rose);
}
.award-req-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(201, 104, 120, 0.1);
  border: 1px solid rgba(201, 104, 120, 0.25);
  border-radius: var(--r);
  font-size: 0.875rem;
  color: var(--rose);
  margin-bottom: 16px;
}
.award-err {
  font-size: 0.875rem;
  color: var(--red);
  margin-top: 10px;
  display: none;
}

/* ── SELECTED SUMMARY CARD (sidebar) ── */
.summary-card {
  background: var(--plum-800);
  border: 1px solid var(--gold-lt);
  border-radius: var(--r-lg);
  padding: 22px;
}
.summary-card h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-lt);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gold-lt);
  font-size: 0.875rem;
}
.summary-row:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: 1rem;
}
.summary-row .lbl {
  color: var(--txt3);
}
.summary-row .val {
  color: var(--white);
  text-align: right;
  font-weight: 500;
}
.summary-row.total .val {
  color: var(--gold);
  font-size: 1.25rem;
  font-family: "Playfair Display", serif;
}

/* ── CHECKBOXES ── */
.check-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.check-row input[type="checkbox"] {
  width: 17px;
  height: 17px;
  min-width: 17px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.check-row label {
  font-size: 0.9rem;
  color: var(--txt2);
  line-height: 1.7;
  cursor: pointer;
}
.check-row label a {
  color: var(--gold);
}

/* ── SUBMIT ── */
.submit-wrap {
  margin-top: 28px;
}
.submit-note {
  font-size: 0.8125rem;
  color: var(--txt4);
  margin-top: 12px;
  text-align: center;
}

/* ── PAYMENT MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 0, 14, 0.88);
  z-index: 600;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: var(--plum-800);
  border: 1px solid var(--gold-md);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: pagein 0.22s ease;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: var(--txt3);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  transition: color var(--tr);
}
.modal-close:hover {
  color: var(--gold);
}
.modal-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}
.modal-sub {
  font-size: 0.9375rem;
  color: var(--txt3);
  margin-bottom: 22px;
}
.modal-summary {
  background: rgba(201, 149, 42, 0.06);
  border: 1px solid var(--gold-lt);
  border-radius: var(--r);
  padding: 18px;
  margin-bottom: 22px;
}
.modal-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--gold-lt);
  font-size: 0.9375rem;
}
.modal-row:last-child {
  border-bottom: none;
  font-weight: 700;
}
.modal-row .ml {
  color: var(--txt3);
  font-weight: 400;
}
.modal-row .mv {
  color: var(--white);
  text-align: right;
}
.modal-row.total .mv {
  color: var(--gold);
  font-size: 1.2rem;
  font-family: "Playfair Display", serif;
}
.pay-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.pay-method {
  border: 1.5px solid var(--gold-lt);
  border-radius: var(--r);
  padding: 16px 8px;
  text-align: center;
  cursor: pointer;
  transition: all var(--tr);
}
.pay-method:hover {
  border-color: var(--gold-md);
  background: rgba(201, 149, 42, 0.05);
}
.pay-method.active {
  border-color: var(--gold);
  background: rgba(201, 149, 42, 0.1);
}
.pay-method-icon {
  font-size: 24px;
  margin-bottom: 7px;
}
.pay-method-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--txt2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pay-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}
.pay-note {
  font-size: 0.8125rem;
  color: var(--txt4);
  margin-bottom: 16px;
  line-height: 1.7;
}
.pay-processing {
  text-align: center;
  padding: 36px 0;
}
.pay-spin {
  font-size: 3rem;
  animation: spin 1s linear infinite;
  display: block;
  margin-bottom: 16px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── AUTH MODAL ── */
.auth-toggle-link {
  background: none;
  border: none;
  color: var(--gold);
  font-size: inherit;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.auth-toggle-link:hover {
  color: var(--gold-hi);
}
.nav-auth-logged {
  color: var(--gold) !important;
  border-color: var(--gold-md) !important;
}

/* ── RECEIPT ── */
.receipt-wrap {
  display: none;
}
.receipt-wrap.show {
  display: block;
}
.receipt-box {
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid var(--gold-md);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.receipt-head {
  background: linear-gradient(135deg, var(--plum-700), var(--plum-600));
  padding: 28px 24px;
  text-align: center;
  border-bottom: 1px solid var(--gold-md);
}
.receipt-head img {
  height: 44px;
  margin: 0 auto 14px;
}
.receipt-head h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.receipt-head p {
  font-size: 0.8125rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.receipt-body {
  background: var(--plum-800);
  padding: 24px;
}
.receipt-qr-wrap {
  text-align: center;
  margin-bottom: 20px;
}
.receipt-qr-wrap p {
  font-size: 0.75rem;
  color: var(--txt3);
  margin-top: 8px;
}
.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--gold-lt);
  font-size: 0.875rem;
}
.receipt-row:last-child {
  border-bottom: none;
}
.receipt-row .rl {
  color: var(--txt3);
  font-weight: 400;
}
.receipt-row .rv {
  color: var(--white);
  font-weight: 600;
  text-align: right;
  max-width: 280px;
  word-break: break-word;
}
.receipt-foot {
  background: var(--plum-700);
  padding: 16px 24px;
  text-align: center;
}
.receipt-foot p {
  font-size: 0.8125rem;
  color: var(--txt4);
  line-height: 1.8;
}
.receipt-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* ── PITCH UPLOAD ── */
.pitch-panel {
  display: none;
  margin-top: 32px;
}
.pitch-panel.show {
  display: block;
}
.pitch-box {
  border: 1px solid var(--gold-md);
  border-radius: var(--r-lg);
  padding: 28px;
  background: rgba(201, 149, 42, 0.04);
}
.drop-zone-pip {
  border: 2px dashed var(--gold-lt);
  border-radius: var(--r-lg);
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--tr);
}
.drop-zone-pip:hover,
.drop-zone-pip.over {
  border-color: var(--gold);
  background: rgba(201, 149, 42, 0.07);
}
.drop-icon-pip {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}
.drop-main-pip {
  font-size: 1rem;
  font-weight: 500;
  color: var(--txt);
  margin-bottom: 5px;
}
.drop-sub-pip {
  font-size: 0.875rem;
  color: var(--txt4);
}
.pitch-files {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.pitch-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(201, 149, 42, 0.08);
  border: 1px solid var(--gold-md);
  border-radius: var(--r);
}
.pitch-file-name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--white);
}
.pitch-file-size {
  font-size: 0.8125rem;
  color: var(--txt3);
  margin-top: 2px;
}
.pitch-file-del {
  background: none;
  border: none;
  color: var(--red);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
}
.pitch-status {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  margin-top: 12px;
}

/* ── PITCH UPLOAD ── */
.award-submission {
  display: none;
  margin-top: 32px;
}
.award-submission.show {
  display: block;
}
.award-box {
  border: 1px solid var(--gold-md);
  border-radius: var(--r-lg);
  padding: 28px;
  background: rgba(201, 149, 42, 0.04);
}
.drop-zone-awd {
  border: 2px dashed var(--gold-lt);
  border-radius: var(--r-lg);
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--tr);
}
.drop-zone-awd:hover,
.drop-zone-awd.over {
  border-color: var(--gold);
  background: rgba(201, 149, 42, 0.07);
}
.drop-icon-awd {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}
.drop-main-awd {
  font-size: 1rem;
  font-weight: 500;
  color: var(--txt);
  margin-bottom: 5px;
}
.drop-sub-awd {
  font-size: 0.875rem;
  color: var(--txt4);
}
.award-files {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.award-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(201, 149, 42, 0.08);
  border: 1px solid var(--gold-md);
  border-radius: var(--r);
}
.award-file-name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--white);
}
.award-file-size {
  font-size: 0.8125rem;
  color: var(--txt3);
  margin-top: 2px;
}
.award-file-del {
  background: none;
  border: none;
  color: var(--red);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
}
.award-status {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  margin-top: 12px;
}

/* ── SUCCESS ── */
.success-state {
  display: none;
  text-align: center;
  padding: clamp(40px, 8vw, 72px) 24px;
}
.success-icon-wrap {
  width: 68px;
  height: 68px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 26px;
  color: var(--gold);
}
.success-title {
  margin-bottom: 12px;
}
.success-msg {
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
#footer {
  background: var(--plum-800);
  border-top: 1px solid var(--gold-lt);
  padding: 40px var(--gutter);
  text-align: center;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
#footer img {
  height: 42px;
  margin: 0 auto 16px;
  opacity: 0.85;
}
#footer p {
  font-size: 0.875rem;
  color: var(--txt4);
  line-height: 2;
}
#footer a {
  color: var(--gold);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .reg-layout {
    grid-template-columns: 1fr;
  }
  .reg-sidebar {
    position: static;
  }
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .venue-grid {
    grid-template-columns: 1fr;
  }
  .reach-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .jury-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sch-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.col2 {
    grid-column: span 1;
  }
  .map-frame iframe {
    height: 320px;
  }
  .stats-inner {
    overflow-x: auto;
  }
  .pay-methods {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 540px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .price-date-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }
  .countdown-row {
    gap: 10px;
  }
  .cd-unit-block {
    min-width: 56px;
  }
  .cd-num {
    font-size: 2rem;
  }
  .pay-methods {
    grid-template-columns: repeat(3, 1fr);
  }
}

#auth-loading {
  position: fixed;
  inset: 0;
  background: #0e0115;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader {
  width: 54px;
  height: 54px;
  border: 4px solid #3c2348;
  border-top: 4px solid #c9952a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

#rcpt-qr {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* ═══════════════════════════════════════════════
   PROFILE DROPDOWN MENU STYLES
   ═══════════════════════════════════════════════ */

.profile-trigger {
  background: none;
  border: 2px solid var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  z-index: 100;
}

.profile-trigger:hover {
  background: rgba(201, 149, 42, 0.1);
  transform: scale(1.05);
}

.profile-trigger[aria-expanded="true"] {
  background: rgba(201, 149, 42, 0.15);
  border-color: var(--gold);
}

.profile-initial {
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Dropdown Container */
.profile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  min-width: 280px;
  background: var(--dark-bg);
  border: 1px solid var(--gold-lt);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  pointer-events: none;
  z-index: 999;
  backdrop-filter: blur(10px);
}

#user-panel.open .profile-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Dropdown Header */
.profile-dropdown-header {
  padding: 16px;
  text-align: left;
}

.profile-dropdown-header .profile-email {
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  word-break: break-all;
  line-height: 1.4;
  padding: 0;
  border-bottom: 0;
  white-space: normal;
}

/* Divider */
.profile-dropdown-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold-lt),
    transparent
  );
  margin: 8px 0;
}

/* Dropdown Items */
.profile-dropdown-item {
  width: 100%;
  padding: 12px 16px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-dropdown-item:hover {
  background: rgba(201, 149, 42, 0.1);
  padding-left: 20px;
}

.profile-dropdown-item span {
  font-size: 16px;
}

.logout-item {
  color: #ff6b6b;
}

.logout-item:hover {
  background: rgba(255, 107, 107, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .profile-dropdown {
    min-width: 240px;
    right: -16px;
  }

  .profile-trigger {
    width: 40px;
    height: 40px;
  }

  .profile-initial {
    font-size: 16px;
  }
}

/* Animation for profile menu entrance */
@keyframes profileMenuIn {
  from {
    opacity: 0;
    transform: translateY(-15px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#user-panel.open .profile-dropdown {
  animation: profileMenuIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
