/* GenZ DMK Redesign Theme Variables */
:root {
  --gz-bg-primary: #0A0A0A;
  --gz-bg-secondary: #111111;
  --gz-accent-red: #E8232A;
  --gz-accent-gold: #F5A623;
  --gz-text-main: #F5F0E8;
  --gz-text-muted: #A0A0A0;

  /* Legacy vars for backwards compatibility if needed */
  --eo-red: #E8232A;
  --eo-red-hover: #ef233c;
  --eo-red-dark: #9d0208;
  --eo-glass: rgba(10, 10, 10, 0.72);
  --eo-glass-border: rgba(255, 255, 255, 0.08);
  --eo-text: #F5F0E8;
  --eo-text-muted: #A0A0A0;
  --eo-btn-text: #F5F0E8;
  --eo-font: "Inter", system-ui, sans-serif;
}

.bg-grain {
  position: relative;
}

.bg-grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
  z-index: 0;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body.eo-page {
  font-family: var(--eo-font);
  color: var(--eo-text);
  background: #0a0505;
  -webkit-font-smoothing: antialiased;
}

/* Background */
.eo-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.eo-bg__image {
  position: absolute;
  inset: 0;
  background: url("../images/hero-bg.png") center 42% / cover no-repeat;
  transform: scale(1.03);
  filter: saturate(1.08) brightness(0.92);
}

.eo-bg__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(30, 6, 2, 0.35) 0%,
      rgba(8, 2, 1, 0.5) 40%,
      rgba(4, 1, 0, 0.72) 100%),
    radial-gradient(ellipse 90% 70% at 50% 45%,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.55) 100%);
}

.eo-bg__embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    radial-gradient(2px 2px at 12% 28%, rgba(255, 180, 80, 0.7), transparent),
    radial-gradient(2px 2px at 78% 18%, rgba(255, 140, 60, 0.65), transparent),
    radial-gradient(1.5px 1.5px at 45% 62%, rgba(255, 200, 100, 0.5), transparent),
    radial-gradient(2px 2px at 88% 72%, rgba(255, 120, 50, 0.6), transparent);
  animation: eo-embers 8s ease-in-out infinite alternate;
}

@keyframes eo-embers {
  from {
    opacity: 0.6;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(-6px);
  }
}

/* Layout */
.eo-main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
}

.eo-card {
  width: 100%;
  max-width: 720px;
  padding: 2.75rem 2.5rem 2.5rem;
  background: var(--eo-glass);
  border: 1px solid var(--eo-glass-border);
  border-radius: 4px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: center;
}

.eo-card--wide {
  max-width: 720px;
  text-align: left;
}

/* Registration form — wide, readable two-column layout */
.eo-card--form {
  width: 100%;
  max-width: min(920px, 96vw);
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 4vw, 2.5rem);
  text-align: left;
  border-radius: 8px;
}

.eo-page--with-nav .eo-main {
  min-height: auto;
}

.eo-page--with-nav .eo-card {
  margin-top: 0;
}

.eo-page--register .eo-main,
.eo-page--with-nav .eo-main {
  align-items: flex-start;
  padding-top: clamp(1.5rem, 4vh, 2.5rem);
  padding-bottom: clamp(2rem, 5vh, 3rem);
}

.eo-page--content .eo-card {
  max-width: min(920px, 96vw);
  text-align: left;
}

.eo-content-page__head {
  margin-bottom: 1.75rem;
}

.eo-content-page__section {
  margin-top: 1.75rem;
}

.eo-content-page__section-title {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--eo-text);
}

.eo-content-page__section p,
.eo-content-page__list {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--eo-text-muted);
}

.eo-content-page__list {
  padding-left: 1.2rem;
}

.eo-content-page__list li+li {
  margin-top: 0.45rem;
}

.eo-content-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.eo-movement-manifesto--page {
  margin-top: 0.5rem;
  text-align: left;
}

.eo-team-section {
  margin-top: 2.25rem;
}

.eo-team-section__title {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--eo-text);
}

.eo-team-section__lead {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--eo-text-muted);
}

.eo-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.eo-team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  text-align: center;
}

.eo-team-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(214, 40, 40, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.eo-team-card__name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--eo-text);
}

.eo-team-card__role {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--eo-text-muted);
}

.eo-page--with-nav+.eo-site-footer,
body.eo-page--with-nav .eo-site-footer {
  position: relative;
  z-index: 1;
}

.eo-form-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3.5vw, 1.65rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--eo-text);
}

.eo-form-intro {
  margin: 0 0 1.75rem;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  line-height: 1.65;
  color: var(--eo-text-muted);
}

/* GenZ logo — centered, scales with viewport */
.eo-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto 1.25rem;
  text-align: center;
}

.eo-logo__img {
  display: block;
  width: clamp(140px, 42vw, 260px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.55));
}

