:root {
  --black: #090909;
  --panel: #11100e;
  --panel-soft: #171510;
  --gold: #f2c345;
  --gold-dark: #9e7717;
  --white: #ffffff;
  --muted: #b7b0a1;
  --border: rgba(242, 195, 69, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 75% 20%, rgba(242, 195, 69, 0.12), transparent 30%),
    var(--black);
  color: var(--white);
}

a {
  color: inherit;
}

.topbar {
  height: 88px;
  padding: 0 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 9, 9, 0.94);
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 1px;
}

.brand-title,
.eyebrow,
.portal-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.brand-subtitle {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.top-actions,
.hero-actions {
  display: flex;
  gap: 12px;
}

.button {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: #000;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--white);
}

.button.large {
  min-height: 54px;
  padding: 0 28px;
}

.button.full {
  width: 100%;
}

.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 90px 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.hero h1,
.auth-card h1 {
  margin: 18px 0;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -3px;
}

.intro {
  max-width: 650px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 36px;
}

.portal-card,
.auth-card {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(25, 22, 16, 0.98), rgba(12, 12, 11, 0.98));
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.portal-card h2 {
  margin: 15px 0 30px;
  font-size: 36px;
}

.feature-list {
  display: grid;
  gap: 22px;
}

.feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.feature span {
  color: var(--gold);
  font-weight: 900;
}

.feature strong {
  font-size: 18px;
}

.feature p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.auth-page {
  display: grid;
  place-items: center;
  padding: 45px 20px;
}

.auth-card {
  width: min(520px, 100%);
}

.auth-card.wide {
  width: min(720px, 100%);
}

.auth-logo {
  margin-bottom: 24px;
}

.auth-card h1 {
  font-size: 48px;
  letter-spacing: -2px;
}

.auth-card > p {
  color: var(--muted);
  line-height: 1.6;
}

form {
  margin-top: 28px;
}

label {
  display: block;
  margin: 18px 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0b0b0b;
  color: var(--white);
  font-size: 16px;
}

.two-column-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

.full-row {
  grid-column: 1 / -1;
}

.auth-footer {
  margin-top: 24px;
  text-align: center;
  color: var(--muted);
}

.auth-footer a {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 850px) {
  .topbar {
    height: auto;
    padding: 22px;
    align-items: flex-start;
  }

  .top-actions {
    flex-direction: column;
  }

  .hero {
    padding: 55px 22px;
    grid-template-columns: 1fr;
  }

  .two-column-form {
    grid-template-columns: 1fr;
  }

  .full-row {
    grid-column: auto;
  }
}

.auth-home {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.auth-home:hover {
  color: var(--gold);
}

small {
  color: var(--muted);
}

.auth-submit {
  margin-top: 24px;
}

.form-message {
  margin: 22px 0 0;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.form-message.error {
  color: #ffb8b8;
  border: 1px solid rgba(255, 93, 93, 0.45);
  background: rgba(120, 20, 20, 0.24);
}

.form-message.success {
  color: #b8f5ca;
  border: 1px solid rgba(62, 196, 101, 0.4);
  background: rgba(23, 103, 48, 0.22);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.consent-row {
  margin: 15px 0;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.dashboard-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 250px 1fr;
  background:
    radial-gradient(circle at 85% 10%, rgba(242, 195, 69, 0.08), transparent 26%),
    var(--black);
}

.dashboard-sidebar {
  min-height: 100vh;
  padding: 30px 18px;
  border-right: 1px solid var(--border);
  background: rgba(7, 7, 7, 0.98);
  display: flex;
  flex-direction: column;
}

.dashboard-brand {
  margin-bottom: 44px;
}

.dashboard-nav {
  display: grid;
  gap: 8px;
}

.dashboard-nav a {
  padding: 14px 15px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
}

.dashboard-nav a.active {
  color: #000;
  background: var(--gold);
}

.dashboard-nav a[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}

.sidebar-logout {
  margin-top: auto;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.dashboard-main {
  padding: 46px;
}

.dashboard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.dashboard-header h1 {
  margin: 10px 0 6px;
  font-size: 48px;
  letter-spacing: -2px;
}

.dashboard-header p {
  margin: 0;
  color: var(--muted);
}

.dashboard-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.summary-card,
.dashboard-panel {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(23, 21, 17, 0.95), rgba(11, 11, 10, 0.98));
  border-radius: 18px;
}

.summary-card {
  min-height: 150px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.summary-card span {
  color: var(--muted);
  font-size: 13px;
}

.summary-card strong {
  margin: 12px 0;
  font-size: 42px;
}

.summary-card small {
  margin-top: auto;
}

.dashboard-panel {
  padding: 28px;
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.dashboard-panel h2 {
  margin: 10px 0;
  font-size: 30px;
}

.dashboard-panel p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.timeline-panel {
  display: block;
}

.portal-timeline {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.portal-timeline > div {
  min-height: 145px;
  padding: 20px;
  border: 1px solid rgba(242, 195, 69, 0.18);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
}

.portal-timeline span {
  color: var(--gold);
  font-weight: 900;
}

.portal-timeline strong {
  margin: 18px 0 8px;
}

.portal-timeline small {
  line-height: 1.5;
}

@media (max-width: 900px) {
  .dashboard-page {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    min-height: auto;
  }

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

  .sidebar-logout {
    margin-top: 25px;
  }

  .dashboard-main {
    padding: 30px 20px;
  }

  .dashboard-header {
    flex-direction: column;
  }

  .dashboard-summary,
  .portal-timeline {
    grid-template-columns: 1fr;
  }

  .dashboard-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

.panel-heading {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.dancers-panel {
  display: block;
}

.dancer-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.empty-dancers {
  grid-column: 1 / -1;
  min-height: 270px;
  padding: 40px 24px;
  border: 1px dashed var(--border);
  border-radius: 16px;
  display: grid;
  place-items: center;
  text-align: center;
}

.empty-dancers h3 {
  margin: 10px 0 0;
  font-size: 26px;
}

.empty-dancers p {
  max-width: 470px;
}

.empty-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-weight: 900;
}

.dancer-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(8, 8, 8, 0.58);
}

.dancer-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dancer-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #000;
  background: var(--gold);
  font-weight: 900;
}

.card-edit {
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.dancer-card h3 {
  margin: 20px 0;
  font-size: 23px;
}

.dancer-details {
  margin-bottom: 22px;
}

.dancer-details p {
  margin: 0;
  padding: 11px 0;
  border-top: 1px solid rgba(242, 195, 69, 0.13);
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.dancer-details span {
  color: var(--muted);
  font-size: 13px;
}

.dancer-details strong {
  text-align: right;
  font-size: 14px;
}

.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: 25px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(7px);
}

.modal-backdrop[hidden] {
  display: none;
}

.portal-modal {
  width: min(720px, 100%);
  max-height: calc(100vh - 50px);
  overflow-y: auto;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #11100e;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.modal-header h2 {
  margin: 10px 0 0;
  font-size: 34px;
}

.modal-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  background: transparent;
  font-size: 26px;
  cursor: pointer;
}

.input-prefix {
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b0b0b;
}

.input-prefix span {
  padding-left: 16px;
  color: var(--muted);
}

.input-prefix input {
  border: 0;
}

.modal-actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

@media (max-width: 1100px) {
  .dancer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .dashboard-main {
    padding: 24px 16px 45px;
  }

  .dashboard-header h1 {
    font-size: 38px;
  }

  .dashboard-header .button,
  .panel-heading .button {
    width: 100%;
  }

  .panel-heading {
    flex-direction: column;
  }

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

  .dashboard-nav {
    grid-template-columns: 1fr 1fr;
  }

  .portal-modal {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .modal-backdrop {
    align-items: end;
    padding: 0;
  }

  .portal-modal {
    width: 100%;
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
  }

  .modal-actions {
    flex-direction: column-reverse;
  }

  .modal-actions .button {
    width: 100%;
  }

  .two-column-form {
    grid-template-columns: 1fr;
  }

  .full-row {
    grid-column: auto;
  }

  .auth-card {
    padding: 28px 20px;
  }

  .auth-card h1 {
    font-size: 38px;
  }

  input {
    font-size: 16px;
  }
}

.registration-page {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(242, 195, 69, 0.09),
      transparent 28%
    ),
    var(--black);
}

.registration-topbar {
  min-height: 88px;
  padding: 18px 38px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.registration-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.registration-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 55px 0 90px;
}

.registration-heading h1 {
  margin: 12px 0 8px;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -2px;
}

.registration-heading p {
  color: var(--muted);
  font-size: 18px;
}

.registration-progress {
  margin: 35px 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  background: rgba(15, 14, 12, 0.9);
}

.registration-progress > div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.registration-progress span {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.registration-progress .active {
  color: var(--white);
}

.registration-progress .active span {
  color: #000;
  background: var(--gold);
}

.registration-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 26px;
  align-items: start;
}

.registration-form {
  margin: 0;
  display: grid;
  gap: 20px;
}

.registration-section,
.order-summary {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(23, 21, 17, 0.97),
    rgba(10, 10, 9, 0.98)
  );
}

.registration-section h2,
.order-summary h2 {
  margin: 8px 0;
  font-size: 28px;
}

.registration-section p {
  margin: 0 0 22px;
  color: var(--muted);
}

.section-number {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

select {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  background: #0b0b0b;
  font-size: 16px;
}

.selection-preview {
  margin-top: 15px;
  padding: 15px;
  border: 1px solid rgba(242, 195, 69, 0.18);
  border-radius: 10px;
  display: grid;
  gap: 6px;
}

.selection-preview span,
.selection-preview small {
  color: var(--muted);
}

.photo-option-list {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.photo-option-card {
  padding: 17px;
  border: 1px solid rgba(242, 195, 69, 0.2);
  border-radius: 13px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  align-items: center;
}

.photo-number {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}

.entry-option {
  min-height: 68px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(242, 195, 69, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.entry-option input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.entry-option span {
  display: grid;
  gap: 4px;
}

.entry-option small {
  color: var(--gold);
}

.order-summary {
  position: sticky;
  top: 24px;
}

.summary-line {
  padding: 16px 0;
  border-bottom: 1px solid rgba(242, 195, 69, 0.15);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.summary-line span {
  color: var(--muted);
}

.summary-line strong {
  max-width: 190px;
  text-align: right;
}

.summary-total {
  padding: 24px 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-total strong {
  color: var(--gold);
  font-size: 30px;
}

.summary-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.registration-submit {
  min-height: 58px;
  font-size: 16px;
}

.mobile-order-summary {
  display: none;
}

@media (max-width: 850px) {
  .registration-topbar {
    padding: 16px;
  }

  .registration-brand .brand-subtitle {
    display: none;
  }

  .registration-shell {
    width: min(100% - 28px, 700px);
    padding-top: 35px;
  }

  .registration-progress {
    grid-template-columns: 1fr 1fr;
  }

  .registration-progress strong {
    font-size: 12px;
  }

  .registration-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
    order: -1;
  }

  .photo-option-card {
    grid-template-columns: 1fr;
  }

  .entry-option {
    min-height: 62px;
  }
}

@media (max-width: 520px) {
  .registration-topbar .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  .registration-heading h1 {
    font-size: 39px;
  }

  .registration-progress {
    grid-template-columns: 1fr;
  }

  .registration-section,
  .order-summary {
    padding: 22px 17px;
  }
}

.registration-progress .complete {
  color: var(--white);
}

.registration-progress .complete span {
  color: #000;
  background: var(--gold);
}

.upload-loading {
  min-height: 260px;
  border: 1px solid var(--border);
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.upload-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 26px;
  align-items: start;
}

.upload-main {
  display: grid;
  gap: 22px;
}

.registration-overview {
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 25px;
  background: linear-gradient(
    145deg,
    rgba(23, 21, 17, 0.97),
    rgba(10, 10, 9, 0.98)
  );
}

.registration-overview h2,
.registration-overview h3 {
  margin: 8px 0;
}

.registration-overview p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.upload-entry-list {
  display: grid;
  gap: 20px;
}

.upload-entry-card {
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(23, 21, 17, 0.97),
    rgba(10, 10, 9, 0.98)
  );
}

.upload-entry-card.uploading {
  opacity: 0.7;
  pointer-events: none;
}

.upload-entry-heading {
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.upload-entry-heading h2 {
  margin: 8px 0;
}

.upload-entry-heading p {
  margin: 0;
  color: var(--muted);
}

.upload-status {
  height: fit-content;
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(242, 195, 69, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.upload-status.complete {
  color: #9ef0b6;
  border-color: rgba(63, 196, 99, 0.35);
  background: rgba(30, 112, 54, 0.18);
}

.photo-drop-zone {
  min-height: 310px;
  padding: 32px;
  border: 2px dashed rgba(242, 195, 69, 0.35);
  border-radius: 16px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.18);
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.photo-drop-zone:hover,
.photo-drop-zone.dragging {
  border-color: var(--gold);
  background: rgba(242, 195, 69, 0.07);
}

.photo-drop-zone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.photo-drop-zone > span {
  color: var(--muted);
}

.photo-drop-zone small {
  margin-top: 8px;
}

.upload-plus {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #000 !important;
  background: var(--gold);
  font-size: 32px;
  font-weight: 500;
}

.uploaded-photo {
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr;
  gap: 22px;
}

.uploaded-photo-preview {
  min-height: 290px;
  border: 1px solid rgba(242, 195, 69, 0.2);
  border-radius: 14px;
  overflow: hidden;
  background: #050505;
}

.uploaded-photo-preview img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  display: block;
  object-fit: contain;
}

.heic-preview {
  min-height: 290px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
}

.heic-preview strong {
  color: var(--gold);
  font-size: 35px;
}

.heic-preview span {
  color: var(--muted);
}

.uploaded-photo-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
}

.uploaded-photo-details > div:first-child {
  display: grid;
  gap: 8px;
}

.uploaded-photo-details span {
  color: var(--muted);
}

.uploaded-photo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.danger-button {
  border-color: rgba(255, 92, 92, 0.4);
  color: #ffabab;
  background: rgba(125, 28, 28, 0.15);
}

.upload-navigation {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.summary-entry-list small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 400;
}

@media (max-width: 900px) {
  .upload-layout {
    grid-template-columns: 1fr;
  }

  .registration-overview {
    grid-template-columns: 1fr;
  }

  .uploaded-photo {
    grid-template-columns: 1fr;
  }

  .uploaded-photo-preview {
    min-height: 250px;
  }

  .uploaded-photo-preview img {
    min-height: 250px;
    max-height: 500px;
  }
}

@media (max-width: 520px) {
  .upload-entry-card {
    padding: 20px 15px;
  }

  .upload-entry-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .photo-drop-zone {
    min-height: 250px;
    padding: 25px 15px;
  }

  .upload-navigation {
    flex-direction: column-reverse;
  }

  .upload-navigation .button {
    width: 100%;
  }

  .uploaded-photo-actions {
    flex-direction: column;
  }

  .uploaded-photo-actions .button {
    width: 100%;
    text-align: center;
  }
}

.upload-loading[hidden],
.upload-layout[hidden],
.form-message[hidden] {
  display: none !important;
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 26px;
  align-items: start;
}

.payment-layout[hidden] {
  display: none !important;
}

.payment-main {
  display: grid;
  gap: 22px;
}

.paypal-checkout-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(23, 21, 17, 0.97),
    rgba(10, 10, 9, 0.98)
  );
}

.paypal-checkout-card h2 {
  margin: 9px 0;
  font-size: 30px;
}

.paypal-checkout-card > p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.paypal-status {
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid rgba(242, 195, 69, 0.22);
  border-radius: 10px;
  color: var(--muted);
  background: rgba(242, 195, 69, 0.05);
}

#paypal-button-container {
  min-height: 55px;
}

.payment-security-note {
  margin-top: 18px !important;
  font-size: 12px;
}

.summary-entry-list small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 400;
}

@media (max-width: 900px) {
  .payment-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .paypal-checkout-card {
    padding: 22px 16px;
  }
}

.confirmation-shell {
  width: min(780px, calc(100% - 30px));
  margin: 0 auto;
  padding: 70px 0;
}

.confirmation-card {
  padding: 46px;
  border: 1px solid var(--border);
  border-radius: 24px;
  text-align: center;
  background: linear-gradient(
    145deg,
    rgba(23, 21, 17, 0.98),
    rgba(8, 8, 7, 0.99)
  );
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.confirmation-card[hidden] {
  display: none !important;
}

.confirmation-mark {
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #000;
  background: var(--gold);
  font-size: 38px;
  font-weight: 900;
}

.confirmation-card h1 {
  margin: 12px 0;
  font-size: clamp(38px, 7vw, 62px);
  letter-spacing: -2px;
}

.confirmation-intro {
  max-width: 570px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.confirmation-details {
  margin: 30px 0;
  border-top: 1px solid rgba(242, 195, 69, 0.18);
  text-align: left;
}

.confirmation-details > div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(242, 195, 69, 0.14);
}

.confirmation-details span {
  color: var(--muted);
}

.confirmation-details strong {
  max-width: 65%;
  text-align: right;
  overflow-wrap: anywhere;
}

.confirmation-next {
  margin: 30px 0;
  padding: 24px;
  border: 1px solid rgba(242, 195, 69, 0.18);
  border-radius: 15px;
  text-align: left;
  background: rgba(242, 195, 69, 0.04);
}

.confirmation-next h2 {
  margin: 0 0 10px;
}

.confirmation-next p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.confirmation-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 600px) {
  .confirmation-shell {
    padding: 28px 0;
  }

  .confirmation-card {
    padding: 30px 18px;
  }

  .confirmation-details > div {
    flex-direction: column;
    gap: 5px;
  }

  .confirmation-details strong {
    max-width: 100%;
    text-align: left;
  }

  .confirmation-actions {
    grid-template-columns: 1fr;
  }
}

.dashboard-section {
  display: none;
}

.dashboard-section.active {
  display: block;
}

.dashboard-nav {
  display: grid;
  gap: 8px;
}

.dashboard-nav-link {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: var(--muted);
  background: transparent;
  text-align: left;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.dashboard-nav-link:hover {
  color: #fff;
  border-color: rgba(242, 195, 69, 0.22);
}

.dashboard-nav-link.active {
  color: #000;
  background: var(--gold);
}

.dashboard-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.dashboard-stat-card {
  min-height: 145px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(
    145deg,
    rgba(22, 20, 17, 0.98),
    rgba(9, 9, 8, 0.99)
  );
}

.dashboard-stat-card span,
.dashboard-stat-card small {
  display: block;
  color: var(--muted);
}

.dashboard-stat-card strong {
  display: block;
  margin: 12px 0;
  font-size: 34px;
}

.dashboard-panel {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(22, 20, 17, 0.98),
    rgba(9, 9, 8, 0.99)
  );
}

.dashboard-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.dashboard-panel-header h2 {
  margin: 7px 0;
  font-size: 28px;
}

.dashboard-panel-header p {
  margin: 0;
  color: var(--muted);
}

.dashboard-list {
  display: grid;
  gap: 15px;
}

.dashboard-record-card {
  padding: 20px;
  border: 1px solid rgba(242, 195, 69, 0.18);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.2);
}

.dashboard-record-main {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
}

.dashboard-record-main h3 {
  margin: 10px 0 5px;
  font-size: 22px;
}

.dashboard-record-main p {
  margin: 0;
  color: var(--muted);
}

.dashboard-record-amount {
  color: var(--gold);
  font-size: 24px;
}

.dashboard-record-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
  padding: 16px 0;
  border-top: 1px solid rgba(242, 195, 69, 0.12);
  border-bottom: 1px solid rgba(242, 195, 69, 0.12);
}

.dashboard-record-details span {
  color: var(--muted);
  font-size: 13px;
}

.dashboard-record-details strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  overflow-wrap: anywhere;
}

.dashboard-record-actions {
  display: flex;
  justify-content: flex-end;
}

.status-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.status-badge.paid {
  color: #92f2a7;
  border: 1px solid rgba(41, 180, 75, 0.5);
  background: rgba(27, 133, 55, 0.16);
}

.status-badge.awaiting {
  color: #ffd978;
  border: 1px solid rgba(242, 195, 69, 0.45);
  background: rgba(242, 195, 69, 0.1);
}

.status-badge.draft {
  color: #d0d0d0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.dancer-card-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(280px, 360px)
  );
  gap: 18px;
}

.dancer-profile-card {
  padding: 20px;
  border: 1px solid rgba(242, 195, 69, 0.22);
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.22);
}

.dancer-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dancer-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #000;
  background: var(--gold);
  font-weight: 900;
}

