:root {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color: #f8fbff;
  background-color: #05060c;
  --surface: #0f111a;
  --surface-muted: #151729;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #5be3ff;
  --accent-strong: #08b2e3;
  --danger: #ff5b7e;
  --success: #6df6a3;
  --text-muted: rgba(248, 251, 255, 0.7);
  --shadow: 0 20px 45px rgba(5, 7, 12, 0.8);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #111430 0%, #05060c 55%, #03040a 100%);
  color: #f8fbff;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin: 0.2rem 0 0.6rem;
}

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.lede {
  max-width: 50ch;
  color: var(--text-muted);
  margin: 0;
}

.user-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.login-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #5865F2;
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.login-button:hover {
  background: #4752C4;
  text-decoration: none;
}

.user-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.9rem;
}

.user-info span {
  font-weight: 600;
  color: var(--accent);
}

.logout-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
}

.logout-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-end;
}

.coordinate-form-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 280px;
}

.coordinate-form-inline {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
}

.coordinate-form-inline label {
  flex: 1;
  min-width: 0;
}

.coordinate-form-inline input {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  padding: 0.6rem 0.8rem;
}

.coordinate-form-inline button {
  padding: 0.6rem 1.25rem;
  font-size: 0.95rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.form-label-small {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  color: var(--text-muted);
}

.auth-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  font-size: 0.95rem;
}

.user-info span {
  color: var(--accent);
  font-weight: 600;
}

#login-button {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background: #5865F2;
  color: white;
  text-decoration: none;
  border-radius: 0.9rem;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}

#login-button:hover {
  background: #4752C4;
  text-decoration: none;
}

main {
  padding: 0 clamp(1.5rem, 5vw, 4rem) 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
  padding: 0 clamp(1rem, 4vw, 3rem);
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: 0;
  z-index: 5;
  background: linear-gradient(180deg, rgba(5, 6, 12, 0.95) 0%, rgba(5, 6, 12, 0.85) 100%);
  backdrop-filter: blur(12px);
  scroll-snap-type: x proximity;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab-button {
  flex: 0 0 auto;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  margin-bottom: -1px;
  border-radius: 999px;
  scroll-snap-align: start;
}

.tab-button:hover {
  color: var(--accent);
  background: rgba(91, 227, 255, 0.05);
}

.tab-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.tab-button.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: rgba(91, 227, 255, 0.05);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.25);
}

.panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.panel h2 {
  margin: 0;
  font-size: 1.5rem;
}

.help-text {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.active-time-display {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.active-time-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  font-family: 'Courier New', monospace;
}

.panels-side-by-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(220px, 45vw, 320px), 1fr));
  gap: 0.9rem;
}

.card {
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}

.card-simple {
  padding: 0.85rem 1rem;
  min-height: auto;
}

.card-simple .card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.card-simple .coordinate-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  text-decoration: none;
  flex: 1;
  min-width: 0;
  word-break: break-all;
}

.card-simple .coordinate-link:hover {
  text-decoration: underline;
}

.teleport-link.teleport-link-used {
  color: var(--success);
}

.teleport-link.teleport-link-used:hover {
  color: var(--success);
}

.actions-cell .jump-link.teleport-link-used {
  border-color: var(--success);
  background: rgba(109, 246, 163, 0.12);
  color: var(--success);
}

/* Showcases you've claimed - amber/orange color */
.teleport-link.teleport-link-claimed {
  color: #ffb347;
}

.teleport-link.teleport-link-claimed:hover {
  color: #ffb347;
}

.actions-cell .jump-link.teleport-link-claimed {
  border-color: #ffb347;
  background: rgba(255, 179, 71, 0.12);
  color: #ffb347;
}

.card-time-display {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  font-weight: 500;
}

.card-simple .claim-btn,
.card-simple .claimed-label {
  flex-shrink: 0;
  margin-left: auto;
}

.card-simple .claimed-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.card.marked {
  border-color: var(--accent);
  background: rgba(91, 227, 255, 0.05);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.card .coordinate {
  font-weight: 600;
  font-size: 1.05rem;
}

.card .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.5rem;
  font-size: 0.8rem;
  border-radius: 999px;
  background: rgba(91, 227, 255, 0.1);
  color: var(--accent);
  font-weight: 600;
}

.card .countdown {
  font-size: 2rem;
  font-weight: 600;
}

.empty-state {
  text-align: center;
  color: var(--text-muted);
}

.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

