* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Outfit", sans-serif;
  background: linear-gradient(
    135deg,
    #1a1f35 0%,
    #2d3e52 25%,
    #1f2d42 50%,
    #2d3e52 75%,
    #1a1f35 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.bg-animation {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
}
.blob {
  position: absolute;
  opacity: 0.04;
  border-radius: 50%;
  animation: float 14s ease-in-out infinite;
  filter: blur(50px);
}
.blob1 {
  width: 450px;
  height: 450px;
  background: #ebffd8;
  top: -180px;
  left: -200px;
  animation-delay: 0s;
}
.blob2 {
  width: 400px;
  height: 400px;
  background: #a4ccd9;
  top: 40%;
  right: -150px;
  animation-delay: 5s;
}
.blob3 {
  width: 420px;
  height: 420px;
  background: #c4e1e6;
  bottom: -180px;
  left: 5%;
  animation-delay: 10s;
}
.blob4 {
  width: 350px;
  height: 350px;
  background: #8dbcc7;
  top: 25%;
  left: 50%;
  animation-delay: 3s;
}
@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(45px, -45px) rotate(180deg);
  }
}
.container {
  text-align: center;
  padding: 20px;
  z-index: 1;
  max-width: 1000px;
  animation: fadeInDown 1.2s ease-out;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.brand {
  margin-bottom: 35px;
  animation: fadeInDown 1.4s ease-out;
}
.logo-text {
  font-family: "Sora", sans-serif;
  font-size: 72px;
  font-weight: 800;
  background: linear-gradient(120deg, #ebffd8 0%, #c4e1e6 40%, #a4ccd9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
  letter-spacing: -2px;
  line-height: 1;
}
.content {
  margin-bottom: 50px;
  animation: fadeInUp 1.5s ease-out;
}
.sub-text {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  color: #c4e1e6;
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.6;
}
.highlight-text {
  color: #ebffd8;
  font-weight: 700;
}
.countdown-container {
  background: rgba(235, 255, 216, 0.08);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1.5px solid rgba(235, 255, 216, 0.25);
  border-radius: 32px;
  padding: 60px 30px;
  margin-bottom: 55px;
  animation: fadeInUp 1.6s ease-out;
  box-shadow: 0 8px 32px rgba(164, 204, 217, 0.15),
    inset 0 1px 1px rgba(235, 255, 216, 0.3),
    inset 0 -1px 1px rgba(141, 188, 199, 0.1);
  background-image: linear-gradient(
    135deg,
    rgba(235, 255, 216, 0.08) 0%,
    rgba(196, 225, 230, 0.05) 100%
  );
}
.countdown-title {
  font-family: "Space Mono", monospace;
  font-size: 14px;
  color: #a4ccd9;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 35px;
  font-weight: 700;
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .countdown {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .countdown-container {
    padding: 45px 20px;
  }
}
@media (max-width: 480px) {
  .countdown {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .countdown-container {
    padding: 35px 15px;
  }
}
.countdown-item {
  background: rgba(235, 255, 216, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.2px solid rgba(235, 255, 216, 0.2);
  border-radius: 24px;
  padding: 45px 20px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(164, 204, 217, 0.1),
    inset 0 1px 1px rgba(235, 255, 216, 0.2),
    inset 0 -1px 1px rgba(141, 188, 199, 0.05);
  background-image: linear-gradient(
    135deg,
    rgba(235, 255, 216, 0.08) 0%,
    rgba(196, 225, 230, 0.03) 100%
  );
}
.countdown-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(235, 255, 216, 0.15) 0%,
    rgba(196, 225, 230, 0.08) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 24px;
}
.countdown-item:hover {
  border-color: rgba(235, 255, 216, 0.45);
  background: rgba(235, 255, 216, 0.12);
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 50px rgba(164, 204, 217, 0.25),
    inset 0 1px 1px rgba(235, 255, 216, 0.4),
    inset 0 -1px 1px rgba(141, 188, 199, 0.15);
  background-image: linear-gradient(
    135deg,
    rgba(235, 255, 216, 0.15) 0%,
    rgba(196, 225, 230, 0.08) 100%
  );
}
.countdown-value {
  font-family: "Sora", sans-serif;
  font-size: 96px;
  font-weight: 900;
  background: linear-gradient(120deg, #ebffd8, #c4e1e6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 12px;
  letter-spacing: -2px;
  position: relative;
  z-index: 1;
  line-height: 1;
}
.countdown-label {
  font-family: "Space Mono", monospace;
  font-size: 7px;
  color: #a4ccd9;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.cta-section {
  animation: fadeInUp 1.7s ease-out;
}
.cta-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn {
  padding: 18px 45px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Manrope", sans-serif;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: left 0.4s ease;
  z-index: -1;
}
.btn:hover::before {
  left: 100%;
}
.btn-primary {
  background: linear-gradient(135deg, #ebffd8, #c4e1e6);
  color: #1a1f35;
  box-shadow: 0 8px 32px rgba(196, 225, 230, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(235, 255, 216, 0.3);
}
.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 55px rgba(196, 225, 230, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.5);
}
.btn-secondary {
  background: rgba(235, 255, 216, 0.1);
  color: #ebffd8;
  border: 2px solid rgba(235, 255, 216, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.btn-secondary:hover {
  background: rgba(235, 255, 216, 0.15);
  border-color: #ebffd8;
  transform: translateY(-5px);
  box-shadow: 0 25px 55px rgba(164, 204, 217, 0.3),
    inset 0 1px 1px rgba(235, 255, 216, 0.2);
}
.social-section {
  animation: fadeInUp 1.8s ease-out;
  position: relative;
  z-index: 2;
}
.social-label {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  color: #a4ccd9;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  font-weight: 700;
  display: block;
}
.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.social-link {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(235, 255, 216, 0.12);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1.5px solid rgba(235, 255, 216, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ebffd8;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 24px;
  box-shadow: 0 8px 25px rgba(196, 225, 230, 0.15),
    inset 0 1px 1px rgba(235, 255, 216, 0.2);
  position: relative;
  z-index: 2;
}
.social-link:hover {
  background: rgba(235, 255, 216, 0.2);
  border-color: rgba(235, 255, 216, 0.6);
  color: #ebffd8;
  transform: translateY(-10px) rotate(5deg) scale(1.1);
  box-shadow: 0 20px 50px rgba(196, 225, 230, 0.35),
    inset 0 1px 1px rgba(235, 255, 216, 0.3);
}
.footer {
  color: #a4ccd9;
  font-size: 12px;
  margin-top: 40px;
  font-weight: 500;
  letter-spacing: 0.5px;
  animation: fadeInUp 1.9s ease-out;
}
@media (max-width: 600px) {
  .logo-text {
    font-size: 48px;
  }
  .sub-text {
    font-size: 16px;
  }
  .countdown-value {
    font-size: 72px;
  }
  .countdown-item {
    min-height: 160px;
    padding: 35px 15px;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}
.pulse {
  animation: pulse 2.5s ease-in-out infinite;
}
/* Responsive */
@media (max-width: 600px) {
  .logo-text {
    font-size: 48px;
  }
  .sub-text {
    font-size: 16px;
  }
  .countdown-value {
    font-size: 72px;
  }
  .btn {
    width: 100%;
  }
  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }
}