.eo-card--wide .eo-logo {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .eo-logo__img {
    width: clamp(160px, 28vw, 280px);
  }
}

.eo-card__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--eo-text);
}

.eo-card__subtitle {
  margin: 0 0 2rem;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--eo-text-muted);
}

/* CTA */
.eo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 220px;
  padding: 0.85rem 1.75rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--eo-btn-text);
  text-decoration: none;
  background: var(--eo-red);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(214, 40, 40, 0.45);
}

.eo-cta:hover {
  background: var(--eo-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(239, 35, 60, 0.5);
}

.eo-cta:active {
  transform: translateY(0);
}

.eo-cta--block {
  width: 100%;
  margin-top: 0.35rem;
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
  border-radius: 8px;
}

.eo-cta--white,
.eo-cta--white:hover {
  color: #fff;
}

.eo-card--form .eo-link-back {
  display: block;
  text-align: center;
  margin-top: 1.75rem;
}

/* Date picker */
.eo-date-wrap {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}

.eo-date-input {
  flex: 1;
  min-width: 0;
  cursor: pointer;
}

.eo-date-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  min-height: 2.75rem;
  padding: 0;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(214, 40, 40, 0.35);
  border: 1px solid rgba(214, 40, 40, 0.5);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.eo-date-trigger:hover {
  background: rgba(214, 40, 40, 0.55);
  border-color: rgba(214, 40, 40, 0.75);
}

.eo-date-trigger:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.25);
}

/* Flatpickr — dark theme to match form */
.flatpickr-calendar {
  background: #1a1210;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  border-radius: 8px;
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-weekdays,
span.flatpickr-weekday {
  background: #1a1210;
  color: rgba(255, 255, 255, 0.9);
  fill: rgba(255, 255, 255, 0.9);
}

.flatpickr-day {
  color: rgba(255, 255, 255, 0.88);
}

.flatpickr-day:hover,
.flatpickr-day:focus {
  background: rgba(214, 40, 40, 0.35);
  border-color: rgba(214, 40, 40, 0.35);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--eo-red);
  border-color: var(--eo-red);
}

.flatpickr-day.today {
  border-color: rgba(214, 40, 40, 0.65);
}

.flatpickr-day.flatpickr-disabled {
  color: rgba(255, 255, 255, 0.25);
}

.eo-cta__arrow {
  font-size: 1.1em;
  line-height: 1;
}

.eo-link-back {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--eo-text-muted);
  text-decoration: none;
}

.eo-link-back:hover {
  color: var(--eo-text);
  text-decoration: underline;
}

/* Form */
.eo-form {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.eo-required,
.eo-required-note {
  color: #ff8a8a;
}

.eo-label {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.45rem;
  line-height: 1.35;
}

.eo-label__main {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.eo-label__sub {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.58);
}

.eo-field label:not(.eo-label) {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
}

.eo-card--form .eo-field--row .eo-field label:not(.eo-label) {
  white-space: nowrap;
}

@media (max-width: 679px) {
  .eo-card--form .eo-field--row .eo-field label:not(.eo-label) {
    white-space: normal;
  }
}

.eo-field-hint {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: right;
}

.eo-field-hint--warn {
  color: #ffb4b4;
}

.eo-field-error {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #ff9b9b;
}

.eo-field-error[hidden] {
  display: none;
}

.eo-field--invalid input,
.eo-field--invalid select,
.eo-field--invalid textarea {
  border-color: rgba(255, 100, 100, 0.85);
  box-shadow: 0 0 0 3px rgba(255, 80, 80, 0.2);
}

.eo-input--error {
  border-color: rgba(255, 100, 100, 0.85) !important;
  box-shadow: 0 0 0 3px rgba(255, 80, 80, 0.25) !important;
}

.eo-field input,
.eo-field select,
.eo-field textarea {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--eo-text);
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.eo-field select {
  padding-right: 2.25rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' fill-opacity='0.7' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 12px;
}

.eo-field input::placeholder,
.eo-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.eo-field input:hover,
.eo-field select:hover,
.eo-field textarea:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.eo-field input:focus,
.eo-field select:focus,
.eo-field textarea:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.52);
  border-color: rgba(214, 40, 40, 0.75);
  box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.22);
}

.eo-field textarea {
  min-height: 88px;
  resize: vertical;
}

.eo-field {
  min-width: 0;
}

.eo-profession-other {
  margin-top: 0.65rem;
}

.eo-profession-other input[type='text'] {
  width: 100%;
}

.eo-field--row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

@media (min-width: 680px) {
  .eo-field--row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
  }
}

@media (max-width: 679px) {
  .eo-card--form {
    max-width: 100%;
  }
}

.eo-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--eo-text-muted);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.eo-checkbox input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Alerts */
.eo-alert {
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  border-radius: 2px;
  text-align: left;
}