@media (min-width: 721px) {
  table {
    min-width: 720px;
  }
  .mobile-hide {
    display: table-cell !important;
  }
  .actions-cell {
    display: table-cell;
  }
  .mobile-jump {
    display: none !important;
  }
  .desktop-jump {
    display: table-cell !important;
  }
}

thead th {
  text-align: left;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--border);
}

tbody td {
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status-pill.active {
  background: rgba(109, 246, 163, 0.15);
  color: var(--success);
}

.status-pill.upcoming {
  background: rgba(91, 227, 255, 0.15);
  color: var(--accent);
}

.status-pill.passed {
  background: rgba(255, 91, 126, 0.15);
  color: var(--danger);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

label span {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: var(--text-muted);
}

input, select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 0.8rem;
  border: 1px solid var(--border);
  background: rgba(5, 6, 12, 0.4);
  color: #f8fbff;
  font-family: inherit;
}

input:focus, select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

button {
  border: none;
  border-radius: 0.9rem;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

button.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #041017;
}

button.primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

button.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: #f8fbff;
}

.filter {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.filter select {
  margin-top: 0.4rem;
}

.feedback {
  min-height: 1.5rem;
  font-weight: 500;
}

.feedback.error {
  color: var(--danger);
}

.feedback.success {
  color: var(--success);
}

.auth-message {
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  margin: 1rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
}

.auth-message-info {
  background: rgba(91, 227, 255, 0.1);
  color: var(--accent);
  border: 1px solid rgba(91, 227, 255, 0.2);
}

.auth-message-warning {
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.2);
}

footer {
  text-align: center;
  padding: 2rem 1rem 3rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

code {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.15rem 0.4rem;
  border-radius: 0.4rem;
}

.mark-button {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: rgba(5, 6, 12, 0.4);
  color: #f8fbff;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s;
}

.mark-button:hover {
  background: rgba(91, 227, 255, 0.1);
  border-color: var(--accent);
}

.mark-button.marked {
  background: rgba(91, 227, 255, 0.15);
  border-color: var(--accent);
  color: var(--accent);
}

.mark-button-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  padding: 0;
  font-size: 1rem;
  border-radius: 0.4rem;
  border: 1px solid var(--border);
  background: rgba(5, 6, 12, 0.4);
  color: #f8fbff;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  margin-right: 0.5rem;
  transition: all 0.2s;
  vertical-align: middle;
}

.mark-button-small:hover {
  background: rgba(91, 227, 255, 0.1);
  border-color: var(--accent);
}

.mark-button-small.marked {
  background: rgba(91, 227, 255, 0.15);
  border-color: var(--accent);
  color: var(--accent);
}

.marked-row {
  background: rgba(91, 227, 255, 0.03);
}

.marked-row td:first-child {
  position: relative;
}

.claim-btn {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: rgba(5, 6, 12, 0.4);
  color: #f8fbff;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s;
}

.claim-btn:hover:not(:disabled) {
  background: rgba(91, 227, 255, 0.1);
  border-color: var(--accent);
}

