@font-face {
  font-family: fat;
  src: url(fat.ttf);
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: fat;
  color: #ffaa00ca;
}

:root {
  --padding: 60px;
}

body{
  overflow: hidden;
  overflow-x: hidden; /* avoid horizontal scroll */
  background-image: radial-gradient(circle, orange, transparent 20%, orangered);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: orange;
}

.candy {
  position: absolute;
  top: -120px; /* start above the screen */
  width: 40px;
  z-index: -1;
  filter: drop-shadow(0px 0px 10px rgb(255, 0, 221));
  animation: fall linear infinite;
}

@keyframes fall {
  0% {
    transform: translateY(-100px) rotate(0deg);
    /* opacity: 0; */        /* ← remove this */
  }
  100% {
    transform: translateY(110vh) rotate(360deg);
    /* opacity: 0; */        /* ← and remove this too */
  }
}


/* Candy-specific timing and positioning */
.c1  { left: 5vw;  animation-duration: 6s; animation-delay: 0s;  }
.c2  { left: 15vw; animation-duration: 7s; animation-delay: 1s;  }
.c3  { left: 10vw; animation-duration: 5s; animation-delay: 2s;  }
.c4  { left: 15vw; animation-duration: 6.5s; animation-delay: 0.5s; }
.c5  { left: 15vw; animation-duration: 8s; animation-delay: 1.5s; }
.c6  { left: 85vw; animation-duration: 7.2s; animation-delay: 2s; }
.c7  { left: 95vw; animation-duration: 6s; animation-delay: 4s;  }
.c8  { left: 85vw; animation-duration: 5.5s; animation-delay: 1s;  }
.c9  { left: 85vw; animation-duration: 6.8s; animation-delay: 0.8s; }
.c10 { left: 10vw; animation-duration: 7.5s; animation-delay: 1.2s; }
.c11 { left: 17vw; animation-duration: 6.3s; animation-delay: 0.6s; }
.c12 { left: 5vw; animation-duration: 8s; animation-delay: 1.8s; }
.c13 { left: 90vw; animation-duration: 7s; animation-delay: 0.9s; }