.dancer-profile-card h3 {
  margin: 18px 0;
  font-size: 22px;
}

.dancer-details {
  margin: 0 0 18px;
}

.dancer-details > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid rgba(242, 195, 69, 0.12);
}

.dancer-details dt {
  color: var(--muted);
}

.dancer-details dd {
  margin: 0;
  text-align: right;
}

.small-button {
  min-height: 36px;
  padding: 8px 12px;
}

.dashboard-empty-state {
  min-height: 260px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 30px;
  border: 1px dashed rgba(242, 195, 69, 0.3);
  border-radius: 15px;
  text-align: center;
}

.dashboard-empty-state h3,
.dashboard-empty-state p {
  margin: 0;
}

.dashboard-empty-state p {
  max-width: 500px;
  color: var(--muted);
  line-height: 1.6;
}

.dashboard-menu-button {
  display: none;
}

.dashboard-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.dashboard-modal-backdrop[hidden] {
  display: none !important;
}

.dashboard-modal {
  position: relative;
  width: min(620px, 100%);
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #11100e;
}

.dashboard-modal h2 {
  margin: 8px 0 25px;
  font-size: 34px;
}

.dashboard-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: #fff;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.modal-open {
  overflow: hidden;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
}

@media (max-width: 1100px) {
  .dashboard-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .dashboard-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 900;
    width: 280px;
    transform: translateX(-102%);
    transition: transform 0.25s ease;
  }

  .dashboard-sidebar.open {
    transform: translateX(0);
  }

  .dashboard-main {
    margin-left: 0;
    padding: 20px 15px 40px;
  }

  .dashboard-header {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .dashboard-header > .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .dashboard-menu-button {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 9px;
    color: #fff;
    background: transparent;
    font-size: 20px;
  }

  .dashboard-summary-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-panel {
    padding: 18px 14px;
  }

  .dashboard-panel-header,
  .dashboard-record-main {
    flex-direction: column;
  }

  .dashboard-record-details {
    grid-template-columns: 1fr;
  }

  .dashboard-record-actions .button {
    width: 100%;
  }

  .dancer-card-grid {
    grid-template-columns: 1fr;
  }

  .modal-actions {
    flex-direction: column-reverse;
  }

  .modal-actions .button {
    width: 100%;
  }
}

