/* ============================================================
   POVND — Shared Styles  (style.css)
   Black & white editorial aesthetic + Modern Icon Badges
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=DM+Mono:wght@300;400;500&display=swap');

:root {
  --black:     #0a0a0a;
  --white:     #f5f5f0;
  --grey-100:  #e8e8e3;
  --grey-200:  #d0d0ca;
  --grey-400:  #8a8a84;
  --grey-600:  #4a4a46;
  --grey-800:  #1e1e1c;
  --green:     #1a7a1a;
  --green-bg:  rgba(26,122,26,0.08);
  --brand-1:   #fa5818;
  --brand-2:   #f51182;
  --brand-grad: linear-gradient(135deg, #fa5818 0%, #f51182 100%);
  --brand-grad-r: linear-gradient(135deg, #f51182 0%, #fa5818 100%);
  --font-display: 'Inter', sans-serif;
  --font-mono:    'DM Mono', monospace;
  --radius:    2px;
  --radius-md: 4px;
  --radius-pill: 999px;
  --ease:      160ms cubic-bezier(0.4,0,0.2,1);

  /* Status color tokens */
  --status-active-text:   #22c55e;
  --status-active-bg:     rgba(34,197,94,0.08);
  --status-active-border: rgba(34,197,94,0.25);
  --status-pending-text:   #f59e0b;
  --status-pending-bg:     rgba(245,158,11,0.08);
  --status-pending-border: rgba(245,158,11,0.25);
  --status-review-text:   #60a5fa;
  --status-review-bg:     rgba(59,130,246,0.08);
  --status-review-border: rgba(59,130,246,0.25);
  --status-error-text:   #ef4444;
  --status-error-bg:     rgba(239,68,68,0.06);
  --status-error-border: rgba(239,68,68,0.22);
  --status-info-text:   #a78bfa;
  --status-info-bg:     rgba(167,139,250,0.07);
  --status-info-border: rgba(167,139,250,0.22);
  --status-rejected-text:   #ef4444;
  --status-rejected-bg:     rgba(239,68,68,0.06);
  --status-rejected-border: rgba(239,68,68,0.22);
}