.banner img{
  align-content: center;
  position: absolute;
  margin: 155px 473px;
  filter: blur(1px) drop-shadow(0 0 50px #ffffff);
}


.header{
  position: absolute;
  height: 50px;
  width: 110%;
  z-index: -1;
  background: linear-gradient(#000 1px, #0000 0),
              linear-gradient(90deg, #000, #0000, #000),
              linear-gradient(in oklch longer hue -2deg, #a00, #a00);
  background-size:
              100% 2px,
              100% 100%,
              100% 100%;
}

.wallpaper img{
  height: 620px;
  width: 670px;
  margin-bottom: 40px;
  border: 1px solid #fbff02;
  box-shadow: 0 0 20px #fbff02;
}

.footer{
  width: 110%;
  height: 50px;
  position: absolute;
  margin: 685px 0px;
  background: linear-gradient(#000 1px, #0000 0),
              linear-gradient(90deg, #000, #0000, #000),
              linear-gradient(in oklch longer hue -2deg, #a00, #a00);
  background-size:
              100% 2px,
              100% 100%,
              100% 100%;
}


.footer p{
  text-align: center;
  justify-content: center;
  font-size: 25px;
  margin-top: 9px;
}

/*tabs*/
.centerThings {
  text-align: center;
}

.tabs {
  height: 100%;
  width: 100%; /* width of the whole tabs section */
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}

.tabs label {
  order: 1; /* Put labels first */
  width: 200px;
  display: block;
  height: 43px;
 
  margin-right: 0.5rem;
  cursor: pointer;
  background: transparent;
  color: chocolate;
  font-size: 35px;
  transition: background ease 0.3s;
}

.tabs label:hover {
  text-shadow: 
              0 0 4px #3B2F2F,
              0 0 8px #5C4033,
              0 0 12px #7B4C38,
              0 0 16px #8B5E3C,
              0 0 20px #CBAF87;
  transition: text-shadow 0.3s ease;
}

.tabs .tab {
  order: 99; /* Put tabs last*/
  flex-grow: 1;
  width: 100%;
  min-height: 350px; /* minimum height of the tab content */
  display: block; /* HIDES unselected tab content with "none" */
  position: absolute;
  right: -9999px; /* move everything to the right to hide the content (not selected) */
  padding: 1rem;
  background: transparent; /* color of tab content */
  color: #fff;
}

.tabs input[type="radio"] {
  display: none; /* hides circles of radio style */
}

.tabs input[type="radio"]:checked + label {
  background: transparent; /* color of selected tab */
}

.tabs input[type="radio"]:checked + label + .tab {
  display: block; /* SHOWS selected tab */
  position: relative;
  right: 0px;
  transition: .5s ease;
}

@media (max-width: 45em) {
  .tabs .tab,
  .tabs label {
    order: initial;
  }
  .tabs label {
    width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}
/*tabs end*/



.container {
  display: grid;
  grid-template-columns: auto;
  gap: 0px;
  position: absolute;
  margin: 150px 460px;
}

.rays {
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 30px;
  opacity: 0.2;
  z-index: -1;
  filter: blur(2px);
}

.rays::before,
.rays::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(75deg, transparent 50%, #f7e301 50%), 
              linear-gradient(60deg, transparent 50%, #ff0000 50%), 
              linear-gradient(45deg, transparent 50%, #f7e301 50%), 
              linear-gradient(30deg, transparent 50%, #ff0000 50%), 
              linear-gradient(15deg, transparent 50%, #f7e301 50%), 
              linear-gradient(0deg, transparent 50%, #ff0000 50%), 
              linear-gradient(-15deg, transparent 50%, #f7e301 50%), 
              linear-gradient(-30deg, transparent 50%, #ff0000 50%), 
              linear-gradient(-45deg, transparent 50%, #f7e301 50%), 
              linear-gradient(-60deg, transparent 50%, #ff0000 50%), 
              linear-gradient(-75deg, transparent 50%, #f7e301 50%), 
              linear-gradient(-90deg, transparent 50%, #ff0000 50%);
  background-size: 200% 100%;

}

.rays::after {
  left: auto;
  right: 0;
  transform: rotate(180deg);
}

.info{
  display: inline-block;
  width: 1100px;
  height: 400px;
  margin-bottom: 30px;
  background: linear-gradient(#000 1px, #0000 0),
              linear-gradient(90deg, #000, #0000, #000),
              linear-gradient(in oklch longer hue -2deg, #a00, #a00);
  background-size:
              100% 2px,
              100% 100%,
              100% 100%;
  border: 1px solid #fbff02;
  box-shadow: 0 0 12px #ff8d02;
  padding: 0.5rem;
  font-size: 25px;
  opacity: 0.9;
}

.info_2{
  display: inline-block;
  width: 1100px;
  height: 400px;
  margin-bottom: 30px;
  background: linear-gradient(#000 1px, #0000 0),
              linear-gradient(90deg, #000, #0000, #000),
              linear-gradient(in oklch longer hue -2deg, #a00, #a00);
  background-size:
              100% 2px,
              100% 100%,
              100% 100%;
  border: 1px solid #fbff02;
  box-shadow: 0 0 12px #ff8d02;
  padding: 0.5rem;
  font-size: 25px;
  opacity: 0.9;
}

.info_2 p{
  margin-top: 30px;
}

.token_address{
  position: absolute;
  background: #222;
  background-image: repeating-linear-gradient(
                    to bottom,
                    transparent 7px,
                    rgba(0, 0, 0, 0.8) 9px,
                    rgba(0, 0, 0, 0.8) 13px,
                    transparent 13px
                  );
  border: 1px solid #fbff02;
  box-shadow: 0 0 12px #ff8d02;
  height: 50px;
  width: 520px;
  margin: 20px 500px;
  text-align: center;
  justify-content: center;
}

.token_address p{
  margin-top: 8px;
  font-size: 15px;
}

/* Tokenomics cards */
.step-card{ /*how to buy*/
  display: inline-block;
  vertical-align: top;
  width: 320px;
  height: 250px;
  border: 1px solid #fbff02;
  box-shadow: 0 0 15px #ff8d02;
  background: linear-gradient(#000 1px, #0000 0),
              linear-gradient(90deg, #000, #0000, #000),
              linear-gradient(in oklch longer hue -2deg, #a00, #a00);
  background-size:
              100% 2px,
              100% 100%,
              100% 100%;
  margin-top: 20px;
  margin-right: 1.7rem;
  font-size: 25px;
  opacity: 0.9;
}

.step-card h3{
  text-decoration: underline;
}

#tokenomics{
  margin-left: 70px;
}

.tokenomics-card{
  display: inline-block;
  width: 300px;
  height: 230px;
  border: 1px solid #fbff02;
  box-shadow: 0 0 15px #ff8d02;
  background: linear-gradient(#000 1px, #0000 0),
              linear-gradient(90deg, #000, #0000, #000),
              linear-gradient(in oklch longer hue -2deg, #a00, #a00);
  background-size:
              100% 2px,
              100% 100%,
              100% 100%;
  padding: 0.5rem;
  margin-right: 5rem;
  opacity: 0.9;
}

.tokenomics-card h3{
  font-size: 27px;
}

.tokenomics-card p{
  margin-top: 20px;
  font-size: 25px;
}

.tokenomics-card svg{
  height: 70px;
  width: 70px;
}

.buy span{
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  margin-top: 10px;
  font-size: 30px;
  color: #000000;
  box-shadow: 0 0 15px #ff8d02;
  background-color: #fbff02;
}
/*tokenomics ends*/

/* Navigation links */
.nav-link {
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 3px;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: gold;
  text-shadow: 0 0 5px #ffd277;
}

.nav-link:hover::after {
  width: 100%;
}

