/* Dutch Rabbit UI - Clean CSS Replacement */

:root {
  --primary: #ffbf00;
  --bg: #131313;
  --bg-light: #222222;
  --text: #FFFFFF;
  --accent: #f60;
  --border-radius: 8px;
  --max-width: 1024px;
  --nav-bg: rgb(85, 50, 26);
  --section-gap: 48px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
}

.pry-btn {
  display: inline-block;
  text-decoration: none;
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}

.pry-btn:hover {
  background: var(--accent);
}

.accent-btn {
  display: inline-block;
  text-decoration: none;
  color: var(--primary);
  padding: 12px 32px;
  border: 2px solid var(--primary);
  font-size: 1rem;
  font-weight: bold;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
  text-transform: uppercase;
}

.accent-btn:hover {
  background: var(--primary);
  color: black;
}

.underline {
  width: 200px;
  height: 5px;
  background: linear-gradient(to right, var(--primary), var(--primary), transparent);
  margin-bottom: 25px;
}

.cols-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: var(--section-gap);
}

.cols-2 img {
  width: 100%;
}

.bg-light {
  background: var(--bg-light);
}

.socials {
  margin-top: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
}

header {
  background: var(--nav-bg);
  padding: 0 20px;
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.logo img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}
.nav-links a:hover {
  color: var(--primary);
}

.hero {
  max-width: var(--max-width);
  margin: var(--section-gap) auto;
  padding: 0 20px;
}
.hero img {
  width: 100%;
  height: auto;
}
.hero h1 {
  font-size: 3rem;
  margin: 0 0 16px;
  color: #e47a00;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 32px;
}

section {
  padding: var(--section-gap) 20px;
}

section h2 {
  color: #ec9408;
  font-size: 2.8rem;
  margin: 0;
}
section p {
  font-size: 1.5rem;
  margin-block: 0 18px;
}

.content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-gap) 0;
}
#tokenomics h2 {
  text-align: center;
}

ul, li, dd, dt {
  list-style: none;
  margin: 0;
  padding: 0;
}

.box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid var(--accent);
  border-radius: 8px;
  text-align: center;
  margin-top: 30px;

  li:not(:last-child) {
   border-right: 2px solid var(--accent);
  }

  li {
    padding: 20px 8px;
  }
}

.box dd {
  font-weight: 800;
  margin-bottom: 8px;
}

.circles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-content: center;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: var(--section-gap);
  margin-top: 48px;
}

.circles li {
  background: var(--accent);
  border-radius: 50%;
  height: 150px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  margin: 0 auto;
}

.circles dd {
  font-size: 2rem;
  font-weight: 700;
}

#features {
  padding: var(--section-gap);
  text-align: center;
  
  p {
    font-size: 1rem;
    max-width: 768px;
    margin: 12px auto;
  }
}

.features{
  li {
    background: var(--bg-light);
    margin-top: 20px;
    padding: 30px;
    border-radius: 16px;
  }

  dt {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 12px;
  }
}

#roadmap{
  .roadmap-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--section-gap) 0;
  }

  h2 {
    text-align: center;
    margin-bottom: 12px;
  }

  .roadmap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--section-gap);
    margin-top: 24px;
  }

  ul > div {
    background: var(--bg);
    padding: 30px;
    border-radius: 16px;
  }

  ul li {
    list-style: disc;
    list-style-position: inside;
  }
}

.final {
  text-align: center;
  img {
    width: 200px;
    margin: 0 auto;
  }
  p {
    max-width: 768px;
    font-size: 1rem;
    margin: 0 auto;
  }

  .logo {
    display: flex;
    width: fit-content;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 12px;
  }
}


footer {
  .footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .socials {
    scale: .8;
  }

  .logo {
    color: white;
    text-decoration: none;
  }
}

@media (max-width: 600px) {
  .nav {
    flex-direction: column;
    height: auto;
    gap: 12px;
    padding: 8px;
  }
  .hero h1 {
    font-size: 2rem;
  }

  section {
    h2 {
      font-size: 2rem;
    }
  }

    p {
      font-size: 1rem !important;
    }

  .nav-links {
    gap: 10px;
  }

  .cols-2 {
    grid-template-columns: 1fr;
  }

  .box {
    grid-template-columns: repeat(2, 1fr);

    li:nth-child(even) {
      border: none;
    }
    li {
      border-bottom: none;
    }
    li:nth-child(-n+2) {
      border-bottom: 2px solid var(--accent);
    }
  }

  .circles {
    grid-template-columns: repeat(2, 1fr);
  }

  .roadmap {
    grid-template-columns: 1fr !important;
  }

  .footer-content {
    flex-direction: column;

    .nav-links {
      margin-top: 24px;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
  }

  #benefits img {
    width: 200px;
    margin: auto;
  }

  #about img {
    display: none;
  }
}