* {
  box-sizing: border-box;
}

:root {
  --bg: #06070b;
  --bg-soft: #0d1017;
  --panel: rgba(17, 21, 31, 0.92);
  --panel-2: rgba(22, 27, 39, 0.96);
  --panel-3: rgba(28, 34, 48, 0.96);
  --text: #f3f5f7;
  --muted: #98a2b3;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --accent: #8b5cf6;
  --accent-2: #22d3ee;
  --accent-soft: rgba(139, 92, 246, 0.16);
  --danger: #ef4444;
  --success: #22c55e;
  --warn: #f59e0b;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  --radius: 22px;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.08), transparent 22%),
    linear-gradient(180deg, #05060a 0%, #0b0d14 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  position: relative;
  overflow-x: hidden;
}

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

.bg-glow {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(90px);
  z-index: 0;
}

.glow-1 {
  width: 260px;
  height: 260px;
  top: 90px;
  left: -60px;
  background: rgba(139, 92, 246, 0.18);
}

.glow-2 {
  width: 240px;
  height: 240px;
  right: -60px;
  top: 280px;
  background: rgba(34, 211, 238, 0.12);
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent 90%);
}

.container {
  width: min(100% - 20px, 1320px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.site-header {
  position: relative;
  top: auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(7, 9, 14, 0.82);
  backdrop-filter: blur(18px);
}

/* Mobile: Header nicht sticky */
@media (max-width: 979px) {
  .site-header {
    position: relative;
    top: auto;
  }
}

.header-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px 0;
}

.brand-block {
  min-width: 0;
}

.brand-kicker,
.hero-kicker {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--accent-2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.logo {
  margin: 0;
  font-size: clamp(28px, 8vw, 44px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 700px;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.page-panel,
.detail-panel,
.auth-panel {
  padding: 18px;
}

.auth-panel {
  max-width: 480px;
  margin: 0 auto;
}

.app-shell {
  padding: 16px 0 120px;
}

.top-tools {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.chip-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.chip-row::-webkit-scrollbar {
  display: none;
}

.chip {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  white-space: nowrap;
  cursor: pointer;
  font-size: 13px;
  transition: 0.18s ease;
}

.chip:hover {
  border-color: var(--line-strong);
}

.chip-active {
  background: var(--accent-soft);
  border-color: rgba(139, 92, 246, 0.36);
  color: #fff;
}

.hero-strip {
  padding: 18px;
  margin-bottom: 18px;
  display: grid;
  gap: 14px;
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(17, 21, 31, 0.96), rgba(12, 15, 22, 0.96));
}

.hero-strip h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 6vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.section-header h2,
.panel h2,
.panel h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.section-head-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.label {
  display: block;
  margin: 0 0 8px;
  color: #b6c0d1;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 13px 14px;
  border-radius: 14px;
  transition: 0.18s ease;
}

.input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(34, 211, 238, 0.48);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.08);
  background: rgba(255,255,255,0.06);
}

.language-select {
  min-width: 82px;
  width: 82px;
}

.btn,
.icon-btn {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #fff;
  cursor: pointer;
  transition: 0.18s ease;
}

.btn {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.28), rgba(34, 211, 238, 0.10));
  padding: 12px 16px;
  font-weight: 700;
}

.btn:hover,
.icon-btn:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.btn-secondary,
.icon-btn {
  background: rgba(255,255,255,0.04);
}

.icon-btn {
  padding: 12px 14px;
}

.btn-full {
  width: 100%;
}

#navLogoutBtn {
  border-color: rgba(239, 68, 68, 0.18);
  background: rgba(239, 68, 68, 0.08);
}

.events-feed {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.event-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(19, 23, 34, 0.98), rgba(12, 15, 22, 0.98));
  box-shadow: var(--shadow);
  transition: 0.18s ease;
}

.event-card:hover {
  border-color: rgba(139, 92, 246, 0.28);
  transform: translateY(-2px);
}

.event-cover-frame {
  width: 100%;
  background: #0a0d14;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.event-cover-frame.is-landscape {
  aspect-ratio: 16 / 9;
}

