* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #0b1f26, #102f38);
  position: relative;
  overflow: hidden;
}


body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/bg.svg") center / cover no-repeat;
  opacity: 0.35;
  z-index: 0;
  
}




.container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 50px 40px;
  max-width: 900px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  animation: fadeIn 1.5s ease;
}


.logo {
  width: 260px;
  max-width: 80%;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 18px rgba(0, 196, 214, 0.55));
  animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
  0% { filter: drop-shadow(0 0 10px rgba(0,196,214,0.4)); }
  50% { filter: drop-shadow(0 0 22px rgba(0,196,214,0.8)); }
  100% { filter: drop-shadow(0 0 10px rgba(0,196,214,0.4)); }
}


h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.tagline {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.7;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

.countdown div {
  background: rgba(255, 255, 255, 0.12);
  padding: 18px 22px;
  border-radius: 14px;
  min-width: 95px;
  backdrop-filter: blur(6px);
}

.countdown span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 15px 34px;
  border-radius: 32px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: left 0.35s ease;
}

.btn:hover::after {
  left: 100%;
}

.btn:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 35px rgba(0,0,0,0.4);
}


.whatsapp {
  background: #25D366;
}

.email {
  background: #ff9800;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

footer {
  margin-top: 40px;
  font-size: 0.9rem;
  opacity: 0.8;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.hidden {
  display: none;
}

.lang-toggle {
  margin-top: 20px;
  margin-bottom: 20px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-toggle:hover {
  background: rgba(255,255,255,0.15);
}