/* Dashboard layout correction */

.dashboard-section,
.dashboard-section.active {
  width: 100%;
}

.dashboard-panel {
  display: block !important;
  width: 100% !important;
  min-height: auto !important;
  grid-template-columns: none !important;
}

.dashboard-panel-header {
  width: 100%;
}

.dashboard-list {
  width: 100%;
  display: grid !important;
  grid-template-columns: repeat(
    auto-fit,
    minmax(320px, 1fr)
  ) !important;
  align-items: stretch;
  gap: 18px;
}

#recentRegistrations {
  grid-template-columns: repeat(
    auto-fit,
    minmax(320px, 1fr)
  ) !important;
}

#registrationList {
  grid-template-columns: repeat(
    auto-fit,
    minmax(340px, 1fr)
  ) !important;
}

#paymentList {
  grid-template-columns: repeat(
    auto-fit,
    minmax(340px, 1fr)
  ) !important;
}

.dancer-card-grid {
  width: 100%;
  display: grid !important;
  grid-template-columns: repeat(
    auto-fit,
    minmax(300px, 1fr)
  ) !important;
  gap: 18px;
}

.dashboard-record-card,
.dancer-profile-card {
  width: 100%;
  max-width: none !important;
  min-width: 0;
  box-sizing: border-box;
}

.dashboard-record-main {
  min-height: 90px;
}

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

.dashboard-record-actions {
  margin-top: auto;
}

.dashboard-record-actions .button {
  min-width: 190px;
}

[data-dashboard-section="results"] .dashboard-panel {
  display: block !important;
}

#resultsEmptyState {
  width: 100%;
  margin-top: 22px;
  box-sizing: border-box;
}

@media (min-width: 1450px) {
  #recentRegistrations,
  #registrationList,
  #paymentList {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .dancer-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 1000px) {
  #recentRegistrations,
  #registrationList,
  #paymentList,
  .dancer-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  #recentRegistrations,
  #registrationList,
  #paymentList,
  .dancer-card-grid {
    grid-template-columns: 1fr !important;
  }

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

  .dashboard-record-actions .button {
    width: 100%;
    min-width: 0;
  }
}

/* Sidebar spacing refinement */

.dashboard-nav {
  gap: 14px;
}

.dashboard-signout {
  margin-top: 28px;
}

@media (max-width: 760px) {
  .dashboard-signout {
    margin-top: 24px;
  }
}

.confirmation-next p {
  margin: 0 0 14px;
  line-height: 1.65;
}

.confirmation-next p:last-child {
  margin-bottom: 0;
}

.confirmation-next strong {
  color: #ffffff;
  font-weight: 700;
}

/* Photogenic published results */

.result-card {
  border-color: rgba(193, 145, 24, 0.38);
}

.result-winner-message {
  margin-top: 16px;
  border-radius: 12px;
  background: #fff7d8;
  padding: 14px;
  color: #674900;
  font-weight: 700;
}

