:root {
  --bg: #020308;
  --bg-elevated: #050811;
  --accent: #1cff7c;
  --accent-soft: rgba(28, 255, 124, 0.12);
  --text-main: #f5f7ff;
  --text-muted: #a3acc5;
  --border-subtle: #161b2a;
  --danger: #ff4d6a;
  --radius: 14px;
  --shadow-soft: 0 0 40px rgba(0, 0, 0, 0.7);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.glf {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #071322 0, #020308 55%, #000000 100%);
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.container {
  width: 100%;
  max-width: 720px;
}

header {
  margin-bottom: 2rem;
  text-align: center;
}

header h1 {
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 18px rgba(28, 255, 124, 0.7);
}

header p {
  margin: 0;
  color: var(--text-muted);
}

.card {
  background: linear-gradient(135deg, rgba(28, 255, 124, 0.12), rgba(3, 9, 24, 0.95));
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(14px);
}

.card h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

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

input[type="text"],
input[type="email"],
input[type="url"],
select,
textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background-color: rgba(3, 8, 20, 0.9);
  color: var(--text-main);
  font: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(28, 255, 124, 0.5);
  background-color: rgba(3, 8, 20, 1);
}

textarea {
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.checkbox input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
}

button[type="submit"] {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: none;
  background: radial-gradient(circle at 10% -20%, #8affd0, #1cff7c 50%, #14b361);
  color: #020308;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(28, 255, 124, 0.7);
  transition: transform 0.08s ease, box-shadow 0.08s ease, filter 0.08s ease;
}

button[type="submit"]:hover {
  transform: translateY(-1px);
  filter: brightness(1.07);
  box-shadow: 0 0 30px rgba(28, 255, 124, 0.9);
}

button[type="submit"]:active {
  transform: translateY(1px);
  box-shadow: 0 0 16px rgba(28, 255, 124, 0.6);
}

.small-print {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  body.glf {
    padding: 1.75rem 1rem;
  }

  header h1 {
    font-size: 1.8rem;
  }
}
