.ticket-channel-panel {
  margin-top: 24px;
  padding: 18px;
  color: #fff;
  background: rgba(8, 13, 22, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  backdrop-filter: blur(14px);
}

.ticket-channel-panel__eyebrow {
  margin: 0 0 12px;
  color: var(--accent-override, #4fc4bf);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticket-channel-panel__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.ticket-channel-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #071016 !important;
  background: var(--accent-override, #4fc4bf);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.ticket-channel-link:hover,
.ticket-channel-link:focus-visible {
  color: #071016 !important;
  background: #fff;
  transform: translateY(-2px);
}

.ticket-channel-link--threecket {
  background: #8a7cff;
}

.ticket-channel-link--whatsapp {
  background: #32d583;
}

.ticket-channel-link--sticky {
  width: 100%;
  min-height: 50px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(138, 124, 255, 0.24);
}

@media (max-width: 520px) {
  .ticket-channel-panel {
    padding: 14px;
  }

  .ticket-channel-panel__grid {
    grid-template-columns: 1fr;
  }
}