.result-critiques {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.result-critique {
  display: grid;
  gap: 10px;
  border: 1px solid #e6dfd1;
  border-radius: 12px;
  background: #faf8f3;
  padding: 14px;
}

.result-critique div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.result-critique small {
  color: #736b60;
}

.result-critique audio {
  width: 100%;
}

/* Final Photogenic Family Results */

.result-card {
  display: grid;
  gap: 20px;
  overflow: hidden;
  border-color: rgba(193, 145, 24, 0.38);
}

.result-card.official-winner-result {
  border-color: rgba(193, 145, 24, 0.72);
  box-shadow:
    0 18px 50px rgba(86, 57, 7, 0.12);
}

.result-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.result-card-header h3 {
  margin: 12px 0 4px;
  color: #1f1b15;
  font-size: clamp(24px, 4vw, 34px);
}

.result-card-header p {
  margin: 0;
  color: #736b60;
}

.result-card-status {
  border-radius: 999px;
  background: #1c1914;
  padding: 10px 14px;
  color: #d8b257;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

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

.result-winner-message,
.result-complete-message {
  display: grid;
  gap: 5px;
  border-radius: 14px;
  padding: 16px 18px;
}

.result-winner-message {
  margin-top: 0;
  border: 1px solid rgba(193, 145, 24, 0.32);
  background:
    linear-gradient(
      135deg,
      #fff8db,
      #fffdf5
    );
  color: #674900;
}

.result-winner-message strong {
  font-size: 17px;
}

.result-winner-message span {
  line-height: 1.55;
}

.result-complete-message {
  border: 1px solid #e6dfd1;
  background: #faf8f3;
  color: #625b52;
}

.result-media-section {
  display: grid;
  gap: 15px;
  border-top: 1px solid #ece5d8;
  padding-top: 20px;
}

.winner-media-section {
  border-radius: 16px;
  border: 1px solid rgba(193, 145, 24, 0.32);
  background:
    linear-gradient(
      145deg,
      #fffaf0,
      #ffffff
    );
  padding: 18px;
}

.result-media-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.result-media-heading h4 {
  margin: 4px 0 4px;
  color: #211c15;
  font-size: 21px;
}

.result-media-heading p {
  max-width: 640px;
  margin: 0;
  color: #746c61;
  line-height: 1.55;
}

.result-section-eyebrow {
  color: #a87516;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.result-count-badge,
.result-winner-icon {
  flex-shrink: 0;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 900;
}

.result-count-badge {
  background: #f3efe7;
  color: #635b50;
}

.result-winner-icon {
  background: #c39224;
  color: #ffffff;
  letter-spacing: 1px;
}

.result-graphics-grid {
  display: grid;
  grid-template-columns:
    repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.result-graphic-card {
  overflow: hidden;
  border: 1px solid #e6dfd1;
  border-radius: 16px;
  background: #ffffff;
  box-shadow:
    0 10px 30px rgba(41, 32, 18, 0.08);
}

.result-graphic-preview {
  display: block;
  overflow: hidden;
  background: #111111;
  aspect-ratio: 4 / 5;
}

.result-graphic-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 180ms ease;
}

.result-graphic-preview:hover img {
  transform: scale(1.02);
}

.result-graphic-information {
  display: grid;
  gap: 14px;
  padding: 15px;
}

.result-graphic-information > div:first-child {
  display: grid;
  gap: 3px;
}

.result-graphic-information small {
  color: #756d62;
}

.result-graphic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.result-graphic-actions .button {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.result-critiques {
  margin-top: 0;
}

@media (max-width: 760px) {
  .result-card-header,
  .result-media-heading {
    flex-direction: column;
  }

  .result-card-status,
  .result-count-badge,
  .result-winner-icon {
    align-self: flex-start;
  }

  .result-details {
    grid-template-columns: 1fr;
  }

  .result-graphics-grid {
    grid-template-columns: 1fr;
  }

  .result-graphic-actions {
    flex-direction: column;
  }

  .result-graphic-actions .button {
    width: 100%;
  }
}

/* Photogenic result graphics display */

#resultsEmptyState[hidden],
#resultsList[hidden] {
  display: none !important;
}

.result-card {
  display: grid;
  gap: 24px;
  border-color: rgba(205, 157, 37, 0.48);
}

.result-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.result-card-header h3 {
  margin: 12px 0 5px;
  font-size: 28px;
}

.result-card-status {
  color: #f7c843;
  font-size: 24px;
  font-weight: 900;
}

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

.result-media-section {
  display: grid;
  gap: 18px;
  border-top: 1px solid rgba(205, 157, 37, 0.22);
  padding-top: 24px;
}

.result-winner-section {
  border: 1px solid rgba(205, 157, 37, 0.45);
  border-radius: 16px;
  background: rgba(205, 157, 37, 0.06);
  padding: 22px;
}

.result-media-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.result-media-heading span {
  color: #f7c843;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.result-media-heading h4 {
  margin: 6px 0;
  font-size: 24px;
}

.result-media-heading p {
  margin: 0;
  color: #c9c0ad;
}

.result-graphics-grid {
  display: grid;
  grid-template-columns:
    repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.result-graphic-card {
  overflow: hidden;
  border: 1px solid rgba(205, 157, 37, 0.35);
  border-radius: 16px;
  background: #11100e;
}

.result-graphic-preview {
  display: block;
  background: #080808;
  aspect-ratio: 4 / 5;
}

.result-graphic-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.result-graphic-footer {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.result-graphic-footer > div:first-child {
  display: grid;
  gap: 4px;
}

.result-graphic-footer small {
  color: #bdb4a1;
}

.result-graphic-actions {
  display: flex;
  gap: 9px;
}

.result-graphic-actions .button {
  flex: 1;
  text-align: center;
}

@media (max-width: 760px) {
  .result-card-header,
  .result-media-heading {
    flex-direction: column;
  }

  .result-details {
    grid-template-columns: 1fr;
  }

  .result-graphics-grid {
    grid-template-columns: 1fr;
  }

  .result-graphic-actions {
    flex-direction: column;
  }
}


/* Oro participant graphic */
.participant-graphic-preview {
  margin: 18px 0;
  overflow: hidden;
  border: 1px solid rgba(226, 174, 31, .45);
  border-radius: 16px;
  background: #090806;
}

.participant-graphic-preview img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #050505;
}

.participant-graphic-heading {
  padding: 15px 16px;
}

.participant-graphic-heading span {
  display: block;
  margin-bottom: 4px;
  color: #e4ae1d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.3px;
}

.participant-graphic-heading strong {
  color: #ffffff;
  font-size: 16px;
}

.participant-graphic-download {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 14px;
  min-height: 46px;
  border-radius: 10px;
  background: #f3c53f;
  padding: 0 16px;
  color: #080706;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.participant-graphic-status {
  margin: 18px 0;
  border: 1px dashed rgba(226, 174, 31, .5);
  border-radius: 14px;
  padding: 18px;
  background: rgba(226, 174, 31, .05);
}

.participant-graphic-status span,
.participant-graphic-status strong,
.participant-graphic-status small {
  display: block;
}

.participant-graphic-status span {
  margin-bottom: 5px;
  color: #e4ae1d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.participant-graphic-status strong {
  margin-bottom: 5px;
  color: #ffffff;
}

.participant-graphic-status small {
  color: #b8b1a6;
}


/* Family Photogenic Graphics tab */
.family-graphics-panel {
  display: block !important;
  width: 100%;
}

.family-graphics-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(300px, 1fr)
  );
  gap: 22px;
  width: 100%;
  margin-top: 28px;
}

.family-graphic-card {
  overflow: hidden;
  border: 1px solid rgba(242, 195, 69, .35);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(21, 18, 11, .98),
      rgba(5, 5, 5, .98)
    );
  box-shadow:
    0 20px 55px rgba(0, 0, 0, .28);
}

.family-graphic-image {
  position: relative;
  min-height: 280px;
  background: #050505;
}

.family-graphic-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  background: #050505;
}

.family-graphic-type {
  position: absolute;
  top: 14px;
  left: 14px;
  border: 1px solid rgba(242, 195, 69, .65);
  border-radius: 999px;
  background: rgba(8, 7, 4, .88);
  padding: 7px 11px;
  color: #f4ca52;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.family-graphic-type-winner {
  background:
    linear-gradient(
      135deg,
      #f3c53f,
      #a46d05
    );
  color: #090704;
}

.family-graphic-content {
  padding: 20px;
}

.family-graphic-content h3 {
  margin: 7px 0 6px;
  color: #ffffff;
  font-size: 25px;
}

.family-graphic-content p {
  margin: 0;
  color: #b9b2a7;
  line-height: 1.55;
}

.family-graphic-details {
  display: grid;
  grid-template-columns: repeat(
    2,
    minmax(0, 1fr)
  );
  gap: 10px;
  margin-top: 18px;
}

.family-graphic-details span {
  border: 1px solid rgba(242, 195, 69, .15);
  border-radius: 11px;
  background: rgba(255, 255, 255, .025);
  padding: 11px;
  color: #8f887d;
  font-size: 11px;
}

.family-graphic-details strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-size: 13px;
}

.family-graphic-download {
  margin-top: 18px;
}

@media (min-width: 1450px) {
  .family-graphics-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .family-graphics-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .family-graphics-grid {
    grid-template-columns: 1fr;
  }

  .family-graphic-details {
    grid-template-columns: 1fr;
  }
}

/* Parent Photogenic improvements */

.registration-graphics-group {
  margin-top: 22px;
}

.registration-graphics-heading {
  margin-bottom: 14px;
}

.registration-graphics-heading span {
  display: block;
  color: #efb81f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.registration-graphics-heading strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-size: 1rem;
}

.registration-graphics-grid {
  display: grid;
  grid-template-columns:
    repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.registration-graphics-grid
.participant-graphic-preview {
  margin: 0;
}

.event-confirmation-open {
  overflow: hidden;
}

.event-confirmation-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.event-confirmation-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.event-confirmation-dialog {
  position: relative;
  width: min(100%, 540px);
  border: 1px solid #8d6911;
  border-radius: 22px;
  padding: 30px;
  background:
    radial-gradient(
      circle at top right,
      rgba(226, 174, 37, 0.12),
      transparent 40%
    ),
    #11100d;
  box-shadow:
    0 24px 90px rgba(0, 0, 0, 0.7);
}

.event-confirmation-dialog h2 {
  margin: 8px 0 18px;
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.event-confirmation-dialog > p {
  color: #d9d1c2;
  line-height: 1.65;
}

.event-confirmation-event {
  display: grid;
  gap: 5px;
  margin: 18px 0;
  border: 1px solid #73570f;
  border-radius: 14px;
  padding: 18px;
  background: #1a160b;
}

.event-confirmation-event strong {
  color: #f4c541;
  font-size: 1.2rem;
}

.event-confirmation-event span {
  color: #ffffff;
}

.event-confirmation-event small {
  color: #b9ad96;
}

.event-confirmation-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.professional-photo-guide {
  margin-bottom: 22px;
  border: 1px solid #70550f;
  border-radius: 18px;
  padding: 22px;
  background:
    linear-gradient(
      135deg,
      rgba(226, 174, 37, 0.08),
      rgba(255, 255, 255, 0.01)
    );
}

.professional-photo-guide h2 {
  margin: 7px 0 9px;
}

.professional-photo-guide > p {
  max-width: 760px;
  color: #cfc5b3;
  line-height: 1.6;
}

.professional-photo-guide-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.professional-photo-guide-grid span {
  display: block;
  border: 1px solid rgba(226, 174, 37, 0.24);
  border-radius: 12px;
  padding: 14px;
  color: #cfc5b3;
  line-height: 1.45;
}

.professional-photo-guide-grid strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
}

@media (max-width: 700px) {
  .event-confirmation-actions,
  .professional-photo-guide-grid {
    grid-template-columns: 1fr;
  }

  .event-confirmation-dialog {
    padding: 22px;
  }
}

/* ORO FAMILY PRICING PAGE */

.pricing-page {
  overflow: hidden;
}

.pricing-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(237, 183, 39, 0.4);
  border-radius: 20px;
  padding: 30px;
  background:
    radial-gradient(
      circle at top right,
      rgba(237, 183, 39, 0.16),
      transparent 42%
    ),
    linear-gradient(
      135deg,
      #15120b,
      #0d0c09
    );
}

