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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #09568a;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Decorative wave shapes */
.wave-1 {
  position: absolute;
  top: -50%;
  left: -25%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(11, 90, 140, 0.3);
  filter: blur(80px);
  animation: wave 8s ease-in-out infinite;
}

.wave-2 {
  position: absolute;
  bottom: -50%;
  right: -25%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(11, 90, 140, 0.2);
  filter: blur(80px);
  animation: wave 8s ease-in-out infinite;
  animation-delay: 2s;
}

.wave-3 {
  position: absolute;
  top: 25%;
  right: 25%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(60px);
  animation: float 6s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(10px) translateY(-5px); }
  50% { transform: translateX(0) translateY(5px); }
  75% { transform: translateX(-10px) translateY(-5px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes shimmer {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes dotBounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.2);
  }
}

/* Main content */
main {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 150px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .logo { width: 170px; }
}

@media (min-width: 1024px) {
  .logo { width: 250px; }
}

.divider {
  width: 80px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  margin: 0 auto 30px;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
}

@media (min-width: 1024px) {
  h1 { font-size: 3.75rem; }
}

.subtitle {
  color: rgba(255, 255, 255, 1);
  font-size: 1.125rem;
  max-width: 500px;
  margin: 0 auto 30px;
  font-weight: 400;
  line-height: 1.7;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .countdown { gap: 24px; }
}

.countdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (min-width: 768px) {
  .countdown-item { gap: 24px; }
}

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

.countdown-value {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .countdown-value {
    width: 80px;
    height: 80px;
    font-size: 1.875rem;
  }
}

.countdown-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  font-weight: 300;
}

@media (min-width: 768px) {
  .countdown-label { font-size: 0.875rem; }
}

.countdown-separator {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  margin-top: -24px;
}

@media (min-width: 768px) {
  .countdown-separator { font-size: 1.875rem; }
}

/* Social links */
.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 50px;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ffffff;
  color: #09568a;
  transform: scale(1.1);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Decorative dots */
.dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: shimmer 3s ease-in-out infinite, dotBounce 2s ease-in-out infinite;
}

.dot-1 { 
  background: #ffffff; 
}
.dot-2 { 
  background: rgba(255, 255, 255, 0.6); 
  animation-delay: 0.3s, 0.3s;
}
.dot-3 { 
  background: rgba(255, 255, 255, 0.3); 
  animation-delay: 0.6s, 0.6s;
}

/* Footer */
footer {
  position: absolute;
  bottom: 0;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 300;
}
