*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

:root{
  --bg-color: #081b29;
  --second-bg-color: #112e42;
  --text-color: #ededed;
  --main-color: #94c2d8;
  --primary-text-color: #083b52;
  --border-color: rgba(56, 189, 248, 0.3);
  --shadow-color: rgba(56, 189, 248, 0.2);
  --circuit-color: rgba(56, 189, 248, 0.05);
}

body{
  background: var(--bg-color);
  padding-top: 2rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

html{
  font-size: 0.8rem;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

header{
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--bg-color);
  
  position: fixed;
  padding: 1rem 3%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: .3s;
  justify-content: space-between;
  
}

.web3-header{
  padding:0 1%;
  width: 45rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: .3s;
  gap: 2rem;
}

header img{
  width: 15rem;
  height: 15rem;
}

.web3-bio{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
  margin-top: 2rem;
}

.web3-bio p{
  font-size: 1.1rem;
  font-weight: 100;
  color: var(--main-color);
}

.web3-navbar{
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  max-width: 30rem;
  position: relative;
  background: transparent;
}

.web3-navbar a{
  text-decoration: none;
  color: var(--text-color);
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3)
}

 .web3-navbar a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--main-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  }

    .web3-navbar a:active {
      transform: scale(0.97);
    }

  section {
  padding: 25rem 3% 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
} 

  .airdrops-section {
    padding-top: 4rem;
    padding-bottom: 0;
    color: var(--main-color);
    text-align: start;
    width: 100%;
  }

 .airdrop-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  }

  .airdrops-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
  }

  .airdrop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 0 auto;
    scrollbar-width: none;     
    -ms-overflow-style: none; 
    width: 100%;
  }

  .airdrop-grid::-webkit-scrollbar {
    display: none;
  }


  .airdrop-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.5rem;
  }

 .airdrop-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  }

  .airdrop-card h3 {
    margin-bottom: 8px;
    font-size: 1.7rem;
    color: var(--main-color);
  }

  .tag {
    display: inline-block;
    margin-top: 18%;
    padding: 4px 12px;
    font-size: 1.5rem;
    border-radius: 20px;
    font-weight: bolder;
  }

  .success {
    background-color: rgba(40, 200, 90, 0.15);
    border: 1px solid rgba(40, 200, 90, 0.4);
    color: #28c85a;
  }

  .pending {
    background-color: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.4);
    color: #ffcc00;
  }

  .scroll-indicators {
  display: none; 
  gap: 8px;
}

.scroll-indicators span {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.scroll-indicators span.active {
  background-color: var(--main-color); 
}

.web3-content {
  position: relative;
  background: var(--second-bg-color);
  padding: 32px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  font-size: 17px;
  line-height: 1.8;
  overflow: hidden;
  backdrop-filter: blur(8px);
  z-index: 1;
  margin-bottom: 5rem;
  width: 100%;
}

.web3-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, var(--circuit-color) 1px, transparent 0),
    radial-gradient(circle at 15px 15px, var(--circuit-color) 1px, transparent 0);
  background-size: 32px 32px;
  animation: circuitMove 10s linear infinite;
  z-index: 0;
}

.web3-content p {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
}

.web3-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px var(--shadow-color), 0 0 60px var(--shadow-color);
  transition: all 0.3s ease;
}

@keyframes circuitMove {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 64px 64px, 64px 64px; }
}

.web3-content h2{
  color: var(--main-color);
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.web3-projects{
  background: var(--second-bg-color);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
  padding: 40px;
  max-width: 1200px;
  color: var(--main-color);
  font-family: 'Orbitron', 'Inter', sans-serif;
}

.web3-projects h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 32px;
  color: var(--main-color);
}

.project-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.project-card {
  
  background: rgba(56, 189, 248, 0.05);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  color: #38bdf8;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.1);
}

.project-card:hover {
  transform: translateY(-5px) scale(1.03);
  background: rgba(56, 189, 248, 0.1);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}


/* Screen Sizes*/
@media (min-width: 1800px) {
  html {
    font-size: 100%;
  }

  section {
  padding: 25rem 15% 2rem;
  font-size: 150%;
 } 

 header{
  padding: 1rem 13%;
 }

 .web3-content h2{
  font-size: 3rem;
 }

 .web3-content p{
  font-size: 2rem;
 }

 .airdrop-grid {
  grid-template-columns: repeat(4, 1fr);
 }
}

@media (max-width: 1799px) and (min-width: 1500px){
  html {
    font-size: 100%;
  }

  section {
  padding: 25rem 9% 2rem;
  font-size: 120%;
 } 

 header{
  padding: 1rem 7%;
 }

 .web3-content h2{
  font-size: 2.5rem;
 }

 .web3-content p{
  font-size: 1.7rem;
 }

 .airdrop-grid {
  grid-template-columns: repeat(3, 1fr);
 }
}


@media (max-width: 1499px) and (min-width: 1300px){
  html {
    font-size: 100%;
  }

  section {
  padding: 25rem 6% 2rem;
  font-size: 120%;
 } 

 header{
  padding: 1rem 3%;
 }

 .web3-content h2{
  font-size: 2.5rem;
 }

 .web3-content p{
  font-size: 1.7rem;
 }

 .airdrop-grid {
  grid-template-columns: repeat(3, 1fr);
 }
}