.pricing-hero h2 {
  margin: 8px 0 10px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.pricing-hero p {
  max-width: 680px;
  margin: 0;
  color: #d4c9b7;
  font-size: 1.05rem;
  line-height: 1.65;
}

.pricing-hero-saving {
  min-width: 220px;
  border: 1px solid #e9b72a;
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  background: rgba(229, 173, 30, 0.1);
}

.pricing-hero-saving span,
.pricing-hero-saving small {
  display: block;
  color: #d8c89f;
}

.pricing-hero-saving strong {
  display: block;
  margin: 5px 0;
  color: #f4c33b;
  font-size: 3.1rem;
  line-height: 1;
}

.pricing-comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.pricing-comparison-header > div {
  border: 1px solid rgba(237, 183, 39, 0.3);
  border-radius: 14px;
  padding: 17px 20px;
  background: #12110e;
}

.pricing-comparison-header span {
  display: block;
  color: #efba29;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.pricing-comparison-header strong {
  display: block;
  margin-top: 5px;
  color: #ffffff;
}

.pricing-table-wrap {
  margin-top: 16px;
  overflow-x: auto;
  border: 1px solid rgba(237, 183, 39, 0.32);
  border-radius: 18px;
}

.pricing-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #0e0d0b;
}

.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(237, 183, 39, 0.17);
  text-align: left;
}

.pricing-table th {
  color: #efba29;
  background: #17140d;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-table td {
  color: #ffffff;
  font-size: 1rem;
}

.pricing-table td strong {
  display: block;
}

.pricing-table td span {
  display: block;
  margin-top: 4px;
  color: #a99d8b;
  font-size: 0.86rem;
}

.pricing-table .pricing-pre-event {
  color: #f3c33f;
  font-size: 1.25rem;
  font-weight: 900;
}

.pricing-table .pricing-save {
  color: #72da8b;
  font-size: 1.15rem;
  font-weight: 900;
}

.pricing-divider-row td {
  color: #efba29;
  background: #17140d;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pricing-savings-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.pricing-saving-card {
  border: 1px solid rgba(237, 183, 39, 0.3);
  border-radius: 16px;
  padding: 22px;
  background: #11100d;
}

.pricing-saving-card.featured {
  border-color: #efba29;
  background:
    linear-gradient(
      145deg,
      rgba(237, 183, 39, 0.17),
      #11100d
    );
}

.pricing-saving-card span {
  color: #efba29;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pricing-saving-card strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 1.65rem;
}

.pricing-saving-card p {
  margin: 8px 0 0;
  color: #bcb09d;
  line-height: 1.5;
}

.pricing-information-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.pricing-information-card {
  border: 1px solid rgba(237, 183, 39, 0.25);
  border-radius: 18px;
  padding: 24px;
  background: #11100d;
}

.pricing-information-card h3 {
  margin: 8px 0 14px;
  color: #ffffff;
  font-size: 1.35rem;
}

.pricing-information-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: #cabfab;
  line-height: 1.5;
}

.pricing-information-card li::marker {
  color: #efba29;
}

.pricing-action-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 24px;
  border: 1px solid #efba29;
  border-radius: 18px;
  padding: 24px;
  background:
    linear-gradient(
      135deg,
      rgba(237, 183, 39, 0.16),
      rgba(237, 183, 39, 0.03)
    );
}

.pricing-action-card h3 {
  margin: 6px 0;
  color: #ffffff;
  font-size: 1.45rem;
}

.pricing-action-card p {
  margin: 0;
  color: #c8bca8;
}

.pricing-action-card .button {
  min-width: 190px;
}

@media (max-width: 900px) {
  .pricing-hero,
  .pricing-action-card {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-hero-saving {
    min-width: 0;
  }

  .pricing-savings-grid,
  .pricing-information-grid {
    grid-template-columns: 1fr;
  }

  .pricing-action-card .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .pricing-comparison-header {
    grid-template-columns: 1fr;
  }

  .pricing-hero,
  .pricing-information-card,
  .pricing-action-card {
    padding: 20px;
  }
}

/* ORO DASHBOARD PRICING PRIORITY */

.dashboard-pricing-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 16px;
  border: 1px solid rgba(239, 186, 41, 0.55);
  border-radius: 20px;
  padding: 28px;
  background:
    radial-gradient(
      circle at top right,
      rgba(239, 186, 41, 0.2),
      transparent 43%
    ),
    linear-gradient(
      135deg,
      #16130c,
      #0d0c09
    );
}

.dashboard-pricing-copy h2 {
  margin: 7px 0 9px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.dashboard-pricing-copy p {
  margin: 0 0 18px;
  color: #d2c6b2;
  font-size: 1rem;
  line-height: 1.6;
}

.dashboard-pricing-summary {
  min-width: 210px;
  border: 1px solid #efba29;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  background: rgba(239, 186, 41, 0.1);
}

.dashboard-pricing-summary span,
.dashboard-pricing-summary small {
  display: block;
  color: #d8c89f;
}

.dashboard-pricing-summary strong {
  display: block;
  margin: 5px 0;
  color: #f4c33b;
  font-size: 3rem;
  line-height: 1;
}

.dashboard-pricing-savings {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.dashboard-pricing-savings article {
  border: 1px solid rgba(239, 186, 41, 0.3);
  border-radius: 14px;
  padding: 17px 20px;
  background: #11100d;
}

.dashboard-pricing-savings span {
  display: block;
  color: #efba29;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.dashboard-pricing-savings strong {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-size: 1.25rem;
}

@media (max-width: 850px) {
  .dashboard-pricing-promo {
    align-items: stretch;
    flex-direction: column;
  }

  .dashboard-pricing-summary {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .dashboard-pricing-savings {
    grid-template-columns: 1fr;
  }

  .dashboard-pricing-promo {
    padding: 21px;
  }
}

/* PHOTOGENIC REGISTRATION AGREEMENT */

.photogenic-agreement {
  display: grid;
  gap: 15px;
}

.agreement-option {
  min-height: 72px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(242, 195, 69, 0.24);
  border-radius: 13px;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 13px;
  align-items: start;
  color: var(--white);
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.agreement-option:hover {
  border-color: rgba(242, 195, 69, 0.55);
}

.agreement-option input {
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
}

.agreement-option span {
  line-height: 1.6;
}

.agreement-links {
  padding-top: 5px;
  color: var(--muted);
  line-height: 1.6;
}

.agreement-links a {
  color: var(--gold);
  font-weight: 800;
}

.critique-option-locked {
  opacity: 0.48;
  cursor: not-allowed;
}

.critique-option-locked input {
  cursor: not-allowed;
}

.critique-lock-message {
  color: #d9b75e !important;
  font-size: 11px;
  line-height: 1.35;
}

@media (max-width: 680px) {
  .agreement-option {
    grid-template-columns: 20px 1fr;
    padding: 14px;
  }
}

/* PAYPAL POPUP GUIDANCE */

.paypal-popup-guidance {
  display: grid;
  gap: 5px;
  margin: 16px 0;
  border: 1px solid #d8aa35;
  border-radius: 12px;
  padding: 13px 15px;
  color: #ead9ad;
  background: rgba(218, 164, 37, 0.1);
  line-height: 1.45;
}

.paypal-popup-guidance strong {
  color: #f0ba37;
}

.paypal-popup-guidance span {
  font-size: 13px;
}

.paypal-status {
  display: grid;
  gap: 5px;
  line-height: 1.45;
}

.paypal-status strong {
  color: #f0ba37;
}

.paypal-status span {
  font-size: 13px;
}

.paypal-checkout-active .paypal-checkout-card {
  box-shadow:
    0 0 0 2px rgba(232, 176, 42, 0.35),
    0 22px 60px rgba(0, 0, 0, 0.35);
}

.paypal-checkout-active .paypal-status {
  border-color: #e0aa28;
  background: rgba(224, 170, 40, 0.14);
}

/* ORO PREMIUM DANCER CARDS 2026-08-05 */

[data-dashboard-section="dancers"] .dancer-card-grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

[data-dashboard-section="dancers"]
.dancer-card-grid > div:first-child {
  grid-column: 1 / -1;
}

[data-dashboard-section="dancers"]
.oro-dancer-card {
  position: relative;
  min-width: 0;
  min-height: 475px;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 20px;
  border: 1px solid rgba(223, 172, 35, 0.32);
  border-radius: 14px;
  background:
    linear-gradient(
      180deg,
      rgba(31, 28, 22, 0.98),
      rgba(12, 12, 11, 0.98)
    );
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

[data-dashboard-section="dancers"]
.oro-dancer-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background:
    linear-gradient(
      90deg,
      #9a6a05,
      #f4c63d,
      #9a6a05
    );
}

[data-dashboard-section="dancers"]
.oro-dancer-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 198, 61, 0.7);
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.34);
}

[data-dashboard-section="dancers"]
.oro-dancer-card.is-selected {
  border-color: #f4c63d;
  box-shadow:
    0 0 0 2px rgba(244, 198, 61, 0.15),
    0 24px 55px rgba(0, 0, 0, 0.34);
}

[data-dashboard-section="dancers"]
.oro-dancer-card-top {
  position: relative;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-dashboard-section="dancers"]
.oro-dancer-select {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

[data-dashboard-section="dancers"]
.oro-dancer-select input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

[data-dashboard-section="dancers"]
.oro-dancer-select span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 198, 61, 0.45);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.5);
}

[data-dashboard-section="dancers"]
.oro-dancer-select input:checked + span {
  border-color: #f4c63d;
  color: #111111;
  background: #f4c63d;
}

[data-dashboard-section="dancers"]
.oro-dancer-select input:checked + span::after {
  content: "✓";
  font-size: 15px;
  font-weight: 900;
}

