@import url("https://fonts.googleapis.com/css2?family=Bitcount+Prop+Double:wght@100..900&family=Federant&family=Henny+Penny&family=Unica+One&display=swap");

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

body {
  background-color: #ead9bd;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='381' height='381' viewBox='0 0 200 200'%3E%3Cg %3E%3Cpolygon fill='%2329828e' points='100 57.1 64 93.1 71.5 100.6 100 72.1'/%3E%3Cpolygon fill='%234a9eaa' points='100 57.1 100 72.1 128.6 100.6 136.1 93.1'/%3E%3Cpolygon fill='%2329828e' points='100 163.2 100 178.2 170.7 107.5 170.8 92.4'/%3E%3Cpolygon fill='%234a9eaa' points='100 163.2 29.2 92.5 29.2 107.5 100 178.2'/%3E%3Cpath fill='%2369BBC7' d='M100 21.8L29.2 92.5l70.7 70.7l70.7-70.7L100 21.8z M100 127.9L64.6 92.5L100 57.1l35.4 35.4L100 127.9z'/%3E%3Cpolygon fill='%23aea491' points='0 157.1 0 172.1 28.6 200.6 36.1 193.1'/%3E%3Cpolygon fill='%23d6cbb8' points='70.7 200 70.8 192.4 63.2 200'/%3E%3Cpolygon fill='%23FFF4E0' points='27.8 200 63.2 200 70.7 192.5 0 121.8 0 157.2 35.3 192.5'/%3E%3Cpolygon fill='%23d6cbb8' points='200 157.1 164 193.1 171.5 200.6 200 172.1'/%3E%3Cpolygon fill='%23aea491' points='136.7 200 129.2 192.5 129.2 200'/%3E%3Cpolygon fill='%23FFF4E0' points='172.1 200 164.6 192.5 200 157.1 200 157.2 200 121.8 200 121.8 129.2 192.5 136.7 200'/%3E%3Cpolygon fill='%23aea491' points='129.2 0 129.2 7.5 200 78.2 200 63.2 136.7 0'/%3E%3Cpolygon fill='%23FFF4E0' points='200 27.8 200 27.9 172.1 0 136.7 0 200 63.2 200 63.2'/%3E%3Cpolygon fill='%23d6cbb8' points='63.2 0 0 63.2 0 78.2 70.7 7.5 70.7 0'/%3E%3Cpolygon fill='%23FFF4E0' points='0 63.2 63.2 0 27.8 0 0 27.8'/%3E%3C/g%3E%3C/svg%3E");
  font-family: "Federant", serif;
  font-weight: 400;
  font-style: normal;
}

.heading img {
  width: 300px;
}
.heading {
  text-align: center;
}

.box0 {
  padding: 5px;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 28px 14px rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
text-align: center;

}

.grid {
  display: grid;
  grid-template-areas:
    "head1 head1 ."
    ". head2 head2"
    "head3 head3 ."
    ". head4 head4";
  gap: 30px;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative; /* needed for pseudo-element positioning */
}
.grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%; /* adjust to align with your column layout */
  width: 10px;
  background-color: #a27326;
}
/* Base glass card for all grid items */
.grid div {
  padding: 5px;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 28px 14px rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}
.box0::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
}

.box0::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.25),
    transparent 70%
  );
  pointer-events: none;
}
/* Odd cards (left column) */
.grid div:nth-child(odd) {
  background: rgba(172, 211, 223, 0.25);
  border-right: 4px solid black;

}

/* Even cards (right column) */
.grid div:nth-child(even) {
  border-left: 4px solid black;
    text-align: right;

}

/* Glass shine for even cards */
.grid div:nth-child(even)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
}

.grid div:nth-child(even)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.25),
    transparent 70%
  );
  pointer-events: none;
}

/* Hover lift for even cards */
.grid div:nth-child(even):hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 28px 14px rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}
.grid div:nth-child(odd):hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 28px 14px rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}

/* Grid area placement */
.box1 {
  grid-area: head1;
  outline: 2px solid rgb(168, 160, 160);
}
.box2 {
  grid-area: head2;
  outline: 2px solid rgb(203, 192, 192);
}
.box3 {
  grid-area: head3;
  outline: 2px solid rgb(224, 210, 210);
}
.box4 {
  grid-area: head4;
  outline: 2px solid rgb(223, 209, 209);
}

.pie-chart {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: conic-gradient(
    #38b2ac 0% 25%,
    /* Initial LP 25% */ #f6ad55 25% 30%,
    /* Marketing & Community 5% */ #805ad5 30% 35%,
    /* Partnerships 5% */ #e53e3e 35% 100% /* Burning & Hype 65% */
  );
  position: relative;
}

.pie-chart::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background-color: #f4efec;
  border-radius: 50%;
}

.legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.color-box {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.lp {
  background-color: #38b2ac;
}
.marketing {
  background-color: #f6ad55;
}
.partnership {
  background-color: #805ad5;
}
.burn {
  background-color: #e53e3e;
}

.tokenomics-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  padding: 50px;
}

.tokenomics-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  z-index: 0;
}

.tokenomics-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.25),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.tokenomics-container > * {
  position: relative;
  z-index: 1;
}

.tokenomics-container:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 28px 14px rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}

.site-footer {
  background-color: #081e34c0; /* black background */
  color: #fff; /* white text */
  text-align: center;
  padding: 20px 10px;
  font-family: "Federant", serif;
  font-size: 16px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
  font-weight: bold;
}

.site-footer a:hover {
  text-decoration: underline;
}
h2,
h1,
h4 {
  text-align: center;
  color: #b88139;
  font-weight: bolder;
}
h4 {
  padding: 20px;
}
.icon-link {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin: 10px;
  transition: transform 0.3s;
}
.icon-link:hover {
  transform: scale(1.2);
}
svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.telegram {
  color: #0088cc;
}
.twitter {
  color: #1da1f2;
}
.dextools {
  color: #ff6600;
}
.dexcreener {
  color: #22cc66;
}

.facts-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: #2b6cb0; /* accent blue */
}

.facts-list {
  list-style: none;
  padding: 20px;
  margin: 0 auto;
  max-width: 400px;
  background: linear-gradient(135deg, #ead9bd, #f9fafb);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.facts-list > li {
  margin: 10px 0;
  font-weight: 600;
  font-size: 16px;
  color: #1f2937;
}

.facts-subtitle {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 700;
  color: #374151;
}

.facts-sublist {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.facts-sublist li {
  margin: 6px 0;
  font-weight: 500;
  font-size: 15px;
  color: #4b5563;
}

.badge {
  display: inline-block;
  margin-left: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #23accf;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.tax {
  background-color: #38b2ac;
  padding: 50px;
}
