/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Space+Grotesk:wght@400;500;700&display=swap");

:root {
  --bg-1: #060e13;
  --bg-2: #0b1a22;
  --panel: rgba(10, 18, 24, 0.82);
  --line: rgba(110, 250, 201, 0.24);
  --text: #effaf7;
  --muted: #9fc8bd;
  --accent: #57f6bf;
  --accent-2: #18d2ff;
  --danger: #ff7b84;
}

* {
  box-sizing: border-box;
}

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

body {
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 12%, rgba(87, 246, 191, 0.21) 0, rgba(6, 14, 19, 0) 34%),
    radial-gradient(circle at 90% 12%, rgba(24, 210, 255, 0.16) 0, rgba(6, 14, 19, 0) 32%),
    linear-gradient(155deg, var(--bg-1) 5%, var(--bg-2) 100%);
}

.page-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 18px 56px;
}

.hero,
.form-wrap,
.notice {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.25);
}

.hero {
  margin-bottom: 18px;
}

.badge-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.solana-logo {
  width: 58px;
  height: 46px;
  display: block;
}

.chip {
  border: 1px solid rgba(87, 246, 191, 0.4);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d2fff0;
}

h1 {
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-weight: 800;
  margin: 16px 0 10px;
  font-size: clamp(2.2rem, 5.2vw, 3.6rem);
  letter-spacing: -0.04em;
}

h2 {
  margin: 0 0 8px;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-weight: 700;
}

.lead {
  margin: 0;
  max-width: 760px;
  color: #d8eee7;
  line-height: 1.62;
}

.event-cards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 12px;
  gap: 12px;
}

.event-cards article {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 16px;
  background: rgba(4, 10, 14, 0.5);
}

.event-cards h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #9fd9ca;
}

.event-cards p {
  margin: 4px 0;
  color: #ecfbf6;
}

.form-wrap {
  margin-bottom: 18px;
}

.subtext {
  margin: 0 0 18px;
  color: var(--muted);
}

.registration-form {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
}

.registration-form label,
.registration-form legend {
  font-weight: 500;
}

.registration-form input {
  width: 100%;
  border: 1px solid rgba(158, 255, 223, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #ebfdf7;
  padding: 12px 13px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.registration-form input::placeholder {
  color: rgba(225, 248, 240, 0.5);
}

.registration-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(87, 246, 191, 0.2);
}

.radio-field {
  margin: 8px 0 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
}

.radio-field label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 18px;
  margin-top: 8px;
}

.radio-field input {
  width: auto;
  margin: 0;
}

button {
  margin-top: 10px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #06261f;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

button:hover:enabled {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.feedback {
  margin: 14px 0 6px;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 500;
}

.feedback.success {
  background: rgba(87, 246, 191, 0.2);
  border: 1px solid rgba(87, 246, 191, 0.35);
}

.feedback.error {
  background: rgba(255, 123, 132, 0.18);
  border: 1px solid rgba(255, 123, 132, 0.35);
  color: #ffd6db;
}

.api-note {
  margin: 0;
  font-size: 12px;
  color: rgba(188, 224, 213, 0.8);
}

.notice p {
  margin: 0;
  color: #d8ebe4;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal-up 0.75s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.reveal-a {
  animation-delay: 0.05s;
}

.reveal-b {
  animation-delay: 0.14s;
}

.reveal-c {
  animation-delay: 0.24s;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 24px 14px 40px;
  }

  .hero,
  .form-wrap,
  .notice {
    padding: 18px;
  }

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

