body {
  margin: 0;
  padding: 0;
  font-family: 'Fredoka', sans-serif;
  background: linear-gradient(to bottom, #E0F7FA 0%, #FFE4E1 100%);
  color: #333;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Эмодзи фон */
.emoji {
  position: absolute;
  top: -50px;
  font-size: 28px;
  animation: fall linear infinite;
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}
@keyframes fall {
  0% { transform: translateY(-50px) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

header, footer {
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}
.logo {
  font-size: 26px;
  font-weight: 600;
  color: #FF69B4;
  text-shadow: 1px 1px 2px #A0A0A0;
}
nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  transition: color 0.3s;
}
nav a:hover {
  color: #FFD700;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}
.hero img {
  max-width: 400px;
  width: 100%;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero h1 {
  font-size: 48px;
  margin: 20px 0;
  color: #FF69B4;
  text-shadow: 2px 2px 4px #A0A0A0;
  font-family: 'Baloo 2', cursive;
}
.hero p {
  font-size: 20px;
  max-width: 600px;
  margin-bottom: 30px;
  color: #666;
}

/* CTA button */
.cta-button {
  background: linear-gradient(135deg, #FF69B4, #FFD700);
  color: white;
  padding: 16px 40px;
  font-size: 26px;
  font-family: 'Baloo 2', cursive;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 0 #d14f87, 0 10px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}
.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 0 #c13f77, 0 14px 25px rgba(0,0,0,0.3);
}
.cta-button:active {
  transform: translateY(2px) scale(0.97);
  box-shadow: 0 4px 0 #b03065, 0 8px 15px rgba(0,0,0,0.2);
}
.cta-button span {
  position: relative;
  z-index: 1;
}

/* Timer digital style */
#timer {
  font-family: 'Courier New', monospace;
  font-size: 28px;
  color: #FFD700;
  text-shadow: 0 0 8px rgba(255,215,0,0.7), 0 0 15px rgba(255,105,180,0.6);
  margin: 10px 0;
}

/* Supply glowing style */
#supply {
  font-size: 32px;
  font-weight: bold;
  color: #FF69B4;
  text-shadow: 0 0 6px rgba(255,105,180,0.7), 0 0 14px rgba(255,215,0,0.6);
}

/* Aura-bar */
#auraContainer {
  width: 320px;
  height: 26px;
  background: #f5f5f5;
  border-radius: 14px;
  overflow: hidden;
  margin: 15px auto;
  box-shadow: inset 2px 2px 5px rgba(0,0,0,0.15), 2px 4px 10px rgba(0,0,0,0.1);
  position: relative;
}
#auraBar {
  height: 100%;
  width: 0;
  border-radius: 14px;
  background: linear-gradient(270deg, #ff69b4, #ffd700, #87ceeb, #ff69b4);
  background-size: 600% 600%;
  animation: auraFlow 6s ease infinite;
}
@keyframes auraFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
#auraPercent {
  font-size: 18px;
  margin-top: 5px;
  color: #666;
}

footer {
  text-align: center;
  font-size: 14px;
  color: #A0A0A0;
}
footer a {
  color: #FF69B4;
  margin: 0 8px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 18px; }
  .cta-button { font-size: 22px; padding: 14px 30px; }
  #supply { font-size: 26px; }
  #timer { font-size: 22px; }
}