.eo-alert--error {
  background: rgba(180, 20, 20, 0.35);
  border: 1px solid rgba(255, 100, 100, 0.35);
  color: #ffd4d4;
}

.eo-alert--success {
  background: rgba(20, 100, 40, 0.35);
  border: 1px solid rgba(100, 220, 140, 0.35);
  color: #d4ffe4;
}

.eo-alert--pending {
  background: rgba(233, 163, 25, 0.2);
  border: 1px solid rgba(255, 200, 87, 0.45);
  color: #ffe6b0;
}

.eo-reg-status {
  margin: 0 0 1rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 8px;
}

.eo-reg-status--open {
  background: rgba(45, 157, 95, 0.2);
  border: 1px solid rgba(110, 231, 160, 0.45);
  color: #b8f5d0;
}

.eo-reg-status--pending {
  background: rgba(233, 163, 25, 0.2);
  border: 1px solid rgba(255, 200, 87, 0.45);
  color: #ffe6b0;
}

.eo-reg-status--closed {
  background: rgba(214, 40, 40, 0.2);
  border: 1px solid rgba(255, 138, 138, 0.45);
  color: #ffd4d4;
}

.eo-event-reg-window {
  margin-bottom: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.eo-event-terms {
  margin: 1.5rem 0;
}

.eo-event-terms__body {
  max-height: min(320px, 50vh);
  overflow-y: auto;
  padding: 1rem 1.15rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--eo-text-muted);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.eo-event-terms__body p {
  margin: 0 0 0.75rem;
}

.eo-terms-accept {
  margin-bottom: 1rem;
}

.eo-terms-accept label {
  align-items: flex-start;
}

.eo-terms-accept a.eo-inline-link {
  font-weight: 600;
}

/* Success */
.eo-success-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

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

/* Landing page */
.eo-page--landing .eo-main {
  align-items: flex-start;
  padding-top: clamp(1.25rem, 3vh, 2rem);
  padding-bottom: clamp(2rem, 5vh, 3rem);
}

.eo-card--landing {
  max-width: min(1100px, 96vw);
  text-align: left;
  border-radius: 8px;
}

.eo-landing-hero {
  text-align: center;
  margin-bottom: 2rem;
}

.eo-landing-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.eo-landing-tagline {
  margin: 0 auto;
  max-width: 52ch;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  line-height: 1.65;
  color: var(--eo-text-muted);
}

.eo-landing-section {
  margin-bottom: 2.25rem;
}

.eo-section-heading {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--eo-text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.eo-landing-empty {
  margin: 0;
  padding: 1.5rem;
  text-align: center;
  color: var(--eo-text-muted);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
}

.eo-event-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.eo-event-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.eo-event-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.15rem;
  text-decoration: none;
  color: var(--eo-text);
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: border-color 0.2s, transform 0.15s, background 0.2s;
  height: 100%;
}

.eo-event-card:hover {
  border-color: rgba(214, 40, 40, 0.55);
  background: rgba(214, 40, 40, 0.12);
  transform: translateY(-2px);
}

.eo-event-card--row {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  height: auto;
}

.eo-event-card__date {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffc857;
}

.eo-event-card__title {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
}

.eo-event-card__meta {
  font-size: 0.85rem;
  color: var(--eo-text-muted);
}

.eo-event-card__link {
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--eo-red-hover);
}

.eo-action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.eo-action-card {
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.eo-action-card--member {
  border-color: rgba(214, 40, 40, 0.35);
}

.eo-action-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.eo-action-card__text {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--eo-text-muted);
}

.eo-cta--outline {
  background: transparent;
  color: var(--eo-text);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.eo-cta--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(214, 40, 40, 0.5);
}

.eo-cta--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--eo-text);
  box-shadow: none;
  text-decoration: none;
  display: inline-flex;
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

.eo-btn-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s, transform 0.15s;
}

.eo-btn-google--block {
  max-width: none;
}

.eo-btn-google:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}

.eo-btn-google__icon {
  display: flex;
  flex-shrink: 0;
}

.eo-field-hint--center {
  text-align: center;
  margin-top: 1rem;
}

.eo-inline-link {
  color: #ffc857;
  text-decoration: underline;
}

.eo-inline-link:hover {
  color: var(--eo-text);
}

.eo-landing-signed-in {
  text-align: center;
  font-size: 0.88rem;
  color: var(--eo-text-muted);
  margin: 0;
}

.eo-member-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.eo-member-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.eo-member-meta {
  font-size: 0.88rem;
  color: var(--eo-text-muted);
}

.eo-member-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.eo-event-detail {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0.5rem 1rem;
  margin: 1.25rem 0;
  font-size: 0.92rem;
}

.eo-event-detail dt {
  color: var(--eo-text-muted);
  margin: 0;
}

.eo-event-detail dd {
  margin: 0;
}

.eo-event-agenda {
  margin: 1.5rem 0;
}

