:root {
  --bg: #faf8ff;
  --fg: #000000;
  --accent: rgb(99, 102, 241);
  --accent-secondary: rgb(67, 56, 202);
  --muted: #808080;
  --border-subtle: #e5e5e5;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.12);
  --radius-lg: 20px;
  --radius-full: 999px;
  --transition-fast: 0.18s ease-out;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  
  /* Premium color system */
  --primary-violet: 99, 102, 241;
  --primary-blue: 67, 56, 202;
  --primary-indigo: 55, 48, 163;
  --accent-cyan: 37, 99, 235;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

.page {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 100vh;
  position: relative;
  z-index: 10;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-mark {
  width: 88px;
  height: 88px;
  border-radius: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 8px;
}

  .logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-text img {
  max-width: 100%;
  height: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-title {
  font-weight: 700;
  font-size: 32px;
  color: #0a0a0a;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 20px;
  color: rgba(10, 10, 10, 0.5);
  line-height: 1.3;
}

.header-cta {
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 8px 16px;
  background: #ffffffdd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--fg);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background var(--transition-fast),
    box-shadow var(--transition-fast), transform var(--transition-fast),
    border-color var(--transition-fast);
}

.header-cta:hover {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}

.main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  padding: 60px 0 72px;
  min-height: 70vh;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  text-align: center;
  font-weight: 700;
  background: linear-gradient(to right, #000000, #000000, rgb(99, 102, 241));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-main {
  margin-top: -25px !important;
  margin-bottom: 0 !important;
  transform: translateY(-5px);
}

.hero-title-sub {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
}

.hero-subtitle-title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  color: rgb(99, 102, 241);
}

.hero-subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(10, 10, 10, 0.65);
  max-width: 520px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 14px;
  justify-content: center;
}

.chip {
  font-size: 11px;
  border-radius: var(--radius-full);
  padding: 6px 10px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.chip-outline {
  border-color: rgba(99, 102, 241, 0.3);
  background: transparent;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  margin-top: 6px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  text-align: center;
  box-shadow: 
    0 4px 16px rgba(99, 102, 241, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  max-width: 500px;
}

.hero-meta > div {
  min-width: 0;
  flex: 1;
}

.meta-label {
  display: block;
  font-size: 11px;
  color: rgba(10, 10, 10, 0.5);
  margin-bottom: 3px;
}

.meta-value {
  font-size: 13px;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.8);
}

.hero-form-card {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(67, 56, 202, 0.08));
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 24px;
  padding: 22px 22px 18px;
  box-shadow: 
    0 8px 32px rgba(99, 102, 241, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  max-width: 440px;
  width: 100%;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-form-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 20px 60px rgba(99, 102, 241, 0.18),
    0 8px 24px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-color: rgba(99, 102, 241, 0.3);
}

.card-header h2 {
  margin: 0 0 6px;
  font-size: 18px;
}

.card-header p {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--muted);
}

.claim-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.claim-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.claim-list {
  margin: 0 0 8px;
  padding-left: 20px;
  font-size: 13px;
  color: rgba(10, 10, 10, 0.65);
  line-height: 1.7;
}

.claim-list li + li {
  margin-top: 4px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.field-group label {
  font-size: 12px;
  font-weight: 500;
}

input[type="text"],
input[type="number"],
select,
textarea {
  border-radius: 10px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 8px 10px;
  font-size: 13px;
  font-family: var(--font-sans);
  outline: none;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast), background var(--transition-fast),
    transform var(--transition-fast);
}

textarea {
  resize: vertical;
  min-height: 80px;
}

input::placeholder,
textarea::placeholder {
  color: #a3a3a3;
}

input:focus,
select:focus,
textarea:focus {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.12),
    0 10px 25px rgba(99, 102, 241, 0.12);
  transform: translateY(-0.5px);
}

.upload-dropzone {
  border-radius: 14px;
  border: 1px dashed rgba(0, 0, 0, 0.16);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #fafafa;
}

.upload-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.upload-title {
  font-size: 12px;
  font-weight: 500;
}

.upload-subtitle {
  font-size: 11px;
  color: var(--muted);
}

.upload-button {
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding: 6px 12px;
  font-size: 11px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #000000;
  color: #ffffff;
  transition: background var(--transition-fast),
    box-shadow var(--transition-fast), transform var(--transition-fast),
    border-color var(--transition-fast);
}

.upload-button:hover {
  background: #0000ff;
  border-color: #0000ff;
  box-shadow: 0 10px 24px rgba(0, 0, 255, 0.4);
  transform: translateY(-1px);
}

.upload-button input[type="file"] {
  display: none;
}

.links-textarea {
  margin-top: 6px;
}

.checkbox-group {
  margin-top: 4px;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.checkbox input {
  display: none;
}

.checkbox-mark {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  border: 1px solid var(--border-subtle);
  background: #fafafa;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) inset;
  position: relative;
  transition: border-color var(--transition-fast),
    background var(--transition-fast), box-shadow var(--transition-fast);
}

.checkbox input:checked + .checkbox-mark {
  background: #0000ff;
  border-color: #0000ff;
  box-shadow: 0 0 0 1px rgba(0, 0, 255, 0.3);
}

.checkbox input:checked + .checkbox-mark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid #ffffff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.checkbox-label {
  font-size: 11px;
  color: #303030;
}

