/* Base */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #24163a 0%, #ff7f50 100%);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.container {
  max-width: 600px;
  padding: 20px;
  animation: fadeIn 1.4s ease;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* LOGO ANIMATION */
.logo {
  width: 300px;
  max-width: 80%;
  margin: 0 auto 30px auto;
  animation: logoPulse 3.5s ease-in-out infinite;
}

@keyframes logoPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

h1 {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: 700;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.notify-btn {
  background: #ff6fb5;
  padding: 14px 30px;
  border-radius: 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 111, 181, 0.5);
  transition: 0.3s;
}
.notify-btn:hover {
  background: #ff3c8e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,60,142,0.55);
}

.footer {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  font-size: 14px;
  opacity: 0.75;
}

/* FLOATING ANIMATION */
@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(8deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* Floating objects 50% bigger */
.floating-item {
  position: absolute;
  width: 120px;   /* previously ~80px */
  opacity: 0.85;
  animation: float 4s ease-in-out infinite;
  pointer-events: none;
}

.floating-stars {
  position: absolute;
  width: 60px;    /* previously 40px */
  opacity: 0.7;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.floating-sparkle {
  position: absolute;
  width: 38px;    /* previously 25px */
  opacity: 0.6;
  animation: float 5s ease-in-out infinite;
  pointer-events: none;
}

/* Sparkle particles */
.sparkle-particle {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
  opacity: 0.8;
  animation: sparkle-fall 6s linear infinite;
  z-index: 2;
}

@keyframes sparkle-fall {
  0% { transform: translateY(-10vh); opacity: 0; }
  10% { opacity: 0.9; }
  90% { opacity: 0.9; }
  100% { transform: translateY(110vh); opacity: 0; }
}

/* ============ MOBILE ============ */
@media (max-width: 768px) {
  h1 { font-size: 34px; }
  p { font-size: 17px; }
  .logo { width: 240px; }

  .floating-item { width: 90px; }
  .floating-stars { width: 45px; }
  .floating-sparkle { width: 28px; }

  .notify-btn { font-size: 18px; padding: 12px 24px; }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  p { font-size: 15px; }
  body { padding: 20px; }
  .logo { width: 200px; }

  .floating-item,
  .floating-stars,
  .floating-sparkle {
    opacity: 0.55;
  }
}
