@font-face {
  font-family: "Starixo";
  src:
    url("static/fonts/Starixo.woff2") format("woff2"),
    url("static/fonts/Starixo.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.anb-countdown-section {
  width: 75vw;
  max-height: 90vh;
  background-color: #050505;
  background-image: radial-gradient(
    circle at center 40%,
    #151515 0%,
    #030303 100%
  );
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  box-sizing: border-box;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin: 0 auto;
  position: relative;
  top: 5vh;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  top: 50%;
  z-index: 999999;
  display: none;
}



.anb-countdown-section .container {
    text-align: center;
}


.anb-logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.anb-logo-area img {
  height: 32px;
}
.anb-brand-text {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 2px;
}

.anb-title-main {
  font-family: "Starixo", sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: inline;
}
.anb-title-sub {
  font-family: "Michroma", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.anb-text-neon {
  color: #81d800;
  font-family: "Starixo", "Michroma", sans-serif;
}

.anb-info-paragraph {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #d1d1d1;
  margin-bottom: 1.5rem;
}
.anb-date-highlight {
  color: #81d800;
  font-weight: 600;
  font-size: 0.95rem;
}
.anb-info-paragraph p {
  margin-bottom: 0px;
}
.anb-countdown-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 2rem;
}
.anb-countdown-box {
  width: 130px;
  height: 130px;
  background-color: #1a1a1a;
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}
.anb-countdown-number {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: #ffffff;
  font-variant-numeric: slashed-zero;
  letter-spacing: 2px;
}

.anb-btn-enter {
  background-color: #000000;
  border: 1px solid #81d800;
  color: #ffffff;
  border-radius: 50px;
  padding: 12px 40px;
  font-size: 1.1rem;
  font-family: "Orbitron", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}
.anb-btn-enter:hover {
  background-color: rgba(129, 216, 0, 0.1);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(129, 216, 0, 0.3);
}
.anb-btn-arrow {
  color: #81d800;
  font-size: 0.8rem;
  transform: scaleX(1.2);
}

@media (max-width: 768px) {
   .anb-countdown-section {
    width: 90vw;
    height: 100vh;
    max-height: 100vh;
    margin: 0 auto;
    position: absolute;
    top: 5vh;
    padding: 2rem 15px;
	    transform: translateX(-50%) translateY(-0%);
  }

  .anb-info-paragraph p {
    font-size: 12px;
  }

  .anb-title-main {
    font-size: 20px;
  }
  .anb-title-sub {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .anb-countdown-wrapper {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1.5rem;
  }

  .anb-countdown-box {
    width: 64px;
    height: 72px;
  }
  .anb-countdown-number {
    font-size: 1.5rem;
  }

  .anb-info-paragraph {
    font-size: 0.85rem;
    padding: 0;
  }
  .anb-date-highlight {
    font-size: 0.85rem;
  }

  .anb-btn-enter {
    padding: 10px 30px;
    font-size: 1rem;
  }
}
