@font-face {
  font-family: Poppins;
  src: url(../fonts/Poppins.ttf);
}

@font-face {
  font-family: PoppinsMedium;
  src: url(../fonts/PoppinsMedium.ttf);
}

@font-face {
  font-family: Nexa;
  src: url(../fonts/Nexa.ttf);
}

@font-face {
  font-family: NexaLight;
  src: url(../fonts/NexaLight.ttf);
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  color: #fff;
  font-family: Nexa, Arial, Helvetica, sans-serif;
}

body.toggle {
  color: #080808;
}

.background {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
}

.background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.background.toggle::after {
  opacity: 1;
}

a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

a.toggle {
  color: #000000;
}

span {
  cursor: default;
}

.titleContainer {
  display: flex;
  flex-direction: column;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Standard syntax */
}

h1 {
  line-height: 1;
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 6rem;
  font-weight: 700;
  background: #ffffff;
  background: linear-gradient(to bottom, #ffffff 0%, #dddddd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: default;
  transition: all 0.5s ease;
}

h1.toggle {
  background: #000000;
  background: linear-gradient(to bottom, #000000 0%, #242424 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1:hover {
  scale: 1.0125;
  margin-bottom: 5px;
}

h2 {
  font-size: 3rem;
  background: #ffffff;
  background: linear-gradient(to bottom, #ffffff 0%, #dddddd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: default;
}

h2.toggle {
  background: #000000;
  background: linear-gradient(to bottom, #000000 0%, #242424 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  font-size: 1rem;
  cursor: default;
  font-family: NexaLight, Arial, Helvetica, sans-serif;
}

.greenText {
  background: #00e022;
  background: linear-gradient(to bottom, #00e022 0%, #19bb47 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================ SCROLL REVEAL ANIMATIONS ================ */

/* Base state for all animated content (except home) */
.reveal-content {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Different animation types */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal-fade-down {
  opacity: 0;
  transform: translateY(-60px);
  transition: all 0.8s ease;
}

.reveal-fade-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s ease;
}

.reveal-fade-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease;
}

.reveal-rotate {
  opacity: 0;
  transform: rotate(10deg) scale(0.9);
  transition: all 0.8s ease;
}

/* Active state when in view */
.reveal-content.revealed,
.reveal-fade-up.revealed,
.reveal-fade-down.revealed,
.reveal-fade-left.revealed,
.reveal-fade-right.revealed,
.reveal-scale.revealed,
.reveal-rotate.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1) rotate(0);
}

/* Staggered animations for child elements */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.stagger-children.revealed > *:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.stagger-children.revealed > *:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.stagger-children.revealed > *:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.stagger-children.revealed > *:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

/* ================ HEADER ================ */

header {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 4rem;
  z-index: 1;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.headerContainer {
  width: 1500px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease;
}

.headerContainer.scrolled {
  width: 1250px;
  margin-top: 0.5rem;
  padding: 0 1rem;
  border-radius: 2rem;
  background-color: rgba(14, 14, 14, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.headerContainer.scrolled.toggle {
  background-color: transparent;
}

.headerRight {
  font-family: NexaLight, Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
}

.headerLeft {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.headerBtn {
  transition: all 0.5s ease;
  cursor: pointer;
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
}

.headerBtn:hover {
  color: rgb(222, 222, 222);
  background: rgba(6, 41, 74, 0.5);
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
}

.headerLogo {
  display: inline-block;
  background-image: url(../images/logoexample.png);
  background-size: 2.5rem 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  transition: all 0.5s ease;
}

.headerLogo:hover {
  scale: 1.1;
}

.headerLogoText {
  font-weight: 700;
}

.headerlogos {
  width: 20px;
  height: auto;
  transition: transform 0.2s;
  animation: fadeIn 3s;
  margin: 5px;
  cursor: pointer;
}

.docslogo.toggle {
  content: url(../images/docslogobl.png);
}

.xlogo.toggle {
  content: url(../images/xlogobl.png);
}

.headerlogos:hover {
  transform: scale(1.1);
}

.daynight {
  cursor: pointer;
  width: 25px;
}

.daynight.toggle {
  content: url(../images/nighticon.png);
}

/* ================ CONTAINER ================ */

.scrollContainer {
  height: 100vh;
  width: 100vw;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section {
  height: 100vh;
  width: 1250px;
}

.content {
  width: 100%;
  height: 100vh;
  transition: 1s all ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* margin-top: 2rem; */
}

/* .appear {
  transform: translateY(0);
  opacity: 1;
  transition: 1s all ease;
} */

/* ================ sectionOne ================ */

.sectionOne {
  display: initial;
}

.sectionOne.closed {
  display: none;
}

.homeContent {
  height: 80vh;
  margin-top: 5rem;
  /* background: rgba(0, 0, 0, 0.5);
  border-radius: 2rem;
  padding: 1rem; */
}

.homeTop {
  height: 80%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

/* ================= HOMELEFT =================*/

.homeLeft {
  height: 100%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  gap: 2rem;
}

.homeBtns {
  display: flex;
  gap: 1rem;
}

/* TRADE BTN */

.tradeBtn {
  position: relative;
  color: #171717ff;
  font-weight: 700;
  border: 1px solid #03ff28;
  border-radius: 2rem;
  padding: 1rem 3rem;
  background: #00e022;
  background: linear-gradient(to bottom, #00e022 0%, #19bb47 100%);
  transition: all 0.5s ease;
  overflow: hidden;
  cursor: pointer;
  pointer-events: all;
}

.tradeBtn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg,
    transparent,
    transparent 30%,
    rgba(255, 255, 255, 0.3)
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.tradeBtn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.tradeBtn:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}

/* LAUNCH BTN */

.launchBtn {
  position: relative;
  color: #fff;
  font-weight: 700;
  border: 1px solid #383838;
  border-radius: 2rem;
  padding: 1rem 3rem;
  background-color: rgba(30, 30, 30, 0.5);
  transition: all 0.5s ease;
  overflow: hidden;
  cursor: pointer;
  pointer-events: all;
}

.launchBtn.toggle {
  background-color: rgb(41, 41, 41, 1);
}

.launchBtn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg,
    transparent,
    transparent 30%,
    rgba(255, 255, 255, 0.3)
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.launchBtn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.launchBtn:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}

/* ================= HOMERIGHT =================*/

.homeRight {
  height: 100%;
  width: 50%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.liveInfo {
  width: 100%;
  display: flex;
  flex-direction: column;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Standard syntax */
}

.liveTop {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
  padding-bottom: 1rem;
}

.count {
  font-size: 1.5rem;
}

.fundCount {
  color: #00e022;
}

.liveContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.liveLower {
  font-family: NexaLight, Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgb(39, 39, 39);
}

/* ================= HOMELOWER =================*/

.homeLower {
  font-family: PoppinsMedium, Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  height: auto;
  width: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 0.25rem;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Standard syntax */
}

.description1 {
  background: #00e022;
  background: linear-gradient(to bottom, #00e022 0%, #19bb47 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.description3 {
  font-family: NexaLight, Arial, Helvetica, sans-serif;
  color: rgb(175, 175, 175);
}

.greenDot {
  animation: blinker 2s linear infinite;
  width: 10px;
  height: 10px;
  display: inline-block;
  border: 1px solid #00e022;
  background-color: #00e022;
  border-radius: 100%;
}

.blueDot {
  animation: blinker 5s linear infinite;
  width: 10px;
  height: 10px;
  display: inline-block;
  border: 1px solid #0077e0;
  background-color: #0077e0;
  border-radius: 100%;
}

.purpleDot {
  animation: blinker 5s linear infinite;
  width: 10px;
  height: 10px;
  display: inline-block;
  border: 1px solid #a000e0;
  background-color: #a000e0;
  border-radius: 100%;
}

@keyframes blinker {
  50% {
    opacity: 0.6;
  }
}
/* ================ sectionTwo ================ */

.sectionTwo {
  width: 1250px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sectionTwo.closed {
  display: none;
}

.joinBorderContainer {
  width: 100%;
  height: 80%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Changed from center */
  align-items: center;
  padding: 3rem; /* Added padding instead of gap */
}

h2 {
  font-size: 3rem;
  background: linear-gradient(to bottom, #ffffff 0%, #dddddd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem; /* Controlled spacing */
  text-align: center;
}

.joinContainer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.joinLeft {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.joinRight {
  flex: 1;
  display: flex;
  justify-content: center;
}

.joinText p {
  margin-bottom: 0.5rem;
}

.greenText {
  background: linear-gradient(to bottom, #00e022 0%, #19bb47 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* JOIN FORM */

.card {
  border-radius: 10px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
  width: 100%;
  background-color: rgba(30, 30, 30, 0.8);
  padding: 30px;
}

.card_title {
  text-align: center;
  margin-bottom: 20px;
}

.card_title h1 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 10px;
}

.card_title span {
  font-size: 0.75rem;
  font-family: NexaLight, Arial, Helvetica, sans-serif;
  color: #ccc;
}

.form label {
  font-size: 0.75rem;
}

.form input {
  margin: 10px 0;
  width: 100%;
  background-color: #2a2a2a;
  border: 1px solid #444;
  outline: none;
  padding: 12px 20px;
  border-radius: 4px;
  color: #fff;
}

.form input::placeholder {
  color: #999;
}

input:focus {
  outline: 2px solid #fff;
  outline-offset: 1px;
  border: 2px solid #00e022;
}

.input-with-at {
  position: relative;
  display: flex;
  align-items: center;
}

.at-symbol {
  font-family: NexaLight;
  position: absolute;
  left: 12px;
  color: #fff;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.input-with-at input {
  padding-left: 30px !important;
}

.form button {
  background: linear-gradient(to bottom, #00e022 0%, #19bb47 100%);
  color: #000;
  font-size: 16px;
  font-weight: bold;
  outline: none;
  border-radius: 5px;
  border: none;
  padding: 12px 20px;
  width: 100%;
  cursor: pointer;
  transition: transform 0.2s;
}

.form button:hover {
  transform: scale(1.02);
}

.joinCreatorFund {
  background: rgba(0, 224, 34, 0.1);
  border: 1px solid #00e022;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.fundCount {
  color: #00e022;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 0.5rem;
}

/* ================ sectionThree ================ */

.sectionThree {
  height: auto;
  width: 1250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
}

.sectionThree.closed {
  display: none;
}

.aboutContent {
  height: 100%;
}

.aboutBorderContainer {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  padding: 2rem; /* ADDED padding */
}

.aboutBorderContainer.toggle {
  background: transparent;
}

.boxContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 1rem;
}

.aboutBorderContainer h2 {
  margin-bottom: 1rem;
}

.box {
  height: auto;
  width: 100%;
  border: 1px solid rgb(97, 97, 97);
  border-radius: 1rem;
  background: rgba(17, 17, 17, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.5s ease;
  overflow: hidden;
  pointer-events: all;
}

.box.toggle {
  color: #fff;
}

.box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg,
    transparent,
    transparent 30%,
    rgba(255, 255, 255, 0.3)
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.box:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.box:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}

.boxTop {
  width: 100%;
  height: 30%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgb(97, 97, 97);
}

.boxBottom {
  width: 100%;
  height: 70%;
  padding: 1rem;
}

/* ================ sectionFour ================ */

.sectionFour {
  min-height: 100vh;
  width: 1250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sectionFour.closed {
  display: none;
}

.faqTitle {
  margin-bottom: 0;
}

/* FAQ */

.faq {
  margin-top: 3rem;
}

summary {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: left;
  position: relative;
  border: 1px solid #383838;
  border-radius: 2rem;
  padding: 1rem 3rem;
  background-color: rgba(30, 30, 30, 0.5);
  transition: all 0.5s ease;
  overflow: hidden;
  cursor: pointer;
  pointer-events: all;
}

summary.toggle {
  background-color: rgba(41, 41, 41, 0.9);
  color: #fff;
}

details > summary::after {
  position: absolute;
  content: "+";
  right: 20px;
}
details[open] > summary::after {
  position: absolute;
  content: "-";
  right: 20px;
}
details > summary::-webkit-details-marker {
  display: none;
}

summary:hover {
  transform: scale(1.01);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

details[open] summary ~ * {
  animation: sweep 0.5s ease-in-out;
}
@keyframes sweep {
  0% {
    opacity: 0;
    margin-top: -10px;
  }
  100% {
    opacity: 1;
    margin-top: 0px;
  }
}

details {
  margin-top: 1rem;
  width: 1250px;
}

/* Footer */

.footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  text-align: center;
  margin-bottom: 1rem;
}

/* ================ sectionFive ================ */

.sectionFive {
  display: none;
}

.sectionFive.open {
  display: initial;
  height: auto;
  width: 1250px;
  top: 0;
}

.rankingsContent {
  margin-top: 5rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 3rem;
  gap: 3rem;
  height: 100%;
}

.rankingsTop {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rankingsTop h2 {
  margin-bottom: 0;
}

.rankingsTop h3 {
  margin-bottom: 3rem;
}

.rankingsLower {
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.leaderboardTop {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.leaderboardTitle {
  font-size: 1.5rem;
}

.refreshBtn {
  font-family: PoppinsMedium, Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  background-color: rgb(41, 41, 41, 0.75);
  color: #fff;
  border: 1px solid rgb(87, 87, 87);
  border-radius: 5px;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
}

.refreshBtn:hover {
  scale: 1.05;
}

.leaderboardLower {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.leaderboardBox {
  height: 7.5rem;
  width: 100%;
  border: 1px solid rgb(97, 97, 97);
  border-radius: 0.5rem;
  background: rgba(17, 17, 17, 0.95);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1rem;
  align-items: center;
  position: relative;
  transition: all 0.5s ease;
  overflow: hidden;
  pointer-events: all;
  cursor: pointer;
}

.leaderboardBox.toggle {
  color: #fff;
}

.leaderboardBox::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg,
    transparent,
    transparent 30%,
    rgba(255, 255, 255, 0.3)
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.leaderboardBox:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  scale: 1.01;
}

.leaderboardBox:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}

.leaderboardLeft {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.numberCount {
  color: #000000;
  background: #fff;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
}

.xPfp {
  height: 6rem;
  width: 6rem;
  display: inline-block;
  border-radius: 50%;
  background-color: rgb(41, 41, 41, 0.75);
  border: 1px solid black;
}

.xHandle {
  font-family: NexaLight, Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #1da1f2;
}

.xUsername {
  font-family: NexaLight, Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}

.xfollowerCount {
  font-family: NexaLight, Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
}

.leaderboardRight {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.shillCount {
  font-size: 1.5rem;
}

.shillText {
  font-family: PoppinsMedium, Arial, Helvetica, sans-serif;
  color: #e8e8e8;
}

.verified {
  color: #1da1f2;
  margin-left: 0.25rem;
}

/* ================ sectionFive ================ */

.sectionSix {
  display: none;
}

.sectionSix.open {
  display: initial;
  height: auto;
  width: 1250px;
  top: 0;
}

.distributionContent {
  margin-top: 5rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 3rem;
  gap: 0;
  height: 100%;
}

.distributionContent h2 {
  margin-bottom: 0;
}

.distributionContent h3 {
  margin-bottom: 3rem;
  text-align: center;
  font-family: NexaLight, Arial, Helvetica, sans-serif;
  width: 60%;
}

.distributionContainer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.distributionStatusBox {
  height: auto;
  width: 100%;
  border: 1px solid rgb(97, 97, 97);
  border-radius: 0.5rem;
  background: rgba(17, 17, 17, 0.95);
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding: 1rem;
  align-items: center;
}

.distributionInfoBox {
  width: 100%;
  border: 1px solid rgb(97, 97, 97);
  border-radius: 0.5rem;
  background: rgba(17, 17, 17, 0.95);
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.distributionInfoBox:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.distributionHeader {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1rem 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.distributionHeader::after {
  content: "+";
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.distributionInfoBox.expanded .distributionHeader {
  border-bottom-color: rgb(97, 97, 97);
}

.distributionInfoBox.expanded .distributionHeader::after {
  content: "−";
  transform: rotate(0deg);
}

.distributionContent-inner {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
}

.distributionInfoBox.expanded .distributionContent-inner {
  padding: 1rem 2rem 2rem 2rem;
  max-height: 800px;
  opacity: 1;
}

.transaction-list {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 1rem;
}

.transaction-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(97, 97, 97, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.transaction-item:last-child {
  border-bottom: none;
}

.transaction-time {
  font-size: 0.9rem;
  color: #999;
  margin-left: 1rem;
}

.transaction-amount {
  color: #00e022;
  font-weight: bold;
}
