body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background-color: #0D0F12;
  color: #fff;
  overflow: hidden;
}

.hidden {
  display: none !important;
}

.nav-link {
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #38bdf8;
}

#hero {
  min-height: calc(100vh - 200px);
  padding-top: 80px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: bold;
}

.card {
  background-color: #1C1F24;
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: background-color 0.3s ease;
}

.card:hover {
  background-color: #2C3138;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.icon {
  font-size: 2rem;
}

.step {
  font-size: 1.5rem;
  background-color: #38bdf8;
  color: #fff;
  border-radius: 50%;
  padding: 0.5rem 0.9rem;
  font-weight: bold;
}

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 50;
}

.modal-box {
  position: relative;
  background: #1C1F24;
  padding: 2rem;
  border-radius: 12px;
  max-width: 24rem;
  width: 100%;
  text-align: center;
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.link {
  color: #38bdf8;
  text-decoration: underline;
}

/* Hide scrollbar */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