.eo-event-agenda__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--eo-border);
  border-radius: var(--eo-radius);
  overflow: hidden;
}

.eo-event-agenda__item {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.75rem 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--eo-border);
  font-size: 0.92rem;
}

.eo-event-agenda__item:last-child {
  border-bottom: none;
}

.eo-event-agenda__time {
  font-weight: 600;
  color: var(--eo-accent);
  white-space: nowrap;
}

.eo-event-agenda__title {
  color: var(--eo-text);
}

.eo-lang-switch {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.2rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.eo-lang-switch__btn {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  line-height: 1.2;
}

.eo-lang-switch__btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.eo-lang-switch__btn.is-active {
  background: var(--eo-accent, #e63946);
  color: #fff;
}

/* Legacy: language switcher lives in .eo-nav__lang on the landing header */
.eo-lang-switch-wrap--marketing {
  display: none;
}

.eo-lang-switch-wrap--card {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.75rem;
}

.eo-lang-en body,
.eo-lang-en.eo-page {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.eo-vol-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.eo-event-description {
  margin: 1rem 0;
  line-height: 1.65;
  color: var(--eo-text-muted);
}

.eo-checklist-public {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  color: var(--eo-text-muted);
  line-height: 1.6;
}

.eo-event-register-cta {
  margin-top: 1.5rem;
  text-align: center;
}

/* Event detail page */
.eo-link-back--top {
  margin-top: 0;
  margin-bottom: 1rem;
}

.eo-event-detail-page {
  text-align: left;
}

.eo-event-detail-cover {
  margin: 0 0 1.25rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 16 / 9;
  max-height: 320px;
}

.eo-event-detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eo-event-cover-cta {
  margin: 0 0 1.35rem;
}

.eo-page--event-detail .eo-event-cover-cta__btn,
.eo-page--event-detail a.eo-event-cover-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.85rem;
  flex-wrap: wrap;
  width: 100%;
  min-width: 0;
  min-height: 3.75rem;
  padding: 1rem 1.4rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #ef233c 0%, #d62828 52%, #9d0208 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow:
    0 10px 28px rgba(214, 40, 40, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.15s ease;
  cursor: pointer;
}

.eo-page--event-detail a.eo-event-cover-cta__btn:hover,
.eo-page--event-detail a.eo-event-cover-cta__btn:focus-visible {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow:
    0 14px 34px rgba(239, 35, 60, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.eo-page--event-detail .eo-event-cover-cta__btn--disabled,
.eo-page--event-detail .eo-event-cover-cta__btn--disabled:hover {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(135deg, rgba(120, 40, 40, 0.85) 0%, rgba(60, 20, 20, 0.9) 100%);
  box-shadow: none;
}

.eo-page--event-detail .eo-event-cover-cta__btn--disabled .eo-event-cover-cta__label {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}

.eo-event-past-badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffc857;
  background: rgba(255, 200, 87, 0.1);
  border: 1px solid rgba(255, 200, 87, 0.35);
  border-radius: 999px;
}

.eo-event-youtube {
  margin: 0 0 1.75rem;
}

.eo-event-youtube__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 720px) {
  .eo-event-youtube__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.eo-event-youtube__item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.eo-event-youtube__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.eo-event-youtube__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.eo-event-gallery {
  margin: 0 0 1.75rem;
}

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

@media (min-width: 640px) {
  .eo-event-gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

.eo-event-gallery__item {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 4 / 3;
  background: rgba(0, 0, 0, 0.25);
}

.eo-event-gallery__trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.eo-event-gallery__trigger:focus-visible {
  outline: 2px solid #ffc857;
  outline-offset: 2px;
}

.eo-event-gallery__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.eo-event-gallery__trigger:hover .eo-event-gallery__img,
.eo-event-gallery__trigger:focus-visible .eo-event-gallery__img {
  transform: scale(1.03);
}

body.eo-gallery-lightbox-open {
  overflow: hidden;
}

.eo-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.eo-gallery-lightbox[hidden] {
  display: none !important;
}

.eo-gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}

.eo-gallery-lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  max-height: calc(100vh - 2rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: 1fr auto;
  gap: 0.5rem 0.75rem;
  align-items: center;
}

.eo-gallery-lightbox__stage {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.eo-gallery-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 6rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.eo-gallery-lightbox__close {
  position: absolute;
  top: -0.25rem;
  right: 0;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.eo-gallery-lightbox__close:hover,
.eo-gallery-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.eo-gallery-lightbox__nav {
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.eo-gallery-lightbox__nav--prev {
  grid-column: 1;
  grid-row: 1;
}

.eo-gallery-lightbox__nav--next {
  grid-column: 3;
  grid-row: 1;
}

.eo-gallery-lightbox__counter {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
}

@media (max-width: 640px) {
  .eo-gallery-lightbox__panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto auto;
    width: 100%;
  }

  .eo-gallery-lightbox__stage {
    grid-column: 1;
    grid-row: 2;
  }

  .eo-gallery-lightbox__nav--prev,
  .eo-gallery-lightbox__nav--next {
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
  }

  .eo-gallery-lightbox__nav--prev {
    margin-right: 3rem;
  }

  .eo-gallery-lightbox__nav--next {
    margin-left: 3rem;
  }

  .eo-gallery-lightbox__counter {
    grid-row: 4;
  }

  .eo-gallery-lightbox__close {
    top: 0;
    right: 0;
  }
}

.eo-page--event-detail .eo-event-cover-cta__label {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
}

.eo-page--event-detail .eo-event-cover-cta__spots {
  padding: 0.32rem 0.75rem;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  white-space: nowrap;
}

.eo-page--event-detail .eo-event-cover-cta__arrow {
  margin-left: auto;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.eo-page--event-detail .eo-event-cover-cta__btn--disabled .eo-event-cover-cta__arrow {
  display: none;
}

.eo-event-detail-title {
  margin-top: 0;
}

.eo-event-join-panel {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.eo-event-join-title {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.eo-event-join-form {
  margin-top: 1rem;
}

/* Member sign-up / profile (GenZ theme) */
.eo-page--member-auth .eo-form-title {
  margin-top: 0.35rem;
}

.eo-member-auth-head {
  text-align: center;
  margin-bottom: 0.5rem;
}

.eo-page--site-page .eo-member-auth-head {
  text-align: left;
}

.eo-pill--member {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffc857;
  background: rgba(214, 40, 40, 0.2);
  border: 1px solid rgba(255, 200, 87, 0.35);
  border-radius: 999px;
}

.eo-member-steps {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0.35rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.eo-member-steps__item {
  flex: 1;
  padding: 0.45rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

.eo-member-steps__item--active {
  color: var(--eo-text);
  background: rgba(214, 40, 40, 0.45);
  box-shadow: 0 2px 10px rgba(214, 40, 40, 0.35);
}

.eo-member-steps__item--done {
  color: #a8e6a1;
}

.eo-member-benefits {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.eo-member-benefits li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--eo-text-muted);
}

.eo-member-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--eo-red);
  box-shadow: 0 0 8px rgba(214, 40, 40, 0.6);
}

.eo-member-google-panel {
  padding: 1.25rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.eo-member-google-panel__hint {
  margin-top: 0.85rem;
  margin-bottom: 0;
}

.eo-form--member {
  gap: 1.5rem;
}

.eo-member-section {
  padding: 1.1rem 1.15rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.eo-member-section__title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--eo-text);
}

.eo-member-section__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--eo-btn-text);
  background: var(--eo-red);
  border-radius: 50%;
  flex-shrink: 0;
}

.eo-member-section__lead {
  margin: -0.35rem 0 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.eo-member-section--social {
  margin-top: 0.25rem;
}

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

@media (max-width: 640px) {
  .eo-member-social-grid {
    grid-template-columns: 1fr;
  }
}

.eo-member-google-card {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
}

.eo-member-google-card__fields {
  flex: 1;
  min-width: min(100%, 220px);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.eo-member-google-card__photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
}

.eo-member-avatar-picker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 220px;
  position: relative;
}

.eo-member-avatar-picker__hint {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.35;
}

.eo-member-avatar-trigger {
  display: inline-block;
  width: 72px;
  height: 72px;
  cursor: pointer;
  border-radius: 50%;
  line-height: 0;
  border: none;
  padding: 0;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}

.eo-member-avatar-trigger:focus-visible {
  outline: 2px solid var(--eo-accent);
  outline-offset: 3px;
}

.eo-member-avatar-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eo-member-avatar-trigger__media {
  position: relative;
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.eo-member-avatar-picker.eo-field--invalid .eo-member-avatar-trigger__media {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.35);
}

.eo-member-avatar-trigger__media.is-empty {
  background: linear-gradient(135deg, rgba(214, 40, 40, 0.35), rgba(157, 2, 8, 0.5));
}

.eo-member-avatar-trigger__badge {
  position: absolute;
  right: -1px;
  bottom: -1px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: rgba(12, 6, 6, 0.82);
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  pointer-events: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.eo-member-avatar-trigger:hover .eo-member-avatar-trigger__badge,
.eo-member-avatar-trigger:focus-visible .eo-member-avatar-trigger__badge {
  background: var(--eo-accent);
  transform: scale(1.05);
}

.eo-member-avatar--placeholder {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(214, 40, 40, 0.35), rgba(157, 2, 8, 0.5));
}

.eo-name-once-notice {
  margin-bottom: 0.65rem;
}

.eo-member-avatar--form {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.eo-member-avatar-trigger__media .eo-member-avatar--form {
  width: 100%;
  height: 100%;
  border: none;
  box-shadow: none;
}

.eo-field--readonly .eo-field-hint {
  text-align: left;
}

.eo-input--readonly,
.eo-field input.eo-input--readonly {
  opacity: 0.88;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.eo-field--invalid label {
  color: #ffb4b4;
}

.eo-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eo-field-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.eo-birthdate-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.eo-birthdate-fields select {
  width: 100%;
}

.eo-birthdate-age-preview {
  margin-top: 0.35rem;
  font-weight: 600;
}

.eo-dob-readonly {
  margin: 0;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
}

.eo-dob-once-notice {
  margin-bottom: 0.75rem;
}

.eo-field--row-birth {
  align-items: start;
}

@media (max-width: 520px) {
  .eo-field--row-birth {
    flex-direction: column;
  }

  .eo-birthdate-fields {
    grid-template-columns: 1fr;
  }
}

.eo-member-profile-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-bottom: 1.25rem;
}

.eo-link-back--inline {
  margin-top: 0;
}

.eo-btn-google--block {
  display: flex;
  width: 100%;
  max-width: none;
  justify-content: center;
  margin: 0;
}

.eo-reg-methods {
  margin: 1.5rem 0;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.eo-reg-methods__list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.eo-reg-methods__item {
  padding-left: 0.85rem;
  border-left: 3px solid var(--eo-accent, #e85d04);
}

.eo-reg-methods__item--online {
  border-left-color: #4caf50;
}

.eo-reg-methods__item--offline {
  border-left-color: #2196f3;
}

.eo-reg-methods__item--walkin {
  border-left-color: #ffb300;
}

.eo-reg-methods__desc {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: var(--eo-text-muted);
  line-height: 1.55;
}

.eo-reg-methods__maps {
  margin: 0.5rem 0 0;
}

.eo-maps-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  color: var(--eo-accent, #e85d04);
  text-decoration: none;
}

.eo-maps-link:hover {
  text-decoration: underline;
}

.eo-terms-box {
  flex-direction: column;
  align-items: stretch;
}

.eo-terms-scroll {
  margin-top: 0.75rem;
  max-height: 140px;
  overflow-y: auto;
  padding: 0.75rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--eo-text-muted);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 6px;
}

.eo-ticket-card {
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}

.eo-ticket-card--embedded {
  margin-top: 1.25rem;
  padding: 1.25rem 1rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 12px;
}

.eo-ticket-hint--top {
  margin-top: 0;
}

.eo-ticket-note {
  font-size: 0.85rem;
  color: var(--eo-text-muted);
  margin: 1rem 0 0;
}

.eo-ticket-eyebrow {
  color: var(--eo-accent, #c9a227);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.5rem;
}

.eo-ticket-meta {
  text-align: left;
  font-size: 0.95rem;
  color: var(--eo-text-muted);
}

.eo-ticket-code {
  font-size: 2.25rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin: 1.25rem 0 0.25rem;
}

.eo-ticket-hint {
  font-size: 0.85rem;
  color: var(--eo-text-muted);
  margin: 0 0 1rem;
}

.eo-ticket-qr img {
  border-radius: 12px;
  background: #fff;
  padding: 8px;
}

.eo-ticket-actions {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Focused ticket page & pass card */
.eo-page--ticket-focus .eo-page-panel {
  max-width: 520px;
  padding-top: 1.25rem;
  text-align: center;
}

.eo-my-tickets__browse {
  margin-top: 1.5rem;
}

.eo-ticket-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.eo-ticket-nav__link {
  font-size: 0.9rem;
  color: var(--eo-accent, #c9a227);
  text-decoration: none;
  font-weight: 500;
}

.eo-ticket-nav__link:hover {
  text-decoration: underline;
}

.eo-ticket-welcome {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  margin-bottom: 1.25rem;
  border-radius: 12px;
  background: rgba(46, 125, 50, 0.15);
  border: 1px solid rgba(129, 199, 132, 0.45);
  text-align: left;
}

.eo-ticket-welcome--subtle {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(201, 162, 39, 0.25);
  text-align: center;
  justify-content: center;
}

.eo-ticket-welcome__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(129, 199, 132, 0.35);
  font-weight: 700;
  color: #a5d6a7;
}

.eo-ticket-welcome__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.95rem;
  line-height: 1.45;
}

.eo-ticket-welcome__text strong {
  font-size: 1.05rem;
  color: #c8e6c9;
}

.eo-ticket-focus__heading {
  font-size: 1.35rem;
  text-align: center;
  margin: 0 0 0.35rem;
  line-height: 1.3;
}

.eo-ticket-focus__sub {
  text-align: center;
  font-size: 0.9rem;
  color: var(--eo-text-muted);
  margin: 0 0 1.25rem;
}

.eo-ticket-focus__links {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.9rem;
}

.eo-ticket-pass {
  margin: 0 auto;
  max-width: 400px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(30, 22, 12, 0.95) 0%, rgba(12, 10, 8, 0.98) 100%);
  border: 1px solid rgba(201, 162, 39, 0.45);
  box-shadow:
    0 0 0 1px rgba(201, 162, 39, 0.12),
    0 20px 50px rgba(0, 0, 0, 0.45);
}

.eo-ticket-pass__header {
  padding: 1.25rem 1.25rem 0.75rem;
  text-align: center;
  border-bottom: 1px dashed rgba(201, 162, 39, 0.25);
}

.eo-ticket-pass__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eo-accent, #c9a227);
}

.eo-ticket-pass__title {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  line-height: 1.35;
}

.eo-ticket-pass__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.25rem 0;
  font-size: 0.85rem;
  color: var(--eo-text-muted);
}

.eo-ticket-pass__guest {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.eo-ticket-pass__body {
  padding: 1.25rem 1rem 0.5rem;
  text-align: center;
}

.eo-ticket-pass__hint {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--eo-text-muted);
}

.eo-ticket-pass__code {
  font-size: clamp(2rem, 8vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  margin: 0;
  padding: 0.35rem 0;
  font-variant-numeric: tabular-nums;
  color: #fff;
  text-shadow: 0 2px 12px rgba(201, 162, 39, 0.35);
}

.eo-ticket-pass__code-label {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  color: var(--eo-text-muted);
}

.eo-ticket-pass__qr img {
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}

.eo-ticket-pass__qr-fallback {
  margin: 0;
  padding: 1rem;
  font-size: 0.88rem;
  color: var(--eo-text-muted);
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.eo-ticket-pass__footer {
  padding: 0.75rem 1rem 1.25rem;
}

.eo-ticket-pass__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.eo-ticket-pass__actions .eo-btn {
  font-size: 0.85rem;
  padding: 0.55rem 0.9rem;
}

.eo-ticket-pass__note {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  color: var(--eo-text-muted);
  text-align: center;
  line-height: 1.45;
}

.eo-ticket-pass--checked-in {
  border-color: rgba(76, 175, 80, 0.55);
}

.eo-ticket-pass__verified {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.45);
  border-radius: 10px;
}

.eo-ticket-pass__verified-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #4caf50;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.eo-ticket-pass__verified-text {
  flex: 1;
  min-width: 0;
}

.eo-ticket-pass__verified-text strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.eo-ticket-pass__verified-text p {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: var(--eo-muted, #ccc);
  line-height: 1.45;
}

.eo-ticket-pass__verified-time {
  font-size: 0.82rem !important;
  opacity: 0.9;
}

.eo-ticket-pass__body--used .eo-ticket-pass__code {
  opacity: 0.65;
}

.eo-ticket-welcome--checked-in {
  border-color: rgba(76, 175, 80, 0.5);
  background: rgba(76, 175, 80, 0.1);
}

.eo-ticket-pass__note--ok {
  color: #a5d6a7;
}

.eo-event-registered {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.eo-event-registered__ticket-btn {
  margin-top: 0.25rem;
}

.eo-event-registered__hint {
  margin: 0;
  font-size: 0.88rem;
  color: var(--eo-text-muted);
  text-align: center;
}

.eo-event-registered__more {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
}

.eo-my-tickets {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.eo-my-tickets__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: 12px;
  background: var(--eo-glass);
  border: 1px solid var(--eo-glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.eo-my-tickets__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.eo-my-tickets__title a {
  color: inherit;
  text-decoration: none;
}

.eo-my-tickets__title a:hover {
  color: var(--eo-accent, #c9a227);
}

.eo-my-tickets__meta,
.eo-my-tickets__status {
  margin: 0;
  font-size: 0.88rem;
  color: var(--eo-text-muted);
}

.eo-my-tickets__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: auto;
}

.eo-my-tickets__actions .eo-cta {
  text-decoration: none;
  min-width: calc(50% - 0.55rem) !important;
}

.eo-my-tickets__actions .eo-cta--ghost {
  background: transparent;
  color: var(--eo-text);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.eo-my-tickets__actions .eo-cta--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(214, 40, 40, 0.45);
  color: var(--eo-text);
  transform: translateY(-1px);
}

.eo-member-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
}

.eo-member-profile-actions .eo-cta--secondary {
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: inherit;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.eo-member-profile-actions .eo-cta--secondary:hover {
  color: #ffc857;
  transform: none;
}

.eo-page--event-detail .eo-event-detail-page {
  max-width: none;
}

.eo-page--site-page .eo-link-back--top {
  display: inline-flex;
  margin-bottom: 1.25rem;
}

.eo-cta--sm {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.eo-inline-form {
  display: inline;
}

.eo-table-actions {
  white-space: nowrap;
}

.eo-table-actions .eo-btn {
  margin: 2px 0;
}

.eo-admin-help {
  font-size: 0.9rem;
  color: var(--eo-text-muted);
  margin: 0 0 1rem;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .eo-event-grid {
    grid-template-columns: 1fr;
  }

  .eo-action-grid {
    grid-template-columns: 1fr;
  }

  .eo-event-detail {
    grid-template-columns: 1fr;
  }

  .eo-event-detail dt {
    margin-top: 0.5rem;
  }
}

.eo-google-signin-wrap {
  display: flex;
  justify-content: center;
  margin: 0.5rem 0 1rem;
  min-height: 44px;
}

.eo-google-signin-wrap iframe {
  max-width: 100%;
}

.eo-cta[disabled],
.eo-cta[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.eo-invite-banner {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(214, 40, 40, 0.15);
  border: 1px solid rgba(255, 200, 87, 0.35);
  font-size: 0.92rem;
  color: var(--eo-text-muted);
}

.eo-invite-share {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.eo-invite-share__title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.eo-invite-share__intro,
.eo-invite-share__remaining {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  color: var(--eo-text-muted);
}

.eo-invite-share__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.eo-invite-share__input {
  flex: 1 1 12rem;
  min-width: 0;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.35);
  color: var(--eo-text);
  font-size: 0.85rem;
}

.eo-opt-out-form {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.eo-opt-out-form__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.eo-opt-out-form__btn:hover,
.eo-opt-out-form__btn:focus-visible {
  color: #fff;
  background: rgba(214, 40, 40, 0.14);
  border-color: rgba(255, 120, 100, 0.45);
  outline: none;
}

.eo-opt-out-form__btn:active {
  transform: scale(0.98);
}

.eo-opt-out-form__icon {
  flex: 0 0 auto;
  opacity: 0.85;
}

.eo-my-tickets__item .eo-opt-out-form {
  margin-top: 0.25rem;
  padding-top: 0.85rem;
}

body.eo-opt-out-modal-open {
  overflow: hidden;
}

.eo-opt-out-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.eo-opt-out-modal[hidden] {
  display: none;
}

.eo-opt-out-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.eo-opt-out-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 1.5rem 1.35rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(165deg, rgba(28, 10, 8, 0.98) 0%, rgba(12, 6, 6, 0.98) 100%);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.eo-opt-out-modal__title {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.eo-opt-out-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.eo-opt-out-modal__btn {
  min-width: 8.5rem;
}

.eo-opt-out-modal__btn--confirm {
  background: linear-gradient(135deg, var(--eo-red) 0%, #9d0208 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.eo-opt-out-modal__btn--confirm:hover {
  filter: brightness(1.05);
}

/* —— Member profile tabs —— */
.eo-member-profile-tabs {
  margin-top: 0.35rem;
}

.eo-member-tabs {
  display: flex;
  gap: 0.35rem;
  margin: 0 0 1.15rem;
  padding: 0.35rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
}

.eo-member-tab {
  flex: 1 1 0;
  min-width: 0;
  padding: 0.65rem 0.75rem;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--eo-text-muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.eo-member-tab:hover {
  color: var(--eo-text);
  background: rgba(255, 255, 255, 0.06);
}

.eo-member-tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--eo-red) 0%, #9d0208 100%);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 20px rgba(214, 40, 40, 0.35);
}

.eo-member-tab-panel {
  display: none;
}

.eo-member-tab-panel.is-active {
  display: block;
}

.eo-form-intro--tab {
  margin-top: 0;
}

/* —— GenZ member card (profile + print) —— */
.eo-member-card-preview {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}

.eo-member-card-preview__intro {
  margin: 0 0 1.1rem;
  font-size: 0.92rem;
  color: var(--eo-text-muted);
}

.eo-member-card-preview__note {
  margin: 0 0 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: rgba(201, 162, 39, 0.1);
  font-size: 0.88rem;
  color: var(--eo-text);
}

.eo-member-card-themes {
  margin: 0 0 1.1rem;
}

.eo-member-card-themes__label {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--eo-text-muted);
}

.eo-member-card-themes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5.5rem, 1fr));
  gap: 0.55rem;
  max-width: 520px;
}

.eo-member-card-theme {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.35rem 0.5rem;
  border-radius: 12px;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.eo-member-card-theme:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.eo-member-card-theme.is-selected {
  border-color: var(--eo-red);
  background: rgba(214, 40, 40, 0.12);
}

.eo-member-card-theme input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.eo-member-card-theme__swatch {
  display: block;
  width: 100%;
  max-width: 3.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.eo-member-card-theme__name {
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  color: var(--eo-text);
}

.eo-member-card-preview__figure {
  margin: 0 0 1rem;
}

.eo-member-card-preview__img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.eo-member-card-preview__actions {
  max-width: 520px;
  margin: 0 auto;
}