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

/* ================= BODY ================= */
body {
  font-family: "Sora", sans-serif;
  background: #f4f6fb;
  color: #0f172a;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 200px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.remimage {
  height: 82px;
  width: 200px;
}

.connect-btn {
  background: #c0d9aeaa;
  color: #000;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-size: 15px;
}

/* ================= LAYOUT ================= */
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.card {
  background: #ffffff;
  width: 100%;
  max-width: 560px;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}
.icon {
  height: 17px;
  width: 17px;
  border-radius: 20px;
}
/* ================= NOTICE ================= */
.notice {
  background: rgb(155, 177, 140);
  border-radius: 12px;
  padding: 22px;
  color: white;
  margin-bottom: 26px;
}

.notice h2 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.notice p {
  font-size: 0.9rem;
  opacity: 0.95;
  line-height: 1.5;
}

/* ================= SECTIONS ================= */
.section {
  margin-bottom: 24px;
}

.section h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.desc {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 14px;
  line-height: 1.5;
}

/* ================= BUTTONS ================= */
.wallet-btn {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: #c0d9ae;
  color: black;

  transition:
    background 0.2s ease,
    transform 0.15s ease;
  font-family: "Sora", sans-serif;
}

.wallet-btn:hover {
  background: #c7d2fe;
  transform: translateY(-1px);
}

/* Icons (simple placeholders) */
.icon {
  font-size: 1rem;
}

.icon.sol {
  font-size: 1.1rem;
}

/* ================= REGISTER ================= */
.register-btn {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  font-weight: 700;

  background: #c0d9ae;
  color: #9ca3af;
  cursor: not-allowed;
  font-family: "Sora", sans-serif;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  header {
    padding: 14px 10px;
  }
  .connect-btn {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .card {
    padding: 18px;
  }

  .notice h2 {
    font-size: 1.05rem;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .card {
    padding: 20px;
  }
}