[data-dashboard-section="dancers"]
.oro-dancer-avatar {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border: 2px solid #d9a51e;
  border-radius: 50%;
  color: #2c2108;
  background:
    linear-gradient(
      145deg,
      #fff2b2,
      #d5a01c
    );
  box-shadow:
    0 14px 30px rgba(213, 160, 28, 0.22);
  font-size: 29px;
  font-weight: 1000;
  letter-spacing: 1px;
}

[data-dashboard-section="dancers"]
.oro-dancer-identity {
  min-height: 92px;
  display: grid;
  align-content: start;
  justify-items: center;
  margin-top: 12px;
  text-align: center;
}

[data-dashboard-section="dancers"]
.oro-dancer-identity h3 {
  min-height: auto;
  margin: 0 0 11px;
  color: #ffffff;
  font-size: 23px;
  line-height: 1.2;
  text-align: center;
}

[data-dashboard-section="dancers"]
.oro-dancer-status {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 5px 10px;
  border: 1px solid rgba(244, 198, 61, 0.3);
  border-radius: 999px;
  color: #f4c63d;
  background: rgba(244, 198, 61, 0.07);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

[data-dashboard-section="dancers"]
.oro-dancer-information {
  margin: 15px 0 22px;
  border-top: 1px solid rgba(244, 198, 61, 0.16);
  border-bottom: 1px solid rgba(244, 198, 61, 0.16);
}

[data-dashboard-section="dancers"]
.oro-dancer-information > div {
  min-height: 62px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  padding: 10px 5px;
  text-align: center;
}

[data-dashboard-section="dancers"]
.oro-dancer-information > div + div {
  border-top: 1px solid rgba(244, 198, 61, 0.12);
}

[data-dashboard-section="dancers"]
.oro-dancer-information span {
  color: #918a7f;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

[data-dashboard-section="dancers"]
.oro-dancer-information strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.4;
}

[data-dashboard-section="dancers"]
.oro-dancer-register {
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 900;
}

[data-dashboard-section="dancers"]
.oro-dancer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 11px;
}

[data-dashboard-section="dancers"]
.oro-dancer-actions button {
  min-height: 37px;
  border: 1px solid rgba(244, 198, 61, 0.22);
  border-radius: 8px;
  color: #d7d0c5;
  background: rgba(255, 255, 255, 0.02);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

[data-dashboard-section="dancers"]
.oro-dancer-actions button:hover {
  border-color: rgba(244, 198, 61, 0.55);
  color: #ffffff;
  background: rgba(244, 198, 61, 0.08);
}

[data-dashboard-section="dancers"]
.oro-dancer-actions button.danger {
  color: #e67b72;
  border-color: rgba(194, 54, 43, 0.4);
}

[data-dashboard-section="dancers"]
.oro-dancer-actions button.danger:hover {
  color: #ffffff;
  border-color: #c4362b;
  background: rgba(196, 54, 43, 0.18);
}

@media (max-width: 1450px) {
  [data-dashboard-section="dancers"]
  .dancer-card-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1050px) {
  [data-dashboard-section="dancers"]
  .dancer-card-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  [data-dashboard-section="dancers"]
  .dancer-card-grid {
    grid-template-columns: 1fr;
  }

  [data-dashboard-section="dancers"]
  .oro-dancer-card {
    min-height: 445px;
  }
}

/* ORO MY DANCERS FINAL POLISH 2026-08-05 */

[data-dashboard-section="dancers"]
.oro-dancer-card {
  min-height: 535px;
  padding: 34px 24px 22px;
  border-radius: 16px;
}

[data-dashboard-section="dancers"]
.oro-dancer-card-top {
  min-height: 122px;
}

[data-dashboard-section="dancers"]
.oro-dancer-avatar {
  width: 108px;
  height: 108px;
  border-width: 2px;
  font-size: 33px;
}

[data-dashboard-section="dancers"]
.oro-dancer-identity {
  min-height: 104px;
  margin-top: 15px;
}

[data-dashboard-section="dancers"]
.oro-dancer-identity h3 {
  margin-bottom: 13px;
  font-size: 26px;
  letter-spacing: -0.3px;
}

[data-dashboard-section="dancers"]
.oro-dancer-status {
  min-height: 25px;
  padding: 5px 11px;
  font-size: 8px;
  letter-spacing: 1px;
}

[data-dashboard-section="dancers"]
.oro-dancer-information {
  margin: 17px 0 22px;
}

[data-dashboard-section="dancers"]
.oro-dancer-information > div {
  min-height: 64px;
}

[data-dashboard-section="dancers"]
.oro-dancer-information span {
  font-size: 9px;
}

[data-dashboard-section="dancers"]
.oro-dancer-information strong {
  font-size: 14px;
}

[data-dashboard-section="dancers"]
.oro-dancer-register {
  min-height: 51px;
  border-radius: 10px;
  font-size: 15px;
}

[data-dashboard-section="dancers"]
.oro-dancer-actions {
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 12px;
}

[data-dashboard-section="dancers"]
.oro-dancer-actions button {
  min-height: 40px;
  padding: 8px 15px;
  border-radius: 9px;
  font-size: 12px;
}

/*
 * Prevent older global button styles from adding
 * repeated labels or decorative text.
 */
[data-dashboard-section="dancers"]
.oro-dancer-actions button::before,
[data-dashboard-section="dancers"]
.oro-dancer-actions button::after {
  content: none !important;
  display: none !important;
}

[data-dashboard-section="dancers"]
.oro-dancer-actions button:first-child {
  width: 100%;
  color: #ffffff;
}

[data-dashboard-section="dancers"]
.oro-dancer-actions button.danger {
  min-width: 78px;
  color: #e9857d;
  background: transparent;
}

[data-dashboard-section="dancers"]
.oro-dancer-select span {
  width: 23px;
  height: 23px;
  border-radius: 7px;
}

[data-dashboard-section="dancers"]
.oro-dancer-card:hover .oro-dancer-avatar {
  box-shadow:
    0 18px 38px rgba(213, 160, 28, 0.3);
}

@media (max-width: 1450px) {
  [data-dashboard-section="dancers"]
  .oro-dancer-card {
    min-height: 515px;
  }

  [data-dashboard-section="dancers"]
  .oro-dancer-avatar {
    width: 98px;
    height: 98px;
    font-size: 30px;
  }

  [data-dashboard-section="dancers"]
  .oro-dancer-identity h3 {
    font-size: 23px;
  }
}

@media (max-width: 680px) {
  [data-dashboard-section="dancers"]
  .oro-dancer-card {
    min-height: 500px;
    padding: 30px 21px 20px;
  }

  [data-dashboard-section="dancers"]
  .oro-dancer-actions {
    grid-template-columns: 1fr;
  }

  [data-dashboard-section="dancers"]
  .oro-dancer-actions button.danger {
    width: 100%;
  }
}

/* ORO MY DANCERS FINAL POLISH 2026-08-05 */

[data-dashboard-section="dancers"]
.oro-dancer-card {
  min-height: 535px;
  padding: 34px 24px 22px;
  border-radius: 16px;
}

[data-dashboard-section="dancers"]
.oro-dancer-card-top {
  min-height: 122px;
}

[data-dashboard-section="dancers"]
.oro-dancer-avatar {
  width: 108px;
  height: 108px;
  border-width: 2px;
  font-size: 33px;
}

[data-dashboard-section="dancers"]
.oro-dancer-identity {
  min-height: 104px;
  margin-top: 15px;
}

[data-dashboard-section="dancers"]
.oro-dancer-identity h3 {
  margin-bottom: 13px;
  font-size: 26px;
  letter-spacing: -0.3px;
}

[data-dashboard-section="dancers"]
.oro-dancer-status {
  min-height: 25px;
  padding: 5px 11px;
  font-size: 8px;
  letter-spacing: 1px;
}

[data-dashboard-section="dancers"]
.oro-dancer-information {
  margin: 17px 0 22px;
}

[data-dashboard-section="dancers"]
.oro-dancer-information > div {
  min-height: 64px;
}

[data-dashboard-section="dancers"]
.oro-dancer-information span {
  font-size: 9px;
}

[data-dashboard-section="dancers"]
.oro-dancer-information strong {
  font-size: 14px;
}

[data-dashboard-section="dancers"]
.oro-dancer-register {
  min-height: 51px;
  border-radius: 10px;
  font-size: 15px;
}

[data-dashboard-section="dancers"]
.oro-dancer-actions {
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 12px;
}

[data-dashboard-section="dancers"]
.oro-dancer-actions button {
  min-height: 40px;
  padding: 8px 15px;
  border-radius: 9px;
  font-size: 12px;
}

/*
 * Prevent older global button styles from adding
 * repeated labels or decorative text.
 */
[data-dashboard-section="dancers"]
.oro-dancer-actions button::before,
[data-dashboard-section="dancers"]
.oro-dancer-actions button::after {
  content: none !important;
  display: none !important;
}

[data-dashboard-section="dancers"]
.oro-dancer-actions button:first-child {
  width: 100%;
  color: #ffffff;
}

[data-dashboard-section="dancers"]
.oro-dancer-actions button.danger {
  min-width: 78px;
  color: #e9857d;
  background: transparent;
}

[data-dashboard-section="dancers"]
.oro-dancer-select span {
  width: 23px;
  height: 23px;
  border-radius: 7px;
}

[data-dashboard-section="dancers"]
.oro-dancer-card:hover .oro-dancer-avatar {
  box-shadow:
    0 18px 38px rgba(213, 160, 28, 0.3);
}

@media (max-width: 1450px) {
  [data-dashboard-section="dancers"]
  .oro-dancer-card {
    min-height: 515px;
  }

  [data-dashboard-section="dancers"]
  .oro-dancer-avatar {
    width: 98px;
    height: 98px;
    font-size: 30px;
  }

  [data-dashboard-section="dancers"]
  .oro-dancer-identity h3 {
    font-size: 23px;
  }
}

@media (max-width: 680px) {
  [data-dashboard-section="dancers"]
  .oro-dancer-card {
    min-height: 500px;
    padding: 30px 21px 20px;
  }

  [data-dashboard-section="dancers"]
  .oro-dancer-actions {
    grid-template-columns: 1fr;
  }

  [data-dashboard-section="dancers"]
  .oro-dancer-actions button.danger {
    width: 100%;
  }
}

/* ORO COMPACT DANCER CARDS 2026-08-05 */

[data-dashboard-section="dancers"]
.oro-dancer-card {
  min-height: 440px;
  padding: 24px 20px 17px;
}

[data-dashboard-section="dancers"]
.oro-dancer-card-top {
  min-height: 94px;
}

[data-dashboard-section="dancers"]
.oro-dancer-avatar {
  width: 84px;
  height: 84px;
  font-size: 27px;
}

[data-dashboard-section="dancers"]
.oro-dancer-identity {
  min-height: 78px;
  margin-top: 8px;
}

[data-dashboard-section="dancers"]
.oro-dancer-identity h3 {
  margin-bottom: 9px;
  font-size: 22px;
}

[data-dashboard-section="dancers"]
.oro-dancer-status {
  min-height: 22px;
  padding: 4px 9px;
  font-size: 7px;
}

[data-dashboard-section="dancers"]
.oro-dancer-information {
  margin: 10px 0 16px;
}

[data-dashboard-section="dancers"]
.oro-dancer-information > div {
  min-height: 50px;
  padding: 8px 4px;
  gap: 4px;
}

[data-dashboard-section="dancers"]
.oro-dancer-information span {
  font-size: 8px;
}

[data-dashboard-section="dancers"]
.oro-dancer-information strong {
  font-size: 12px;
}

[data-dashboard-section="dancers"]
.oro-dancer-register {
  min-height: 44px;
  font-size: 13px;
}

[data-dashboard-section="dancers"]
.oro-dancer-actions {
  gap: 8px;
  margin-top: 9px;
}

[data-dashboard-section="dancers"]
.oro-dancer-actions button {
  min-height: 35px;
  padding: 6px 11px;
  font-size: 10px;
}

[data-dashboard-section="dancers"]
.oro-dancer-actions button.danger {
  min-width: 68px;
}

[data-dashboard-section="dancers"]
.dancer-card-grid {
  gap: 16px;
}

@media (max-width: 1450px) {
  [data-dashboard-section="dancers"]
  .oro-dancer-card {
    min-height: 425px;
  }

  [data-dashboard-section="dancers"]
  .oro-dancer-avatar {
    width: 78px;
    height: 78px;
    font-size: 25px;
  }

  [data-dashboard-section="dancers"]
  .oro-dancer-identity h3 {
    font-size: 20px;
  }
}

@media (max-width: 680px) {
  [data-dashboard-section="dancers"]
  .oro-dancer-card {
    min-height: 410px;
    padding: 22px 18px 16px;
  }
}

/* ORO FAMILY RESULTS GRAPHICS SIZE FIX 2026-08-05 */

/*
 * Keep all result cards aligned at the top.
 * Prevent one card's media from stretching neighboring cards.
 */
#resultsList {
  align-items: start !important;
}