.claim-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.claim-btn.claim {
  background: rgba(91, 227, 255, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}

.claim-btn.claim:hover:not(:disabled) {
  background: rgba(91, 227, 255, 0.2);
}

.claim-btn.unclaim {
  background: rgba(255, 91, 126, 0.1);
  border-color: var(--danger);
  color: var(--danger);
}

.claim-btn.unclaim:hover:not(:disabled) {
  background: rgba(255, 91, 126, 0.2);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.page-info {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pagination button {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 1200px) {
  .panels-side-by-side {
    grid-template-columns: 1fr;
  }
}

.events-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-card {
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
  transition: all 0.2s;
}

.event-card:hover {
  border-color: var(--accent);
  background: rgba(91, 227, 255, 0.05);
}

.event-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.event-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: var(--accent);
}

.event-card-type {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(91, 227, 255, 0.15);
  color: var(--accent);
  white-space: nowrap;
}

.event-card-dates {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.event-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.event-card-link:hover {
  text-decoration: underline;
}

.event-details {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.event-details h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0.5rem 0;
  color: var(--accent);
}

.event-bonuses,
.event-spawns,
.event-shinies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.event-bonus,
.event-spawn,
.event-shiny {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: rgba(91, 227, 255, 0.1);
  border: 1px solid rgba(91, 227, 255, 0.2);
  border-radius: 0.5rem;
  font-size: 0.85rem;
}

.event-bonus img,
.event-spawn img,
.event-shiny img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.event-status {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.event-status.active {
  background: rgba(109, 246, 163, 0.15);
  color: var(--success);
}

.event-status.upcoming {
  background: rgba(91, 227, 255, 0.15);
  color: var(--accent);
}

.event-status.passed {
  background: rgba(255, 91, 126, 0.15);
  color: var(--danger);
}

.statistics-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-item {
  padding: 1.5rem;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}

.faq-question {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}

.faq-answer {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.statistics-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1rem;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}

.statistics-summary-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.statistics-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.statistics-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
}

.statistics-table-wrapper {
  overflow-x: auto;
}

.statistics-table {
  width: 100%;
  border-collapse: collapse;
}

.statistics-table thead th {
  text-align: left;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--border);
}

.statistics-table tbody td {
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.statistics-table tbody tr:hover {
  background: rgba(91, 227, 255, 0.05);
}

.utc-offset-display {
  display: inline-block;
  margin-right: 0.5rem;
}

.edit-timezone-btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.85rem;
  border-radius: 0.4rem;
  border: 1px solid var(--border);
  background: rgba(5, 6, 12, 0.4);
  color: #f8fbff;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.edit-timezone-btn:hover {
  background: rgba(91, 227, 255, 0.1);
  border-color: var(--accent);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.5);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--accent);
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.modal-close:hover {
  background: rgba(255, 91, 126, 0.1);
  color: var(--danger);
}

.modal-body {
  padding: 1.5rem;
}

.modal-body label {
  display: block;
  margin-top: 1rem;
}

.modal-body label:first-child {
  margin-top: 0;
}

.modal-footer {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

.modal-footer button {
  min-width: 100px;
}

@media (max-width: 720px) {
  .tabs {
    padding: 0.35rem 1rem;
    gap: 0.5rem;
    flex-wrap: nowrap;
  }
  .tab-button {
    flex: 0 0 auto;
    min-width: max-content;
    text-align: left;
    font-size: 0.9rem;
    padding: 0.65rem 1.1rem;
  }
  header.hero {
    padding: 2.5rem 1.25rem 1.5rem;
  }
  .hero-actions {
    width: 100%;
    align-items: stretch;
  }
  .coordinate-form-section {
    min-width: unset;
    width: 100%;
  }
  .coordinate-form-inline {
    flex-direction: column;
    align-items: stretch;
  }
  .coordinate-form-inline button {
    width: 100%;
  }
  main {
    padding: 0 1.25rem 2.5rem;
  }
  .table-wrapper {
    overflow-x: visible;
  }
  table {
    display: block;
    width: 100%;
  }
  thead {
    display: none;
  }
  tbody {
    display: block;
    width: 100%;
  }
  tr {
    display: block;
    margin-bottom: 1rem;
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1rem;
  }
  td {
    display: block;
    padding: 0.5rem 0;
    border: none;
    text-align: left;
  }
  td:before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.25rem;
  }
  .card-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .card-simple {
    padding: 1rem 1.2rem;
  }
  .card-simple .card-content {
    flex-direction: column;
    align-items: stretch;
  }
  .card-simple .claim-btn,
  .card-simple .claimed-label {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  .event-card-header {
    flex-direction: column;
  }
  .statistics-summary {
    grid-template-columns: 1fr;
  }
  .statistics-table-wrapper {
    overflow-x: visible;
  }
  .statistics-table {
    display: block;
    width: 100%;
  }
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.25rem;
  }
  .statistics-table thead {
    display: none;
  }
  .statistics-table tbody {
    display: block;
    width: 100%;
  }
  .statistics-table tbody tr {
    display: block;
    margin-bottom: 1rem;
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1rem;
  }
  .statistics-table tbody td {
    display: block;
    padding: 0.5rem 0;
    border: none;
    text-align: left;
  }
  .statistics-table tbody td:before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.25rem;
  }
  .mobile-hide {
    display: none !important;
  }
  .actions-cell {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
  }
  .actions-cell .jump-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    background: rgba(5, 6, 12, 0.4);
    color: #f8fbff;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s;
    display: inline-block;
  }
  .actions-cell .jump-link:hover {
    background: rgba(91, 227, 255, 0.1);
    border-color: var(--accent);
    text-decoration: none;
  }
  .desktop-jump {
    display: none !important;
  }
  .mobile-jump {
    display: inline-block;
  }
  .edit-timezone-btn {
    font-size: 0.75rem;
    padding: 0.2rem 0.4rem;
  }
}