[data-theme="light"] {
  --black:     #ffffff;
  --white:     #0a0a0a;
  --grey-100:  #1a1a18;
  --grey-200:  #2a2a28;
  --grey-400:  #4a4a46;
  --grey-600:  #8a8a84;
  --grey-800:  #ddddd8;
  --green:     #1a7a1a;
  --green-bg:  rgba(26,122,26,0.12);
}
[data-theme="light"] body { background: #ffffff; color: #0a0a0a; }
[data-theme="light"] .site-nav { background: #ffffff; }
[data-theme="light"] .btn--primary { background: var(--brand-grad); color: #fff; border-color: transparent; }
[data-theme="light"] .btn--primary:hover { background: var(--brand-grad-r); opacity: 0.92; }
[data-theme="light"] input { background: #ffffff; border-color: #0a0a0a; color: #0a0a0a; }
[data-theme="light"] input::placeholder { color: #8a8a84; }
[data-theme="light"] input:focus { border-color: #4a4a46; }
[data-theme="light"] .login-card { border-color: #ddddd8; background: #ffffff; }
[data-theme="light"] .login-card-head { background: var(--brand-grad); }
[data-theme="light"] .stat-card { background: #ffffff; }
[data-theme="light"] .stat-card--highlight { background: var(--brand-grad); color: #fff; }
[data-theme="light"] .stat-card--highlight .stat-label { color: rgba(255,255,255,0.7); }
[data-theme="light"] .stat-card--highlight .stat-value { color: #fff; }
[data-theme="light"] .stat-card--highlight .stat-sub   { color: rgba(255,255,255,0.6); }
[data-theme="light"] .songs-table tbody tr:hover { background: #ebebeb; }
[data-theme="light"] .songs-table thead tr { background: var(--brand-grad); }
[data-theme="light"] .toggle-songs-btn { background: #e8e8e3; color: #4a4a46; }
[data-theme="light"] .toggle-songs-btn:hover { background: #d0d0ca; color: #0a0a0a; }
[data-theme="light"] .payout-cell { background: #ffffff; }
[data-theme="light"] .bar-fill    { background: var(--brand-grad); }
[data-theme="light"] .mini-fill   { background: var(--brand-2); }
[data-theme="light"] .platform-count { color: #0a0a0a; }
[data-theme="light"] .badge--single { color: #0a0a0a; border-color: #4a4a46; }
[data-theme="light"] .badge--ep     { color: #fff; border-color: transparent; background: var(--brand-grad); }

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--grey-600);
  border-radius: var(--radius);
  background: transparent;
  color: var(--grey-400);
  cursor: pointer;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--white); color: var(--white); }
.theme-toggle svg { width: 14px; height: 14px; transition: opacity 0.2s; }
.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun  { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun  { display: block; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; }
body { background: var(--black); color: var(--white); font-family: var(--font-display); min-height: 100vh; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; line-height: 1.1; }

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.brand span { color: var(--grey-400); font-weight: 400; }
.brand-logo { height: 30px; width: auto; display: block; }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  border-bottom: 1px solid var(--grey-800);
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-links { display: flex; align-items: center; gap: 8px; }
.topnav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 9px 18px;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--ease), color var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover                  { background: var(--white); color: var(--black); }
.btn--primary               { background: var(--brand-grad); color: #fff; border-color: transparent; }
.btn--primary:hover         { background: var(--brand-grad-r); color: #fff; opacity: 0.92; }
.btn--ghost                 { border-color: var(--grey-600); color: var(--grey-400); }
.btn--ghost:hover           { border-color: var(--white); color: var(--white); background: transparent; }
.btn--sm                    { padding: 7px 14px; font-size: 0.65rem; }

/* ══════════════════════════════════════════════════════
   MODERN BADGE + STATUS PILL SYSTEM
   ══════════════════════════════════════════════════════ */

/* Base legacy badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  line-height: 1.4;
  font-weight: 500;
}

/* ── Status Badge — boxed design matching dashboard UI ── */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: var(--radius);
  border: 1px solid;
  line-height: 1.4;
  white-space: nowrap;
  transition: opacity var(--ease);
}

.status-pill__dot {
  width: 5px;
  height: 5px;
  border-radius: 1px;
  flex-shrink: 0;
}

.status-pill--active {
  color: #fff;
  background: var(--brand-grad);
  border-color: transparent;
  font-weight: 600;
}
.status-pill--active .status-pill__dot {
  background: rgba(255, 255, 255, 0.8);
  animation: dot-pulse 2.2s ease-in-out infinite;
}

.status-pill--pending {
  color: var(--status-pending-text);
  background: var(--status-pending-bg);
  border-color: var(--status-pending-border);
}
.status-pill--pending .status-pill__dot {
  background: var(--status-pending-text);
  animation: dot-blink 1.6s step-start infinite;
}

.status-pill--under-review {
  color: var(--status-review-text);
  background: var(--status-review-bg);
  border-color: var(--status-review-border);
}
.status-pill--under-review .status-pill__dot {
  background: var(--status-review-text);
}

.status-pill--error {
  color: var(--status-error-text);
  background: var(--status-error-bg);
  border-color: var(--status-error-border);
}
.status-pill--error .status-pill__dot { background: var(--status-error-text); }

.status-pill--rejected {
  color: var(--status-rejected-text);
  background: var(--status-rejected-bg);
  border-color: var(--status-rejected-border);
}
.status-pill--rejected .status-pill__dot {
  background: var(--status-rejected-text);
  animation: dot-blink 1.6s step-start infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}
@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* ── Icon Badge — for track type chips ── */
.icon-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: var(--radius);
  border: 1px solid var(--grey-600);
  color: var(--grey-400);
  background: transparent;
  line-height: 1;
}
.icon-badge--single { color: var(--grey-400); border-color: var(--grey-600); }
.icon-badge--ep     { color: #fff; border-color: transparent; background: var(--brand-grad); }
.icon-badge--album  { color: #fff; border-color: transparent; background: linear-gradient(135deg, #f51182 0%, #a855f7 100%); }

/* ── Plan bar pill variants ── */
.plan-bar-status.active   { color: var(--status-active-text);  border-color: var(--status-active-border);  background: var(--status-active-bg); }
.plan-bar-status.expiring { color: #f59e0b; border-color: rgba(245,158,11,0.3); background: rgba(245,158,11,0.07); }
.plan-bar-status.expired  { color: var(--status-error-text);   border-color: var(--status-error-border);   background: var(--status-error-bg); }

/* ── Notification / Notice Card ── */
.notice-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid;
  position: relative;
  overflow: hidden;
}

.notice-card__icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.notice-card__icon-wrap svg { width: 16px; height: 16px; }

.notice-card__body { flex: 1; min-width: 0; }

.notice-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--radius);
  border: 1px solid;
}
.notice-card__tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.notice-card__title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.notice-card__desc {
  font-size: 0.66rem;
  color: var(--grey-400);
  line-height: 1.65;
}

.notice-card__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 11px;
}

.notice-card__btn {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  background: var(--white);
  color: var(--black);
  transition: opacity var(--ease);
}
.notice-card__btn:hover { opacity: 0.85; }

.notice-card__btn--ghost {
  background: transparent;
  color: var(--grey-400);
  border-color: transparent;
}
.notice-card__btn--ghost:hover { color: var(--white); }

/* Notice card color variants */
.notice-card--warning {
  border-color: rgba(245,158,11,0.28);
  background: rgba(245,158,11,0.03);
}
.notice-card--warning .notice-card__icon-wrap  { background: rgba(245,158,11,0.1); color: #f59e0b; }
.notice-card--warning .notice-card__tag        { color: #f59e0b; border-color: rgba(245,158,11,0.28); background: rgba(245,158,11,0.07); }
.notice-card--warning .notice-card__title      { color: #fbbf24; }

.notice-card--info {
  border-color: rgba(59,130,246,0.22);
  background: rgba(59,130,246,0.03);
}
.notice-card--info .notice-card__icon-wrap { background: rgba(59,130,246,0.1); color: #60a5fa; }
.notice-card--info .notice-card__tag       { color: #60a5fa; border-color: rgba(59,130,246,0.22); background: rgba(59,130,246,0.07); }
.notice-card--info .notice-card__title     { color: #93c5fd; }

.notice-card--neutral {
  border-color: var(--grey-800);
  background: transparent;
}
.notice-card--neutral .notice-card__icon-wrap { background: var(--grey-800); color: var(--grey-400); }
.notice-card--neutral .notice-card__tag       { color: var(--grey-400); border-color: var(--grey-600); background: transparent; }
.notice-card--neutral .notice-card__title     { color: var(--white); }

/* Legacy compat */
.ob-required, .req-asterisk, [data-required]::after, .field-required::after {
  color: var(--brand-1);
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Legacy badge compat */
.badge--active       { color: var(--status-active-text);    border-color: var(--status-active-border);    background: var(--status-active-bg); }
.badge--pending      { color: var(--status-pending-text);   border-color: var(--status-pending-border);   background: var(--status-pending-bg); }
.badge--under-review { color: var(--status-review-text);    border-color: var(--status-review-border);    background: var(--status-review-bg); }
.badge--rejected     { color: var(--status-rejected-text);  border-color: var(--status-rejected-border);  background: var(--status-rejected-bg); }
.badge--single       { color: var(--grey-400); border-color: var(--grey-600); background: transparent; }
.badge--ep           { color: #fff; border-color: transparent; background: var(--brand-grad); }
.badge--album        { color: #fff; border-color: transparent; background: linear-gradient(135deg, #f51182 0%, #a855f7 100%); }

hr { border: none; border-top: 1px solid var(--grey-800); }
::-webkit-scrollbar       { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--grey-600); border-radius: 2px; }

/* footer mobile handled in Footer v2 section */
@media (max-width: 600px) {
  .site-nav { padding: 12px 16px; }
  .brand    { font-size: 0.9rem; }
}

/* ============================================================
   POVND — Footer v3  (Ditto-style, modern, responsive)
   Append to style.css. Safe to REPLACE the old "Footer v2"
   block (lines ~438–end of footer in style.css).
   Uses existing tokens: --black, --white, --grey-*, --brand-grad,
   --font-display, --font-mono, --radius-md, --radius-pill, --ease.
   ============================================================ */

.site-footer-v3 {
  position: relative;
  background: var(--black);
  border-top: 1px solid var(--grey-800);
  overflow: hidden;
  margin-top: auto;
}

/* Gradient hairline */
.site-footer-v3 .footer-top-bar {
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--brand-grad);
  opacity: 0.45;
}

/* Subtle ambient glow */
.site-footer-v3::after {
  content: '';
  position: absolute;
  bottom: -120px; left: 50%;
  transform: translateX(-50%);
  width: 640px; height: 320px;
  background: radial-gradient(ellipse at center, rgba(245,17,130,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Back to top pill ── */
.footer-backtotop-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 48px 24px 8px;
}
.footer-backtotop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--grey-800);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  background: transparent;
  transition: border-color var(--ease), color var(--ease), transform var(--ease), background var(--ease);
}
.footer-backtotop:hover {
  border-color: transparent;
  background: var(--brand-grad);
  color: #fff;
  transform: translateY(-2px);
}
.footer-backtotop svg { transition: transform var(--ease); }
.footer-backtotop:hover svg { transform: translateY(-2px); }

/* ── 4-column grid ── */
.site-footer-v3 .footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 64px 56px;
}

@media (max-width: 1024px) {
  .site-footer-v3 .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
    padding: 36px 40px 48px;
  }
  .footer-col-newsletter { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .site-footer-v3 .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px 24px 40px;
  }
  .footer-backtotop-wrap { padding-top: 36px; }
}

/* ── Columns ── */
.footer-col { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.footer-col-nav { display: flex; flex-direction: column; gap: 2px; }

.site-footer-v3 .footer-col-heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--white);
  margin: 0 0 6px;
  text-transform: none;
}
[data-theme="light"] .site-footer-v3 .footer-col-heading { color: #0a0a0a; }

/* Links (reset button + anchor) */
.site-footer-v3 .footer-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--grey-400);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
  letter-spacing: 0.005em;
  line-height: 1.45;
  text-align: left;
  transition: color 160ms ease, transform 160ms ease;
  position: relative;
}
.site-footer-v3 .footer-link:hover {
  color: var(--white);
  transform: translateX(3px);
}
[data-theme="light"] .site-footer-v3 .footer-link { color: #6a6a66; }
[data-theme="light"] .site-footer-v3 .footer-link:hover { color: #0a0a0a; }

/* ── Newsletter form ── */
.footer-newsletter {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  max-width: 380px;
}
.footer-newsletter-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 42px;
  padding: 0 14px;
  background: transparent;
  border: 1px solid var(--grey-800);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--ease);
}
.footer-newsletter-input::placeholder { color: var(--grey-600); }
.footer-newsletter-input:focus { border-color: var(--grey-400); }

.footer-newsletter-btn {
  flex: 0 0 auto;
  height: 42px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--brand-grad);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: opacity var(--ease), transform var(--ease), background var(--ease);
}
.footer-newsletter-btn:hover { opacity: 0.92; transform: translateY(-1px); }

[data-theme="light"] .footer-newsletter-input { border-color: #ddddd8; color: #0a0a0a; }
[data-theme="light"] .footer-newsletter-input::placeholder { color: #8a8a84; }

/* ── Social icons ── */
.site-footer-v3 .footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.site-footer-v3 .footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--grey-800);
  border-radius: 50%;
  color: var(--grey-400);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color var(--ease), border-color var(--ease), transform var(--ease);
}
.site-footer-v3 .footer-social-link::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--brand-grad);
  opacity: 0;
  transition: opacity var(--ease);
}
.site-footer-v3 .footer-social-link svg { position: relative; z-index: 1; }
.site-footer-v3 .footer-social-link:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}
.site-footer-v3 .footer-social-link:hover::before { opacity: 1; }

[data-theme="light"] .site-footer-v3 .footer-social-link { border-color: #ddddd8; color: #6a6a66; }

/* ── Bottom bar ── */
.site-footer-v3 .footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 64px;
  border-top: 1px solid var(--grey-800);
}
.site-footer-v3 .footer-brand-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--white);
  text-decoration: none;
}
[data-theme="light"] .site-footer-v3 .footer-brand-logo { color: #0a0a0a; }

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-footer-v3 .footer-copyright {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--grey-600);
  letter-spacing: 0.04em;
  margin: 0;
  text-transform: none;
}
.site-footer-v3 .footer-bottom-links {
  display: flex; align-items: center; gap: 10px;
}
.site-footer-v3 .footer-bottom-link {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--grey-400);
  text-decoration: none;
  letter-spacing: 0;
  text-transform: none;
  transition: color var(--ease);
}
.site-footer-v3 .footer-bottom-link:hover { color: var(--white); }
.site-footer-v3 .footer-bottom-dot { color: var(--grey-800); font-size: 0.78rem; }

@media (max-width: 1024px) {
  .site-footer-v3 .footer-bottom { padding: 20px 40px; }
}
@media (max-width: 560px) {
  .site-footer-v3 .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
  }
  .footer-bottom-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-newsletter { max-width: 100%; }
}

/* ── Light mode footer surface ── */
[data-theme="light"] .site-footer-v3 {
  background: #fafafa;
  border-top-color: #ddddd8;
}
[data-theme="light"] .site-footer-v3 .footer-bottom { border-top-color: #ddddd8; }
[data-theme="light"] .site-footer-v3 .footer-backtotop { border-color: #ddddd8; color: #0a0a0a; }
[data-theme="light"] .site-footer-v3 .footer-copyright,
[data-theme="light"] .site-footer-v3 .footer-bottom-link { color: #6a6a66; }
[data-theme="light"] .site-footer-v3 .footer-bottom-link:hover { color: #0a0a0a; }
[data-theme="light"] .site-footer-v3 .footer-bottom-dot { color: #ddddd8; }


/* ============================================================
   POVND — Nav Dropdown
   ============================================================ */
.nav-menu { position: relative; display: inline-flex; align-items: center; }
.nav-menu-trigger {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 9px 14px; border: 1px solid var(--grey-600);
  background: transparent; color: var(--grey-400); cursor: pointer;
  border-radius: var(--radius); transition: border-color var(--ease), color var(--ease);
  white-space: nowrap; user-select: none;
}
.nav-menu-trigger:hover,
.nav-menu[data-open] .nav-menu-trigger { border-color: var(--white); color: var(--white); }
.nav-menu-trigger svg { width: 10px; height: 10px; flex-shrink: 0; transition: transform 200ms cubic-bezier(0.4,0,0.2,1); }
.nav-menu[data-open] .nav-menu-trigger svg { transform: rotate(180deg); }
.nav-menu-panel {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 200px;
  background: var(--black); border: 1px solid var(--grey-800);
  border-radius: var(--radius-md); overflow: hidden; z-index: 400;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px) scale(0.98); transform-origin: top right;
  transition: opacity 160ms cubic-bezier(0.4,0,0.2,1), transform 160ms cubic-bezier(0.4,0,0.2,1);
}
.nav-menu[data-open] .nav-menu-panel { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.nav-menu-item {
  display: flex; align-items: center; gap: 10px; padding: 11px 16px;
  font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--grey-400); text-decoration: none;
  background: transparent; border: none; width: 100%; cursor: pointer;
  transition: background var(--ease), color var(--ease);
  border-bottom: 1px solid var(--grey-800); text-align: left;
}
.nav-menu-item:last-child { border-bottom: none; }
.nav-menu-item:hover { background: var(--grey-800); color: var(--white); }
.nav-menu-item svg { width: 13px; height: 13px; flex-shrink: 0; opacity: 0.6; }
.nav-menu-item:hover svg { opacity: 1; }
.nav-menu-item--signout { color: var(--grey-600); }
.nav-menu-item--signout:hover { background: rgba(245,17,130,0.08); color: var(--brand-2); }
.nav-menu-item--active { color: var(--white); position: relative; }
.nav-menu-item--active::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--brand-grad); border-radius: 0 2px 2px 0; }
[data-theme="light"] .nav-menu-panel { background: #ffffff; border-color: #ddddd8; }
[data-theme="light"] .nav-menu-item { border-bottom-color: #ddddd8; }
[data-theme="light"] .nav-menu-item:hover { background: #e8e8e3; color: #0a0a0a; }
[data-theme="light"] .nav-menu-trigger:hover,
[data-theme="light"] .nav-menu[data-open] .nav-menu-trigger { border-color: #0a0a0a; color: #0a0a0a; }

/* ── Support / Create Ticket nav item ── */
.nav-menu-item--ticket {
  color: var(--grey-400);
}
.nav-menu-item--ticket:hover {
  color: var(--white);
  background: var(--grey-800);
}
[data-theme="light"] .nav-menu-item--ticket { color: #4a4a46; }
[data-theme="light"] .nav-menu-item--ticket:hover { color: #0a0a0a; background: #e8e8e3; }
/* ════════════════════════════════════════════════════════════
   POVND FOOTER v5  —  Multi-column (bootstrap-footer-01 base)
   All classes scoped under .pv-footer to avoid CSS conflicts.
   ════════════════════════════════════════════════════════════ */

/* ── Base shell ───────────────────────────────────────────── */
.pv-footer {
  position: relative;
  width: 100%;
  background: var(--grey-800, #141d2a);
  color: var(--white, #f5f5f0);
  overflow-x: hidden;
}

/* Gradient accent line at top */
.pv-footer__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-grad, linear-gradient(135deg, #fa5818 0%, #f51182 100%));
  z-index: 1;
}

/* ── Container ────────────────────────────────────────────── */
.pv-footer__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── CTA Banner block ─────────────────────────────────────── */
.pv-footer__cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 52px 40px;
  margin: 0 -40px;
  background: linear-gradient(135deg, rgba(250,88,24,0.18) 0%, rgba(245,17,130,0.14) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}

/* On wide screens where the container hits max-width (1200px),
   extend the CTA all the way to the viewport edges */
@media (min-width: 1281px) {
  .pv-footer__cta-block {
    margin-left: calc(-50vw + 560px);
    margin-right: calc(-50vw + 560px);
    padding-left: calc(50vw - 560px);
    padding-right: calc(50vw - 560px);
  }
}

.pv-footer__cta-block::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(250,88,24,0.22) 0%, transparent 65%);
  pointer-events: none;
}

.pv-footer__cta-text { flex: 1; min-width: 0; }

.pv-footer__cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.55);
  margin: 0 0 10px;
}

.pv-footer__cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
}

.pv-footer__cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.pv-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 200ms ease, opacity 200ms ease,
              background 200ms ease, color 200ms ease, border-color 200ms ease;
  white-space: nowrap;
}

.pv-footer__cta-btn--primary {
  background: var(--brand-grad, linear-gradient(135deg, #fa5818, #f51182));
  color: #fff;
  box-shadow: 0 4px 20px rgba(250,88,24,0.32);
}
.pv-footer__cta-btn--primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(250,88,24,0.42);
}

.pv-footer__cta-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.28);
}
.pv-footer__cta-btn--ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

/* ── Divider ──────────────────────────────────────────────── */
.pv-footer__rule {
  height: 1px;
  background: rgba(255,255,255,0.07);
}

/* ── Main nav grid ────────────────────────────────────────── */
.pv-footer__grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1fr;
  gap: 0;
  padding: 52px 0 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.pv-footer__brand-col { padding: 0 40px 0 0; }

.pv-footer__nav-col {
  padding: 0 40px 0 40px;
  border-left: 1px solid rgba(255,255,255,0.07);
}

/* ── Brand column ─────────────────────────────────────────── */
.pv-footer__brand {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 16px;
}

.pv-footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  background: var(--brand-grad, linear-gradient(135deg, #fa5818, #f51182));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pv-footer__brand-tagline {
  font-family: var(--font-display);
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.48);
  max-width: 240px;
  margin: 0 0 24px;
}

/* ── Social icons ─────────────────────────────────────────── */
.pv-footer__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pv-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease,
              color 180ms ease, transform 180ms ease;
}
.pv-footer__social:hover {
  border-color: #fa5818;
  background: rgba(250,88,24,0.12);
  color: #fff;
  transform: translateY(-2px);
}
.pv-footer__social svg { width: 14px; height: 14px; display: block; }

/* ── Nav column headings ──────────────────────────────────── */
.pv-footer__col-heading {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  margin: 0 0 18px;
}

/* ── Nav link list ────────────────────────────────────────── */
.pv-footer__col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pv-footer__link {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 400;
  color: rgba(255,255,255,0.52);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 160ms ease;
  position: relative;
}

.pv-footer__link:hover { color: rgba(255,255,255,0.92); }

/* ── Bottom bar ───────────────────────────────────────────── */
.pv-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}

.pv-footer__copyright {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  margin: 0;
}

.pv-footer__back-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}
.pv-footer__back-top:hover { color: rgba(255,255,255,0.82); transform: translateY(-1px); }
.pv-footer__back-top:hover svg { transform: translateY(-2px); }
.pv-footer__back-top svg { transition: transform 160ms ease; }

/* ── Tablet (≤ 900px) ─────────────────────────────────────── */
@media (max-width: 900px) {
  .pv-footer__container { padding: 0 28px; }

  .pv-footer__cta-block {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 28px;
    margin: 0 -28px;
    gap: 24px;
  }

  .pv-footer__cta-title { font-size: clamp(1.4rem, 4vw, 1.9rem); }

  .pv-footer__grid {
    grid-template-columns: 1fr 1fr;
    padding: 40px 0 36px;
    gap: 36px 0;
  }

  .pv-footer__brand-col {
    grid-column: 1 / -1;
    padding: 0 0 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .pv-footer__brand-tagline { max-width: none; }

  .pv-footer__nav-col { padding-left: 28px; }
  .pv-footer__nav-col:nth-child(2) { border-left: none; padding-left: 0; }
}

/* ── Mobile (≤ 580px) ─────────────────────────────────────── */
@media (max-width: 580px) {
  .pv-footer__container { padding: 0 20px; }

  .pv-footer__cta-block { padding: 32px 20px; margin: 0 -20px; }
  .pv-footer__cta-title { font-size: 1.45rem; line-height: 1.12; }

  .pv-footer__cta-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .pv-footer__cta-btn { width: 100%; justify-content: center; padding: 14px 20px; }

  .pv-footer__grid { grid-template-columns: 1fr; gap: 0; padding: 36px 0 28px; }

  .pv-footer__brand-col { grid-column: 1; padding: 0 0 20px; }

  .pv-footer__nav-col {
    padding: 24px 0 0;
    border-left: none;
    border-top: none;
  }

  .pv-footer__col-links { gap: 12px; }
  .pv-footer__link { font-size: 0.9rem; }

  .pv-footer__bottom {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 18px 0;
  }
  .pv-footer__copyright { font-size: 0.64rem; }
}

/* ── Light theme overrides ────────────────────────────────── */
[data-theme="light"] .pv-footer { background: #0f0e0d; }
[data-theme="light"] .pv-footer__cta-block {
  background: linear-gradient(135deg, rgba(250,88,24,0.20) 0%, rgba(245,17,130,0.16) 100%);
}
[data-theme="light"] .pv-footer__link { color: rgba(255,255,255,0.50); }
[data-theme="light"] .pv-footer__link:hover { color: rgba(255,255,255,0.92); }
[data-theme="light"] .pv-footer__copyright { color: rgba(255,255,255,0.32); }
[data-theme="light"] .pv-footer__back-top { color: rgba(255,255,255,0.35); }
[data-theme="light"] .pv-footer__back-top:hover { color: rgba(255,255,255,0.82); }
[data-theme="light"] .pv-footer__brand-tagline { color: rgba(255,255,255,0.46); }

/* ============================================================
   POVND — Contact Page (Songdis-inspired, on-brand)
   ============================================================ */
.contact-page {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  padding: clamp(80px, 10vw, 140px) 24px clamp(60px, 8vw, 100px);
}
.contact-wrap { max-width: 1120px; margin: 0 auto; }

.contact-hero { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); }
.contact-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin: 0 0 14px;
}
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 16px;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact-sub {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--grey-400);
  line-height: 1.6;
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 840px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

.contact-form {
  background: var(--grey-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .contact-row { grid-template-columns: 1fr; } }

.contact-field { display: flex; flex-direction: column; gap: 6px; }
.contact-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-400);
}
.contact-input, .contact-textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-display);
  font-size: 0.94rem;
  color: var(--white);
  transition: border-color var(--ease), background var(--ease);
}
.contact-input:focus, .contact-textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.02);
}
.contact-textarea { resize: vertical; min-height: 140px; }

.contact-submit {
  align-self: flex-start;
  margin-top: 6px;
  padding: 12px 28px;
  background: var(--brand-grad);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform var(--ease), opacity var(--ease);
}
.contact-submit:hover { transform: translateY(-1px); opacity: 0.95; }
@media (max-width: 520px) { .contact-submit { align-self: stretch; } }

.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-info-card {
  background: var(--grey-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 22px 24px;
}
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin: 0 0 8px;
}
.contact-info-value {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
}
.contact-info-value:hover { opacity: 0.8; }
.contact-info-note {
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: var(--grey-400);
  margin: 6px 0 0;
  line-height: 1.55;
}

.contact-socials { display: flex; gap: 10px; margin-top: 12px; }
.contact-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  text-decoration: none;
  transition: background var(--ease), transform var(--ease), border-color var(--ease);
}
.contact-social:hover {
  background: var(--brand-grad);
  border-color: transparent;
  transform: translateY(-1px);
  color: #fff;
}

[data-theme="light"] .contact-page { background: #ffffff; color: #0a0a0a; }
[data-theme="light"] .contact-form,
[data-theme="light"] .contact-info-card { background: #f5f5f0; border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .contact-input, [data-theme="light"] .contact-textarea {
  border-color: rgba(0,0,0,0.14); color: #0a0a0a;
}
[data-theme="light"] .contact-input:focus, [data-theme="light"] .contact-textarea:focus {
  border-color: rgba(0,0,0,0.4); background: rgba(0,0,0,0.02);
}
[data-theme="light"] .contact-info-value { color: #0a0a0a; }