@media (max-width: 1299px) and (min-width: 1200px){
  html {
    font-size: 90%;
  }

  section {
  padding: 25rem 6% 2rem;
  font-size: 120%;
 } 

 header{
  padding: 1rem 3%;
 }

 .web3-content h2{
  font-size: 2.2rem;
 }

 .web3-content p{
  font-size: 1.5rem;
 }

 .airdrop-grid {
  grid-template-columns: repeat(3, 1fr);
 }
}

@media (max-width: 1199px) and (min-width: 1039px){
  html {
    font-size: 80%;
  }

  section {
  padding: 25rem 3% 2rem;
  font-size: 120%;
 } 

 header{
  padding: 1rem 2%;
 }

 .web3-content h2{
  font-size: 2.4rem;
 }

 .web3-content p{
  font-size: 1.6rem;
 }

 .airdrop-grid {
  grid-template-columns: repeat(3, 1fr);
 }

}

@media (max-width: 1038px) and (min-width: 900px){
  html {
    font-size: 70%;
  }

  header img{
  width: 16rem;
  height: 16rem;
  }

  .web3-bio h1{
  font-size: 2.5rem;
  }

  section {
  padding: 25rem 3% 2rem;
  font-size: 120%;
 } 

 header{
  padding: 1rem 0%;
 }

 .web3-content h2{
  font-size: 2.4rem;
 }

 .web3-content p{
  font-size: 1.6rem;
 }

 .airdrop-grid {
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
 }
}

@media (max-width: 899px) and (min-width: 541px){
  html {
    font-size: 55%;
  }

  header img{
  width: 20rem;
  height: 20rem;
} 

.web3-bio h1{
  font-size: 3rem;
}

  section {
  padding: 25rem 1.7% 2rem;
  font-size: 120%;
 } 

 header{
  padding: 1rem 0%;
 }

 .web3-navbar a{
  font-size: 10px;
 }

 .web3-content h2{
  font-size: 3.9rem;
 }

 .web3-content p{
  font-size: 2.2rem;
 }

 .airdrops-section h2{
  font-size: 3rem;
 }

 .airdrop-grid {
  grid-template-columns: repeat(2, 1fr);
 }

 .airdrop-card h2, p{
  font-size: 2rem;
 }

 .web3-bio p{
  font-weight: 900;
 }
}

@media (max-width: 540px) and (min-width: 481px){
  html {
    font-size: 55%;
  }

  header img{
  width: 20rem;
  height: 20rem;
} 

.web3-bio h1{
  font-size: 3.2rem;
}

  section {
  padding: 25rem 1.7% 2rem;
  font-size: 120%;
 } 

 header{
  padding: 1rem 0%;
  margin: none;
 }

 .web3-navbar a{
  font-size: 10px;
 }

 .web3-content h2{
  font-size: 2.9rem;
 }

 .web3-content p{
  font-size: 1.9rem;
 }

 .airdrops-section h2{
  padding-left: 1%;
  font-size: 2.5rem;
 }

 .airdrop-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    animation: scrollLeft 1.5s ease-out forwards;
    padding-bottom: 1rem;
    min-width: 100%;
    gap: 16px;
 }

 .airdrop-card{
    flex: 0 0 auto;
    scroll-snap-align: start;
 }

 .airdrop-card h3, p{
  font-size: 2.5rem;
 }

 .airdrops-section h2{
  font-size: 3rem;
 }

   /* Show scroll indicators */
  .scroll-indicators {
    display: flex;
    justify-content: center;
    width: 100%;
    
  }

  @keyframes scrollLeft {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(0);
    }
  }

 .web3-bio p{
  font-weight: 800;
 }
}

@media (max-width: 480px){
    html {
    font-size: 50%;
    scroll-behavior: smooth;
  }

  header img{
  width: 19rem;
  height: 19rem;
} 

.web3-navbar{
  margin-left: 2%;
}

.web3-bio h1{
  font-size: 3rem;
}

  section {
  padding: 30rem 1.7% 2rem;
  font-size: 120%;
 } 

 header{
  padding: 1rem 0%;
 }

 .web3-navbar a{
  font-size: 10px;
 }

 .web3-content h2{
  font-size: 2.9rem;
 }

 .web3-content p{
  font-size: 1.9rem;
 }

 .airdrops-section{
  padding-left: 1%;
 }

 .airdrop-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    animation: scrollLeft 1.5s ease-out forwards;
    padding-bottom: 1rem;
    min-width: 100%;
    gap: 16px;
 }

 .airdrop-card{
    flex: 0 0 auto;
    scroll-snap-align: start;
 }

 .airdrop-card h3, p{
  font-size: 2.5rem;
 }

 .airdrops-section h2{
  font-size: 3rem;
 }

   /* Show scroll indicators */
  .scroll-indicators {
    display: flex;
    justify-content: center;
    width: 100%;
    
  }

  @keyframes scrollLeft {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(0);
    }
  }

 .web3-bio p{
  font-weight: 800;
 }
}

@media (max-width: 320px){
    html {
    font-size: 40%;
    scroll-behavior: smooth;
  }

  header img{
  width: 19rem;
  height: 19rem;
  }
}