#resultsList .result-card {
  min-width: 0;
  align-self: start;
  overflow: hidden;
}

/*
 * Keep participant graphics in a controlled thumbnail grid.
 */
#resultsList .result-graphics-grid {
  display: grid;
  grid-template-columns:
    repeat(auto-fit, minmax(180px, 240px));
  justify-content: start;
  align-items: start;
  gap: 16px;
  width: 100%;
}

/*
 * Stop the graphic card from inheriting excessive height.
 */
#resultsList .result-graphic-card {
  width: 100%;
  min-width: 0;
  max-width: 240px;
  align-self: start;
  overflow: hidden;
}

/*
 * Create a fixed preview frame.
 */
#resultsList .result-graphic-preview {
  position: relative;
  display: block;
  width: 100%;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #050505;
}

/*
 * Critical correction.
 * Do not allow the image to stretch to the result-card height.
 */
#resultsList .result-graphic-preview img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center;
  background: #050505;
}

/*
 * Protect the older participant graphic markup too.
 */
#resultsList .participant-graphic-preview {
  width: 100%;
  max-width: 240px;
  margin: 0;
  overflow: hidden;
}

#resultsList .participant-graphic-preview img {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-height: 300px !important;
  object-fit: contain !important;
  object-position: center;
}

/*
 * Keep result information compact.
 */
#resultsList .result-media-section {
  min-width: 0;
  overflow: hidden;
}

#resultsList .result-graphic-footer,
#resultsList .result-graphic-information {
  min-width: 0;
}

/*
 * Three-column Results cards need smaller graphic previews.
 */
@media (min-width: 1200px) {
  #resultsList .result-graphics-grid {
    grid-template-columns:
      repeat(auto-fit, minmax(150px, 200px));
  }

  #resultsList .result-graphic-card,
  #resultsList .participant-graphic-preview {
    max-width: 200px;
  }
}

@media (max-width: 760px) {
  #resultsList .result-graphics-grid {
    grid-template-columns:
      minmax(0, 1fr);
  }

  #resultsList .result-graphic-card,
  #resultsList .participant-graphic-preview {
    max-width: 100%;
  }
}

/* ORO DIVISION RELEASE FAMILY RESULTS 2026-08-05 */

#resultsList {
  display: grid !important;
  grid-template-columns:
    repeat(auto-fit, minmax(320px, 520px)) !important;
  justify-content: center;
  align-items: start !important;
  gap: 24px !important;
}

#resultsList .oro-family-result-card {
  width: 100%;
  min-height: 0 !important;
  align-self: start;
  padding: 28px;
  overflow: hidden;
}

.oro-result-celebration {
  text-align: center;
}

.oro-result-symbol {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 20px auto 16px;
  border: 2px solid #d9a514;
  border-radius: 50%;
  color: #171109;
  background:
    linear-gradient(
      145deg,
      #fff0a3,
      #e3a91c
    );
  font-size: 22px;
  font-weight: 900;
  box-shadow:
    0 16px 34px
    rgba(215, 163, 26, 0.22);
}

.oro-result-celebration h3 {
  margin: 0;
  font-size: clamp(25px, 3vw, 34px);
}

.oro-result-celebration p {
  max-width: 440px;
  margin: 12px auto 0;
  line-height: 1.55;
  opacity: 0.82;
}

.oro-result-summary {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.oro-result-summary > div {
  padding: 12px 10px;
  border:
    1px solid
    rgba(216, 167, 39, 0.24);
  border-radius: 12px;
  text-align: center;
}

.oro-result-summary span {
  display: block;
  margin-bottom: 5px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.62;
}

.oro-result-summary strong {
  display: block;
  font-size: 13px;
}

.oro-result-featured-graphic {
  width: min(100%, 310px);
  margin: 0 auto;
}

.oro-result-featured-graphic img {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-height: 430px !important;
  object-fit: contain !important;
  border:
    1px solid
    rgba(216, 167, 39, 0.48);
  border-radius: 14px;
  background: #050505;
}

.oro-result-featured-graphic .button {
  margin-top: 12px;
}

.oro-result-graphic-pending {
  padding: 34px 20px;
  border:
    1px dashed
    rgba(216, 167, 39, 0.4);
  border-radius: 14px;
  text-align: center;
  opacity: 0.72;
}

.oro-family-result-winner {
  box-shadow:
    0 24px 70px
    rgba(213, 160, 28, 0.14);
}

@media (max-width: 680px) {
  #resultsList {
    grid-template-columns:
      minmax(0, 1fr) !important;
  }

  .oro-result-summary {
    grid-template-columns: 1fr;
  }
}

/* ORO FAMILY FEEDBACK STYLES V1 */
.dashboard-nav-link {
  position: relative;
}

.dashboard-nav-count {
  position: absolute;
  top: 50%;
  right: 12px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  background: #d79b19;
  color: #111;
  font-size: 11px;
  font-weight: 900;
}

.dashboard-nav-link.active .dashboard-nav-count {
  background: #111;
  color: #f3c64d;
}

.family-feedback-panel {
  overflow: visible;
}

.family-feedback-summary {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.family-feedback-summary article {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 118px;
  padding: 19px;
  border: 1px solid rgba(225, 177, 58, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.012)
    );
}

.family-feedback-summary span {
  color: #c7bda9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.family-feedback-summary strong {
  color: #f3c64d;
  font-size: 30px;
  line-height: 1;
}

.family-feedback-summary small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.family-feedback-list {
  display: grid;
  gap: 20px;
}

.family-feedback-card {
  overflow: hidden;
  border: 1px solid rgba(225, 177, 58, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(22, 20, 17, 0.98),
      rgba(9, 9, 8, 0.99)
    );
}

.family-feedback-card-ready {
  border-color: rgba(75, 194, 119, 0.45);
}

.family-feedback-card-preparing {
  border-color: rgba(225, 177, 58, 0.35);
}

.family-feedback-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 23px 24px 19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.family-feedback-card-header h3 {
  margin: 7px 0 5px;
  color: #fff;
  font-size: 24px;
}

.family-feedback-card-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.family-feedback-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.family-feedback-status.ready {
  border: 1px solid rgba(75, 194, 119, 0.5);
  background: rgba(38, 130, 72, 0.25);
  color: #9bf0b8;
}

