* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a, #262626);
  background-size: 400% 400%;
  animation: gradientMove 20s ease infinite;
  color: #e5e5e5;
  overflow: hidden;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.overlay {
  background: rgba(30, 30, 30, 0.75);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 4rem 3rem;
  box-shadow: 0 0 40px rgba(0,0,0,0.7);
  text-align: center;
  max-width: 600px;
  width: 90%;
  animation: fadeIn 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.logo {
  width: 140px;
  margin-bottom: 25px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

h1 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: 1px;
  animation: slideDown 1s ease forwards;
  opacity: 0;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.message {
  font-size: 1.15rem;
  margin-bottom: 25px;
  color: #ccc;
}

.countdown {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 35px;
  color: #fff;
  animation: fadeIn 2s ease forwards;
}

.links {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.links a {
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
  border-radius: 50%;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.links a img {
  width: 28px;
  height: 28px;
  filter: invert(80%) grayscale(100%);
  transition: transform 0.3s, filter 0.3s;
}

.links a:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(255,255,255,0.15);
  transform: scale(1.15);
}

.links a:hover img {
  filter: invert(100%) grayscale(0%);
  transform: scale(1.2);
}

.footer {
  margin-top: 40px;
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
  opacity: 0.8;
}
