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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, sans-serif;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(2, 8, 20, 0.95) 0%, rgba(2, 8, 20, 0.7) 42%, rgba(2, 8, 20, 0.25) 100%),
    linear-gradient(180deg, rgba(2, 8, 20, 0.15), rgba(2, 8, 20, 0.95)),
    url("maadens-ship-2-png.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page {
  min-height: 100vh;
  padding: 24px 7%;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid rgba(174, 231, 255, 0.18);
  border-radius: 22px;
  background: rgba(5, 12, 28, 0.68);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.logo {
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
}

.logo span {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  color: #b48cff;
}

nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  opacity: 0.9;
}

nav a:hover {
  color: #b48cff;
}

.connect-btn {
  padding: 14px 22px;
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  background: linear-gradient(135deg, #7b45d8, #4e2a93);
  box-shadow: 0 10px 30px rgba(123, 69, 216, 0.35);
}

.hero {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  padding: 80px 0 40px;
}

.hero-content {
  max-width: 620px;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.88;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.8);
}

h1 span {
  display: block;
  color: #b48cff;
}

.underline {
  width: 116px;
  height: 4px;
  margin-bottom: 20px;
  border-radius: 99px;
  background: #b48cff;
  box-shadow: 0 0 20px rgba(180, 140, 255, 0.8);
}

.description {
  margin-bottom: 28px;
  max-width: 560px;
  color: #dce9f5;
  font-size: 18px;
  line-height: 1.65;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
  padding: 18px 22px;
  border-radius: 12px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(128, 83, 223, 0.95), rgba(49, 30, 94, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.48);
}

.download-btn.secondary {
  background: linear-gradient(135deg, rgba(54, 157, 169, 0.96), rgba(25, 79, 99, 0.96));
}

.download-btn small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.icon {
  font-size: 34px;
}

.note {
  color: #b9c7d8;
  font-size: 14px;
}

.install-guide {
  margin: 34px 0 48px;
  padding: 32px;
  border: 1px solid rgba(174, 231, 255, 0.14);
  border-radius: 22px;
  background: rgba(5, 12, 28, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.install-guide h2 {
  margin-bottom: 10px;
  color: #b48cff;
  font-size: 30px;
}

.guide-intro {
  max-width: 720px;
  margin-bottom: 24px;
  color: #dce9f5;
  line-height: 1.65;
}

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

.guide-step {
  padding: 18px;
  border: 1px solid rgba(174, 231, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.guide-step h3 {
  margin-bottom: 14px;
  color: #d9c6ff;
  font-size: 20px;
}

.screenshot-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  margin-bottom: 14px;
  border: 2px dashed rgba(180, 140, 255, 0.55);
  border-radius: 14px;
  color: #c9d8ea;
  text-align: center;
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.screenshot-placeholder img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  border-radius: 12px;
}

.guide-text {
  margin-top: 14px;
  padding: 18px;
  border-radius: 12px;
  background: rgba(2, 8, 20, 0.45);
  border: 1px solid rgba(174, 231, 255, 0.12);
  color: #ffffff;
  line-height: 1.6;
  min-height: 110px;
}

.guide-text p {
  margin-bottom: 10px;
}

.guide-text pre {
  margin-top: 12px;
  padding: 16px;
  overflow-x: auto;
  border-radius: 12px;
  background: #0d1117;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.guide-text code {
  color: #c9d1d9;
  font-family: Consolas, Monaco, monospace;
  font-size: 14px;
  white-space: pre;
  user-select: text;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.card,
.about-box {
  border: 1px solid rgba(174, 231, 255, 0.14);
  background: rgba(5, 12, 28, 0.7);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.card {
  padding: 26px;
  border-radius: 18px;
}

.card h3 {
  margin-bottom: 12px;
  color: #d9c6ff;
  font-size: 20px;
}

.card p {
  color: #d9e6f2;
  line-height: 1.55;
}

.about-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 34px 0 48px;
  padding: 32px;
  border-radius: 22px;
}

.about-box h2 {
  color: #b48cff;
  font-size: 30px;
  margin-bottom: 14px;
}

.about-box p {
  color: #dce9f5;
  line-height: 1.65;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: center;
}

.stat {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.stat b {
  display: block;
  color: #ffffff;
  font-size: 20px;
}

.stat span {
  color: #b48cff;
  font-weight: 800;
}

footer {
  padding: 28px 0;
  text-align: center;
  color: #aebed0;
}

@media (max-width: 1000px) {
  header,
  nav {
    flex-direction: column;
  }

  nav {
    gap: 14px;
  }

  .cards,
  .about-box,
  .stats,
  .guide-steps {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 60px;
  }
}