.family-feedback-status.preparing {
  border: 1px solid rgba(225, 177, 58, 0.45);
  background: rgba(225, 177, 58, 0.12);
  color: #f3c64d;
}

.family-feedback-details {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.family-feedback-details > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 85px;
  padding: 17px 20px;
  background: #11100e;
}

.family-feedback-details span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.family-feedback-details strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
}

.family-feedback-introduction {
  padding: 21px 24px 0;
}

.family-feedback-introduction strong {
  color: #f3c64d;
  font-size: 17px;
}

.family-feedback-introduction p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.family-feedback-audio-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 20px 24px 24px;
}

.family-feedback-audio-card {
  padding: 16px;
  border: 1px solid rgba(225, 177, 58, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.family-feedback-audio-heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
}

.family-feedback-judge-number {
  width: 37px;
  height: 37px;
  border: 1px solid rgba(225, 177, 58, 0.48);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 177, 58, 0.1);
  color: #f3c64d;
  font-weight: 900;
}

.family-feedback-audio-heading span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.family-feedback-audio-heading h4 {
  margin: 3px 0 0;
  color: #fff;
  font-size: 14px;
}

.family-feedback-ready-badge {
  color: #8ee7ac !important;
}

.family-feedback-audio-card audio {
  width: 100%;
  margin-top: 16px;
}

.family-feedback-audio-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.family-feedback-audio-footer span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.family-feedback-audio-footer a {
  color: #f3c64d;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
}

.family-feedback-preparing-message {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 21px 24px 24px;
  padding: 18px;
  border: 1px solid rgba(225, 177, 58, 0.25);
  border-radius: 13px;
  background: rgba(225, 177, 58, 0.07);
}

.family-feedback-preparing-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border: 1px solid rgba(225, 177, 58, 0.5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f3c64d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.family-feedback-preparing-message strong {
  color: #f3c64d;
}

.family-feedback-preparing-message p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .family-feedback-audio-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .family-feedback-summary,
  .family-feedback-audio-grid,
  .family-feedback-details {
    grid-template-columns: 1fr;
  }

  .family-feedback-card-header,
  .family-feedback-preparing-message {
    align-items: flex-start;
    flex-direction: column;
  }

  .family-feedback-audio-grid {
    padding: 16px;
  }

  .family-feedback-card-header {
    padding: 19px;
  }

  .family-feedback-introduction {
    padding: 19px 19px 0;
  }

  .family-feedback-preparing-message {
    margin: 17px;
  }
}


/* =========================================================
   ORO FAMILY HUB V1
   2026-08-18
   ========================================================= */

.oro-family-hub {
  width: 100%;
  max-width: 1180px;
}

.oro-family-hub-intro {
  margin-bottom: 28px;
}

.oro-family-hub-intro h2 {
  margin: 8px 0 8px;
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.oro-family-hub-intro p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 16px;
}

.oro-family-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.oro-family-category {
  position: relative;
  width: 100%;
  min-height: 155px;
  padding: 24px;
  border: 1px solid rgba(231,181,52,.26);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 62px minmax(0,1fr) auto;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(230,176,38,.11),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      rgba(25,23,19,.98),
      rgba(8,8,8,.99)
    );
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.oro-family-category:hover {
  transform: translateY(-3px);
  border-color: rgba(235,188,61,.58);
  box-shadow:
    0 18px 45px rgba(0,0,0,.30),
    0 0 0 1px rgba(224,170,34,.08);
}

.oro-family-category-photogenic {
  border-color: rgba(236,189,62,.55);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(235,185,47,.19),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      rgba(30,26,18,.99),
      rgba(8,8,7,.99)
    );
}

.oro-family-category-icon {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(231,181,52,.52);
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #15110a;
  background:
    linear-gradient(
      145deg,
      #f8dc79,
      #d59a16
    );
  font-size: 23px;
  font-weight: 950;
  box-shadow:
    0 12px 28px rgba(205,149,22,.16);
}

.oro-family-category-content {
  min-width: 0;
  display: block;
}

.oro-family-category-content strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
}

.oro-family-category-content small {
  display: block;
  max-width: 380px;
  color: rgba(255,255,255,.56);
  font-size: 13px;
  line-height: 1.5;
}

.oro-family-category-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(232,184,55,.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #edc75c;
  font-size: 29px;
  line-height: 1;
}

.oro-family-category-status {
  padding: 7px 10px;
  border: 1px solid rgba(232,184,55,.25);
  border-radius: 999px;
  color: #dcb346;
  background: rgba(225,173,38,.07);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}


/* Coming soon notice */

.oro-family-coming-soon {
  position: relative;
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(230,180,50,.32);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  background:
    linear-gradient(
      135deg,
      rgba(35,29,17,.98),
      rgba(12,11,9,.99)
    );
}

.oro-family-coming-soon[hidden] {
  display: none !important;
}

.oro-family-coming-soon-mark {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #111;
  background:
    linear-gradient(
      145deg,
      #f5d66f,
      #d39916
    );
  font-size: 12px;
  font-weight: 950;
}

.oro-family-coming-soon span {
  color: #dcae36;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.oro-family-coming-soon h3 {
  margin: 4px 0 5px;
  color: #fff;
  font-size: 22px;
}

.oro-family-coming-soon p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 13px;
}

.oro-family-coming-soon-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.06);
  font-size: 21px;
  cursor: pointer;
}


/* Tablet */

@media (max-width: 1050px) {

  .oro-family-category-grid {
    grid-template-columns: 1fr;
  }

}


/* Mobile */

@media (max-width: 760px) {

  .oro-family-hub-intro {
    margin-bottom: 20px;
  }

  .oro-family-category-grid {
    gap: 12px;
  }

  .oro-family-category {
    min-height: 128px;
    padding: 18px;
    grid-template-columns: 52px minmax(0,1fr);
    gap: 15px;
    border-radius: 16px;
  }

  .oro-family-category-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 19px;
  }

  .oro-family-category-content strong {
    font-size: 20px;
  }

  .oro-family-category-content small {
    font-size: 12px;
  }

  .oro-family-category-arrow,
  .oro-family-category-status {
    grid-column: 2;
    justify-self: start;
  }

  .oro-family-category-arrow {
    width: 34px;
    height: 34px;
    font-size: 23px;
  }

  .oro-family-coming-soon {
    align-items: flex-start;
    padding: 20px;
  }

  .oro-family-coming-soon-mark {
    width: 50px;
    height: 50px;
  }

}



/* =========================================================
   ORO FAMILY HUB SIMPLE V2
   ========================================================= */

.oro-family-hub {
  max-width: 1200px;
}

.oro-family-hub-intro {
  margin-bottom: 32px;
}

.oro-family-hub-intro h2 {
  margin-top: 8px;
}

.oro-simple-tools {
  display: grid !important;
  grid-template-columns:
    repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.oro-simple-tool {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-width: 0;
  min-height: 0;
  padding: 22px;

  border:
    1px solid
    rgba(255, 224, 126, .72);

  border-radius: 22px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 20px;

  color: #171107;

  background:
    radial-gradient(
      circle at 30% 18%,
      rgba(255,255,255,.34),
      transparent 27%
    ),
    linear-gradient(
      145deg,
      #f5d66c 0%,
      #deb034 46%,
      #c68b12 100%
    );

  box-shadow:
    inset 0 1px 0
    rgba(255,255,255,.46),
    0 16px 36px
    rgba(177,124,13,.18);

  font: inherit;

  text-align: center;

  cursor: pointer;

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    filter .18s ease;
}

.oro-simple-tool:hover {
  transform:
    translateY(-5px);

  filter:
    brightness(1.06);

  box-shadow:
    inset 0 1px 0
    rgba(255,255,255,.56),
    0 22px 45px
    rgba(185,130,15,.28);
}

.oro-simple-tool:active {
  transform:
    translateY(-1px)
    scale(.985);
}

.oro-simple-tool-icon {
  display: grid;
  place-items: center;

  width: 64px;
  height: 64px;

  color: #211706;

  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}

.oro-simple-tool strong {
  display: block;

  color: #171107;

  font-size:
    clamp(
      18px,
      1.7vw,
      25px
    );

  font-weight: 900;

  letter-spacing:
    -.02em;
}


/* Hide previous detailed card styles
   from the simple home screen */

.oro-simple-tools
.oro-family-category-content,
.oro-simple-tools
.oro-family-category-status,
.oro-simple-tools
.oro-family-category-arrow {
  display: none !important;
}


/* Tablet */

@media (
  max-width: 1000px
) {

  .oro-simple-tools {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      ) !important;
  }

}


/* Mobile */

@media (
  max-width: 760px
) {

  .oro-family-hub-intro {
    margin-bottom: 20px;
  }

  .oro-family-hub-intro h2 {
    font-size: 32px;
  }

  .oro-simple-tools {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      ) !important;

    gap: 12px !important;
  }

  .oro-simple-tool {
    padding: 14px;
    border-radius: 17px;
    gap: 10px;
  }

  .oro-simple-tool-icon {
    width: 46px;
    height: 46px;
    font-size: 31px;
  }

  .oro-simple-tool strong {
    font-size: 16px;
  }

}


/* Small phones */

@media (
  max-width: 390px
) {

  .oro-simple-tools {
    gap: 9px !important;
  }

  .oro-simple-tool {
    padding: 10px;
  }

  .oro-simple-tool-icon {
    width: 40px;
    height: 40px;
    font-size: 27px;
  }

  .oro-simple-tool strong {
    font-size: 14px;
  }

}

