body {
  margin: 0;
  font-family: 'Roboto Mono', monospace;
  background: linear-gradient(180deg, #f5f8ff 0%, #3b7fff 100%);
  min-height: 100vh;
  color: #222;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px 16px 40px;
  background: transparent;
  font-size: 1.1rem;
}
.logo {
  font-weight: bold;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.circle {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #000;
  border-radius: 50%;
  margin-right: 6px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.nav-links li {
  cursor: pointer;
  position: relative;
}
.arrow {
  font-size: 0.8em;
  margin-left: 2px;
}
.nav-icons {
  display: flex;
  gap: 18px;
  font-size: 1.3em;
}

main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hero {
  padding: 60px 0 0 0;
  text-align: center;
}
.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.hero-content h2 {
  font-size: 3rem;
  color: #3b7fff;
  font-weight: 700;
  margin: 0;
}
.base {
  letter-spacing: 1px;
}

.claim-section {
  background: linear-gradient(180deg, #3b7fff 0%, #1a3a7c 100%);
  color: #fff;
  padding: 32px 0 60px 0;
  text-align: left;
  margin-top: 40px;
  position: relative;
}
.claim-section {
  padding-left: 8vw;
  padding-right: 8vw;
}
.claim-info {
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
  font-family: 'Roboto Mono', monospace;
}
.claim-section a {
  color: #fff;
  text-decoration: underline;
}
.claim-btn {
  margin-top: 28px;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-family: 'Roboto Mono', monospace;
  background: #fff;
  color: #222;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
}
.claim-btn:hover {
  background: #e6e6e6;
}
.powered {
  position: absolute;
  right: 32px;
  bottom: 16px;
  font-size: 0.9rem;
  opacity: 0.7;
  letter-spacing: 1px;
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 12px;
  }
  .nav-links {
    gap: 16px;
  }
  .claim-section {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .powered {
    right: 10px;
    bottom: 10px;
  }
}

.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  color: #222;
  min-width: 160px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-radius: 8px;
  z-index: 100;
  padding: 8px 0;
}
.dropdown.open .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  padding: 0;
}
.dropdown-menu a {
  color: #222;
  padding: 10px 20px;
  display: block;
  border-radius: 0;
  background: none;
  text-decoration: none;
}
.dropdown-menu a:hover {
  background: #f0f4ff;
  color: #3b7fff;
}

.connect-wallet-btn, .style.interact-button {
  margin-top: 28px;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-family: 'Roboto Mono', monospace;
  background: #fff;
  color: #222;
  border: 1.5px solid #e0e4ea;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 2px 12px rgba(59,127,255,0.07);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
}
.connect-wallet-btn:hover, .style.interact-button:hover {
  background: #f5f8ff;
  color: #3b7fff;
  border: 1.5px solid #3b7fff;
  box-shadow: 0 4px 24px rgba(59,127,255,0.13);
} 