@font-face {
  font-family: "Atilla";
  src: url("../fonts/Atilla\ Normal.ttf");
}

body {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 24px;
  box-sizing: border-box;
  font-family: Atilla, Arial, sans-serif;
}

.container {
  background: linear-gradient(145deg, rgba(8, 12, 10, 0.94), rgba(18, 24, 21, 0.9));
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  width: 100%;
  max-width: 720px;
  box-sizing: border-box;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(12px);
}

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

.eyebrow,
.event-label {
  margin: 0 0 6px;
  color: #aab6af;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-header h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(1.75rem, 5vw, 2.7rem);
  line-height: 1;
}

.panel-header h2 {
  margin: 0;
  color: #dff7df;
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  font-weight: bold;
}

.help-button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 8px 13px 8px 9px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: #287be0;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 700 0.82rem Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(40, 123, 224, 0.28);
}

.help-symbol {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.action-card {
  min-height: 88px;
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.065);
  color: white;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  text-align: left;
  font-family: Arial, sans-serif;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.action-card-wide {
  grid-column: 1 / -1;
}

.action-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, #91e884, #4fb55a);
  color: #102513;
  display: grid;
  place-items: center;
  font: 800 1.45rem Arial, sans-serif;
}

.qr-icon {
  font-size: 1.7rem;
}

.action-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.action-copy strong {
  font-size: 0.96rem;
  line-height: 1.15;
}

.action-copy small {
  color: #aeb8b2;
  font-size: 0.75rem;
  line-height: 1.3;
}

.action-arrow {
  color: #8fde83;
  font: 400 1.7rem Arial, sans-serif;
}

.action-card:hover,
.action-card:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(145, 232, 132, 0.55);
  transform: translateY(-2px);
  outline: none;
}

.action-card:active,
.help-button:active {
  transform: scale(0.98);
}

.help-button:focus-visible {
  outline: 3px solid rgba(150, 205, 255, 0.8);
  outline-offset: 3px;
}

.panel-footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #8e9a93;
  font: 0.72rem Arial, sans-serif;
}

.logo {
  display: block;
  width: 82px;
  height: auto;
  transition: opacity 180ms ease;
}

.logo:hover {
  opacity: 0.72;
}

@media (max-width: 600px) {
  body {
    align-items: flex-start;
    padding: 12px;
  }

  .container {
    padding: 20px 16px;
    border-radius: 19px;
  }

  .panel-header {
    gap: 12px;
    margin-bottom: 22px;
  }

  .panel-header h1 {
    margin-bottom: 19px;
  }

  .help-button {
    width: 44px;
    padding: 8px;
    justify-content: center;
  }

  .help-button > span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .action-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .action-card-wide {
    grid-column: auto;
  }

  .action-card {
    min-height: 76px;
    padding: 12px;
  }

  .panel-footer span {
    max-width: 145px;
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  .action-card,
  .logo {
    transition: none;
  }
}