.connect-wallet {
  margin-top: 8px;
  border-radius: 24px;
  border: none;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 900;
  background: linear-gradient(135deg, rgb(99, 102, 241), rgb(67, 56, 202));
  color: #ffffff;
  cursor: pointer;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.connect-wallet::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.connect-wallet:active::before {
  width: 300px;
  height: 300px;
}

.connect-wallet:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4), 
              0 0 60px rgba(99, 102, 241, 0.6),
              0 0 100px rgba(99, 102, 241, 0.3);
}

.connect-wallet:active {
  transform: translateY(0) scale(0.98);
}

.form-note {
  margin: 6px 0 0;
  font-size: 11px;
  color: rgba(10, 10, 10, 0.5);
}

.form-note.success {
  color: #046c32;
}

.form-note.error {
  color: #a30000;
}

.section {
  border-radius: 22px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.section-steps h3,
.section-faq h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step {
  padding: 14px 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fcfcfc;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step h4 {
  margin: 0 0 6px;
  font-size: 14px;
}

.step p {
  margin: 0;
  font-size: 12px;
  color: #333333;
}

.section-header {
  margin-bottom: 10px;
}

.section-header p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #303030;
}

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

.faq-item {
  padding: 10px 10px 9px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fbfbfb;
}

.faq-item h4 {
  margin: 0 0 6px;
  font-size: 13px;
}

.faq-item p {
  margin: 0;
  font-size: 12px;
  color: #303030;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  justify-content: center;
  font-size: 11px;
  color: var(--muted);
}

.footer-separator {
  opacity: 0.5;
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-text {
    order: 1;
  }

  .hero-form-card {
    order: 2;
  }

  .hero-text h1 {
    font-size: 32px;
  }
}

@media (max-width: 720px) {
  .page {
    padding: 18px 14px 28px;
  }

  .header {
    align-items: flex-start;
  }

  .hero-meta {
    padding: 10px 10px;
  }

  .hero-form-card {
    padding: 16px 14px 14px;
  }

  .section {
    padding: 16px 12px 14px;
  }

  .steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .field-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .page {
    padding: 16px 12px 24px;
  }

  .header {
    margin-top: 12px;
  }

  .logo {
    gap: 12px;
  }

  .logo-mark {
    width: 64px;
    height: 64px;
  }

  .logo-title {
    font-size: 24px;
  }

  .logo-subtitle {
    font-size: 16px;
  }

  .hero {
    padding: 40px 0 48px;
    min-height: auto;
    gap: 24px;
  }

  .hero-text h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-title-main {
    margin-top: -15px !important;
    transform: translateY(-3px);
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.6;
    max-width: 100%;
  }

  .hero-meta {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
    max-width: 100%;
  }

  .hero-meta > div {
    width: 100%;
  }

  .meta-label {
    font-size: 10px;
  }

  .meta-value {
    font-size: 12px;
  }

  .hero-form-card {
    padding: 18px 16px 16px;
    max-width: 100%;
    border-radius: 20px;
  }

  .claim-list {
    font-size: 12px;
    padding-left: 18px;
    line-height: 1.6;
  }

  .claim-list li + li {
    margin-top: 6px;
  }

  .connect-wallet {
    padding: 14px 18px;
    font-size: 13px;
    border-radius: 20px;
  }

  .form-note {
    font-size: 10px;
    line-height: 1.5;
  }

  /* Уменьшаем декоративные элементы на мобильных */
  .floating-particle {
    width: 150px !important;
    height: 150px !important;
    filter: blur(30px);
  }

  .decorative-circle {
    width: 60px !important;
    height: 60px !important;
  }

  .decorative-line {
    width: 100px !important;
  }
}

@media (max-width: 360px) {
  .page {
    padding: 12px 10px 20px;
  }

  .logo-mark {
    width: 56px;
    height: 56px;
  }

  .logo-title {
    font-size: 20px;
  }

  .logo-subtitle {
    font-size: 14px;
  }

  .hero {
    padding: 32px 0 40px;
    gap: 20px;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .hero-meta {
    padding: 10px;
    gap: 10px;
  }

  .hero-form-card {
    padding: 16px 14px 14px;
  }

  .claim-list {
    font-size: 11px;
    padding-left: 16px;
  }

  .connect-wallet {
    padding: 12px 16px;
    font-size: 12px;
  }
}

/* Ambient Background Gradient */
.ambient-gradient {
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(99, 102, 241, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 0% 50%, rgba(67, 56, 202, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(55, 48, 163, 0.12), transparent),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(37, 99, 235, 0.10), transparent);
  animation: ambientPulse 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes ambientPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* Grid Lines */
.grid-overlay {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
  animation: gridFlow 20s linear infinite, gridPulse 6s ease-in-out infinite;
  background-position: 0 0;
}

@keyframes gridFlow {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 80px 80px;
  }
}

@keyframes gridPulse {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.5;
  }
}

/* Floating Particles */
.floating-particle {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(40px);
  animation: particleFloat 15s ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.4;
  }
  25% {
    transform: translate(40px, -60px) scale(1.15) rotate(90deg);
    opacity: 0.5;
  }
  50% {
    transform: translate(-30px, 40px) scale(0.95) rotate(180deg);
    opacity: 0.35;
  }
  75% {
    transform: translate(50px, 20px) scale(1.1) rotate(270deg);
    opacity: 0.45;
  }
}

