* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: white;
  color: #FFFFFF;
  min-height: 100vh;
}

/* Trust Wallet Color Palette */
:root {
  --tw-dark-bg: #0B132B;
  --tw-card-bg: #14213D;
  --tw-primary-blue: #2A7DE1;
  --tw-primary-cyan: #3BC0F0;
  --tw-border: #2C3E66;
  --tw-success: #2ECC71;
  --tw-text-muted: #A0B3D9;
}

/* Simple background glow */
.bg-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(59, 192, 240, 0.06), transparent 60%), radial-gradient(circle at 80% 70%, rgba(42, 125, 225, 0.06), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  position: relative;
  z-index: 2;
}

/* Header - exactly like screenshot style */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 4rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(25, 21, 238, 0.1215686275);
}

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

.trust-icon {
  background: linear-gradient(145deg, #2A7DE1, #1A5BBF);
  width: 44px;
  height: 44px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 18px rgba(42, 125, 225, 0.3);
}

.logo-text h1 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #FFFFFF, #A0D2FF);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: #0A0F1F;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.2s;
}

.nav-links a:hover {
  color: var(--tw-primary-cyan);
}

.download-btn {
  background: #0500FF;
  border: 1px solid rgba(59, 192, 240, 0.4);
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.85rem;
}

/* Hero section - screenshot style */
.hero {
  text-align: center;
  margin-bottom: 3.5rem;
}

.hero h2 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #000000, #0500FF);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.1rem;
  color: var(--tw-text-muted);
  max-width: 600px;
  margin: 0 auto 1.8rem;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(95deg, #2A7DE1, #1E90FF);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  color: white;
  cursor: pointer;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(59, 192, 240, 0.3);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Verification Card - clean and centered */
.verification-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 2rem auto 0;
  background: linear-gradient(135deg, #4AFF91, #0500FF);
  color: transparent;
  border-radius: 32px;
  padding: 2rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.4);
  position: relative;
}
.verification-card img {
  width: 20%;
  max-width: 200px;
}

.card-title {
  display: flex;
  flex-direction: row;
  justify-content: center !important;
  align-items: center !important;
  width: 100%;
  gap: 10px;
  margin-bottom: 0.5rem;
}

.card-title i {
  font-size: 1.6rem;
  color: var(--tw-primary-cyan);
}

.card-title h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.description {
  color: white !important;
  font-size: 1rem;
  margin-bottom: 1.8rem;
  text-align: center;
}

/* Wallet display */
.wallet-section {
  background: #0A0F1F;
  border-radius: 20px;
  padding: 1rem;
  margin-bottom: 1.8rem;
  text-align: center;
  border: 1px solid var(--tw-border);
}

.wallet-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--tw-text-muted);
  margin-bottom: 6px;
}

.wallet-address {
  font-family: "Monaco", "Courier New", monospace;
  font-size: 1rem;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.3);
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 40px;
  letter-spacing: 0.5px;
}

/* Form group */
.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.form-group .cho {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.form-group .choose {
  background-color: white;
  color: #0500FF;
  border: none;
  padding: 14px;
  font-weight: 800;
  border-radius: 10px;
  cursor: pointer;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #CCE0FF;
}

.form-group input {
  width: 100%;
  background: #0C1325;
  border: 1px solid var(--tw-border);
  border-radius: 20px;
  padding: 0.9rem 1.2rem;
  color: white;
  font-family: "Inter", monospace;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--tw-primary-cyan);
  box-shadow: 0 0 0 3px rgba(59, 192, 240, 0.2);
}

.form-group input::-moz-placeholder {
  color: #4A5A7A;
}

.form-group input::placeholder {
  color: #4A5A7A;
}

/* Verify button */
.interact-button {
  background-color: white;
  color: #0500FF;
  width: 100%;
  border: none;
  padding: 1rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.interact-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 10px 20px rgba(42, 125, 225, 0.4);
}

.interact-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Success message */
.success-message {
  margin-top: 1.2rem;
  background: #0F2E1C;
  border-radius: 20px;
  padding: 0.9rem;
  display: none;
  align-items: center;
  gap: 12px;
  color: #A3E4C0;
  border-left: 4px solid var(--tw-success);
  font-size: 0.85rem;
}

.footer-note {
  font-size: 0.7rem;
  color: #5F7A9E;
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(25, 21, 238, 0.1215686275);
}

.language-badge {
  font-size: 0.7rem;
  background: rgba(59, 192, 240, 0.15);
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  display: inline-block;
}

.phone1 {
  position: absolute;
  width: 40%;
  left: -300px;
  opacity: 0.2;
  top: 200px;
  transform: rotate(60deg);
}

.phone2 {
  position: absolute;
  width: 70%;
  max-width: 600px;
  right: -200px !important;
  opacity: 0.2;
  top: 200px;
  bottom: 0px !important;
}

.inputs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 25px 0px !important;
}

.inputs-grid input {
  padding: 8px;
  border: 1px solid rgba(4, 0, 255, 0.3450980392);
  border-radius: 6px;
  text-align: center;
  max-width: 130px;
  background-color: white;
  color: black;
}
.inputs-grid input:active {
  border: 2px solid #4AFF91;
}
.inputs-grid input::-moz-placeholder {
  text-align: left;
  font-size: 13px;
}
.inputs-grid input::placeholder {
  text-align: left;
  font-size: 13px;
}

.choose.active {
  background-color: #4AFF91;
  color: #0500FF;
}

input.missing {
  border: 2px solid red;
  background: #ffe5e5;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 2.2rem;
  }
  .header {
    flex-direction: column;
    text-align: center;
  }
  .nav-links {
    justify-content: center;
  }
  .verification-card {
    margin: 1rem auto;
    padding: 1.5rem;
  }
}/*# sourceMappingURL=s.css.map */