.event-cover-frame.is-portrait {
  aspect-ratio: 9 / 16;
}

.event-cover {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #0b0f18;
}

.event-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.event-title {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.event-meta {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 10px;
}

.event-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.event-actions {
  display: flex;
  gap: 8px;
}

.view {
  display: none;
}

.view.active {
  display: block;
}

.detail-layout {
  display: grid;
  gap: 18px;
}

.detail-cover-frame {
  width: 100%;
  background: #0a0d14;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-mute-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
}

.video-mute-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.05);
}

.video-mute-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.detail-cover-frame.is-landscape {
  aspect-ratio: 16 / 9;
}

.detail-cover-frame.is-portrait {
  aspect-ratio: 9 / 16;
}

.detail-cover {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Videos in Detailansicht sollen sich an den Container anpassen, aber nicht gezwungen werden */
.video-wrapper .detail-cover {
  object-fit: contain;
}

.detail-title {
  margin: 0 0 8px;
  font-size: clamp(28px, 7vw, 48px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.detail-meta {
  margin-bottom: 16px;
  color: var(--accent-2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.detail-text {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.ticket-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.ticket-row {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,0.03);
}

.ticket-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.ticket-name {
  font-weight: 800;
  font-size: 16px;
}

.ticket-price {
  color: var(--accent-2);
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.ticket-info {
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.qty-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.qty-input {
  width: 90px;
}

.cart-items,
.tickets-list,
.form-stack {
  display: grid;
  gap: 12px;
}

.cart-item {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 14px;
}

.cart-item-title {
  font-weight: 800;
  margin-bottom: 4px;
}

.cart-item-meta {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cart-badge,
.mini-badge {
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #c084fc);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.checkout-main-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.checkout-form-box {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  padding: 16px;
}

.checkout-event-box {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  padding: 16px;
  height: fit-content;
}

.checkout-event-media {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #0a0d14;
  border: 1px solid rgba(255,255,255,0.06);
}

.checkout-event-media img,
.checkout-event-media video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #0b0f18;
}

.checkout-event-title {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.checkout-field-error {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.08);
  color: #ffb4b4;
  font-size: 14px;
  line-height: 1.5;
}

.checkout-summary-box {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  padding: 16px;
  height: fit-content;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.checkout-line:last-child {
  border-bottom: 0;
}

.checkout-total {
  margin: 14px 0 16px;
}

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

.account-grid {
  display: grid;
  gap: 16px;
}

/* Login-Bereich: Zwei gleich große Container nebeneinander */
#view-auth .account-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

@media (max-width: 768px) {
  #view-auth .account-grid {
    grid-template-columns: 1fr;
  }
}

.auth-info {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.ticket-card {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(18,22,32,0.98), rgba(12,15,22,0.98));
  border-radius: 18px;
  padding: 16px;
}

.ticket-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.ticket-card-meta {
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 14px;
}

.ticket-qr {
  width: 100%;
  max-width: 220px;
  margin-top: 12px;
  padding: 8px;
  border-radius: 14px;
  background: #fff;
  display: block;
}

.status-bar {
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  font-size: 14px;
}

.status-bar.success {
  border-color: rgba(34, 197, 94, 0.32);
}

.status-bar.error {
  border-color: rgba(239, 68, 68, 0.32);
}

.status-bar.warn {
  border-color: rgba(245, 158, 11, 0.32);
}

.empty-state {
  color: var(--muted);
  font-size: 14px;
}

.hidden {
  display: none !important;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.46);
  z-index: 70;
}

.drawer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  max-height: 84vh;
  background: rgba(14, 18, 27, 0.98);
  border-top: 1px solid var(--line);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -30px 70px rgba(0,0,0,0.5);
  padding: 12px 16px 16px;
  overflow: auto;
}

.drawer-handle {
  width: 52px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  margin: 4px auto 14px;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.drawer-body {
  display: grid;
  gap: 12px;
}

.drawer-actions {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.drawer-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 980px) {
  .drawer {
    left: 50%;
    right: auto;
    bottom: 24px;
    width: min(100% - 20px, 1320px);
    transform: translateX(-50%);
    border: 1px solid var(--line);
    border-radius: 24px;
    max-height: calc(100vh - 120px);
  }
}

.mobile-checkout-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 76px;
  z-index: 45;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(16, 20, 29, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.34);
}

.mobile-checkout-label {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 3px;
}

.bottom-nav {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(10, 13, 20, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.38);
}

@media (min-width: 980px) {
  .bottom-nav {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 2;
    width: 100%;
    margin: 0 0 18px;
    box-shadow: var(--shadow);
  }

  .mobile-checkout-bar {
    display: none !important;
  }

  .app-shell {
    padding-bottom: 40px;
  }
}

.bottom-nav-btn {
  appearance: none;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--text);
  min-height: 48px;
  padding: 10px 8px;
  font-size: 12px;
  cursor: pointer;
  display: grid;
  gap: 2px;
  justify-items: center;
  align-content: center;
}

.bottom-nav-btn.active {
  background: rgba(255,255,255,0.06);
}

.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

@media (min-width: 760px) {
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero-strip {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

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

  .event-content {
    padding: 18px;
  }

  .event-title {
    font-size: 22px;
  }

  .detail-layout {
    grid-template-columns: minmax(340px, 520px) 1fr;
    align-items: start;
  }

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

@media (min-width: 1100px) {
  .events-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }

  .event-card .event-cover-frame.is-landscape {
    aspect-ratio: 16 / 9;
  }

  .event-card .event-cover-frame.is-portrait {
    aspect-ratio: 9 / 14;
  }
}

@media (min-width: 1380px) {
  .events-feed {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .search-row {
    grid-template-columns: 1fr;
  }

  .qty-row {
    flex-wrap: wrap;
  }

  .event-content {
    padding: 14px;
  }

  .event-title {
    font-size: 18px;
  }
}

.site-footer {
  margin-top: 40px;
  padding: 28px 0 110px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
}

.footer-inner {
  display: grid;
  gap: 20px;
}

.footer-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text);
}

.footer-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 680px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-link {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.88;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.footer-link:hover {
  color: var(--accent-2);
  opacity: 1;
}

.footer-meta {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

@media (min-width: 980px) {
  .site-footer {
    padding-bottom: 36px;
  }

  .footer-inner {
    grid-template-columns: 1.3fr 1fr auto;
    align-items: start;
  }

  .footer-meta {
    text-align: right;
    white-space: nowrap;
  }

  .checkout-layout {
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
    align-items: start;
  }

  .checkout-event-box {
    display: block;
  }
}

@media (max-width: 979px) {
  .site-footer {
    padding-bottom: 120px;
  }
}

.cookie-consent {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 120;
}

.cookie-consent-inner {
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: rgba(12, 16, 24, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  padding: 18px;
  display: grid;
  gap: 16px;
}

.cookie-consent-text strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
}

.cookie-consent-text p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.cookie-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.cookie-link:hover {
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (min-width: 980px) {
  .cookie-consent {
    left: 50%;
    right: auto;
    bottom: 24px;
    width: min(100% - 20px, 1320px);
    transform: translateX(-50%);
  }

  .cookie-consent-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 979px) {
  .cookie-consent {
    bottom: 86px;
  }

  .cookie-consent-actions {
    justify-content: stretch;
  }

  .cookie-consent-actions .btn {
    width: 100%;
  }
}

.event-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.event-card-link:hover,
.event-card-link:focus,
.event-card-link:visited,
.event-card-link:active {
  color: inherit;
  text-decoration: none;
}

.event-card-link .event-title,
.event-card-link .tag,
.event-card-link .event-meta {
  color: inherit;
  text-decoration: none;
}

/* Apple Pay Button Styling */
apple-pay-button {
  --apple-pay-button-width: 100%;
  --apple-pay-button-height: 45px;
  --apple-pay-button-border-radius: 4px;
  --apple-pay-button-padding: 0px;
  --apple-pay-button-box-sizing: border-box;
  display: block;
  width: 100%;
}

#applepay-button-container {
  margin: 15px 0;
  width: 100%;
}