/* Noise Texture */
.noise-texture {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

/* Decorative Elements */
.decorative-circle {
  position: fixed;
  pointer-events: none;
  z-index: 1;
  animation: decorativeFloat 15s ease-in-out infinite;
  opacity: 0.6;
}

.decorative-line {
  position: fixed;
  pointer-events: none;
  z-index: 1;
  animation: decorativeFade 8s ease-in-out infinite;
  opacity: 0.4;
}

@keyframes decorativeFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.6;
  }
  33% {
    transform: translate(20px, -30px) rotate(120deg);
    opacity: 0.4;
  }
  66% {
    transform: translate(-15px, 20px) rotate(240deg);
    opacity: 0.5;
  }
}

@keyframes decorativeFade {
  0%, 100% {
    opacity: 0.4;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.7;
    transform: scaleX(1.2);
  }
}

/* Premium Typography */
.premium-headline {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #0a0a0a;
  margin-top: -20px;
}

.premium-subheadline {
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: rgba(10, 10, 10, 0.8);
}

.premium-description {
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7;
  color: rgba(10, 10, 10, 0.65);
}

.premium-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(99, 102, 241, 0.8);
}

/* Ambassador Modal Styles */
.ambassador-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}

.ambassador-modal-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 28px;
  padding: 32px;
  max-width: 460px;
  width: calc(100% - 48px);
  box-shadow: 
    0 20px 60px rgba(99, 102, 241, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.ambassador-modal-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.ambassador-modal-header {
  margin-bottom: 24px;
  text-align: center;
}

.ambassador-modal-header .logo {
  justify-content: center;
  margin-bottom: 8px;
}

.ambassador-modal-header .logo-title {
  color: #0a0a0a !important;
}

.ambassador-modal-header .logo-subtitle {
  color: rgba(10, 10, 10, 0.6) !important;
}

.ambassador-modal-body {
  position: relative;
  z-index: 1;
}

.ambassador-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ambassador-form .field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ambassador-form .field-group label {
  font-size: 13px;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: 0.02em;
}

.ambassador-input {
  border-radius: 14px;
  border: 1px solid rgba(99, 102, 241, 0.25);
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  outline: none;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  transition: all var(--transition-fast);
  box-shadow: 
    0 2px 8px rgba(99, 102, 241, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.ambassador-input::placeholder {
  color: rgba(10, 10, 10, 0.3);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.ambassador-input:focus {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 
    0 0 0 3px rgba(99, 102, 241, 0.15),
    0 8px 24px rgba(99, 102, 241, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

.ambassador-error {
  display: none;
  color: #dc2626;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 12px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 10px;
  margin-top: 4px;
  animation: fadeIn 0.2s ease-out;
}

.ambassador-submit-btn {
  margin-top: 8px;
  border-radius: 20px;
  border: none;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, rgb(99, 102, 241), rgb(67, 56, 202));
  color: #ffffff;
  cursor: pointer;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 
    0 12px 40px rgba(99, 102, 241, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.03em;
}

.ambassador-submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.ambassador-submit-btn:active::before {
  width: 300px;
  height: 300px;
}

.ambassador-submit-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 16px 50px rgba(99, 102, 241, 0.5), 
    0 0 60px rgba(99, 102, 241, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.15);
}

.ambassador-submit-btn:active {
  transform: translateY(0) scale(0.98);
}

/* Hide site content until verified */
.page.hidden-until-verified {
  display: none !important;
}

.ambient-gradient.hidden-until-verified,
.grid-overlay.hidden-until-verified,
.noise-texture.hidden-until-verified,
.floating-particle.hidden-until-verified,
.decorative-circle.hidden-until-verified,
.decorative-line.hidden-until-verified {
  display: none !important;
}

/* Mobile responsive */
@media (max-width: 480px) {
  .ambassador-modal-card {
    padding: 24px 20px;
    border-radius: 24px;
    max-width: calc(100% - 32px);
  }

  .ambassador-modal-header .logo {
    gap: 12px;
  }

  .ambassador-modal-header .logo-mark {
    width: 64px;
    height: 64px;
  }

  .ambassador-modal-header .logo-title {
    font-size: 24px;
  }

  .ambassador-modal-header .logo-subtitle {
    font-size: 16px;
  }

  .ambassador-input {
    padding: 12px 16px;
    font-size: 14px;
  }

  .ambassador-submit-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}



