* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ff69b4;
  --secondary-color: #ffb6c1;
  --accent-color: #ffc0cb;
  --bg-gradient-start: #fff0f5;
  --bg-gradient-end: #ffe4e1;
  --text-dark: #4a4a4a;
  --text-light: #ffffff;
  --shadow: 0 8px 32px rgba(255, 105, 180, 0.3);
  --shadow-hover: 0 12px 48px rgba(255, 105, 180, 0.4);
}

body {
  font-family: "Fredoka", sans-serif;
  background: linear-gradient(
    135deg,
    var(--bg-gradient-start) 0%,
    var(--bg-gradient-end) 100%
  );
  min-height: 100vh;
  color: var(--text-dark);
  overflow-x: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}

/* Animated Background Bunnies */
.bunny-bg {
  position: fixed;
  font-size: 80px;
  opacity: 0.1;
  animation: float 15s infinite ease-in-out;
  z-index: 0;
  pointer-events: none;
}

.bunny-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.bunny-2 {
  top: 60%;
  right: 5%;
  animation-delay: 3s;
}

.bunny-3 {
  bottom: 15%;
  left: 10%;
  animation-delay: 6s;
}

.floating-hearts {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.heart {
  position: absolute;
  font-size: 24px;
  animation: floatUp 8s infinite ease-in;
  opacity: 0;
}

.heart:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}

.heart:nth-child(2) {
  left: 30%;
  animation-delay: 2s;
}

.heart:nth-child(3) {
  left: 50%;
  animation-delay: 4s;
}

.heart:nth-child(4) {
  left: 70%;
  animation-delay: 1s;
}

.heart:nth-child(5) {
  left: 90%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) rotate(5deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(-20px) rotate(-5deg);
  }
}

@keyframes floatUp {
  0% {
    bottom: -50px;
    opacity: 0;
    transform: translateX(0) rotate(0deg);
  }
  50% {
    opacity: 0.6;
  }
  100% {
    bottom: 110%;
    opacity: 0;
    transform: translateX(100px) rotate(360deg);
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
header {
  position: relative;
  z-index: 100;
  padding: 20px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
}

.logo-img {
  width: 50px;
  height: 50px;
  animation: bounce 2s infinite;
  object-fit: contain;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.logo-text {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Connect Wallet Button */
.connect-wallet-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--text-light);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Fredoka", sans-serif;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.connect-wallet-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.connect-wallet-btn:hover::before {
  width: 300px;
  height: 300px;
}

.connect-wallet-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.connect-wallet-btn:active {
  transform: translateY(-1px);
}

.wallet-icon {
  font-size: 20px;
  position: relative;
  z-index: 1;
}

.connect-wallet-btn span {
  position: relative;
  z-index: 1;
}

/* Hero Section */
.hero {
  position: relative;
  z-index: 10;
  padding: 60px 0 80px;
  text-align: center;
}

.hero-content {
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  animation: wiggle 3s infinite;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(255, 105, 180, 0.4));
}

@keyframes wiggle {
  0%,
  100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

.main-title {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}

.title-baby {
  background: linear-gradient(135deg, #ffb6c1, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.title-giggle {
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  font-size: 80px;
  overflow: visible;
  padding-bottom: 10px;
}

.subtitle {
  font-size: 32px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.tagline {
  font-size: 24px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 40px;
  font-weight: 400;
}

.highlight {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 40px;
  margin: 40px auto;
  max-width: 700px;
  box-shadow: var(--shadow);
  border: 3px solid rgba(255, 105, 180, 0.3);
}

.cta-title {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: 700;
}

.launch-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 22px;
}

.icon {
  font-size: 28px;
}

.text strong {
  color: var(--primary-color);
  font-weight: 700;
}

.launch-date {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--text-light);
  padding: 18px 32px;
  border-radius: 20px;
  font-size: 24px;
  font-weight: 700;
  margin-top: 10px;
  box-shadow: var(--shadow);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 50px auto;
  max-width: 900px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 25px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 2px solid transparent;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary-color);
}

.feature-icon {
  font-size: 40px;
}

.feature-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-light);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  font-family: "Fredoka", sans-serif;
}

.social-btn.telegram {
  background: linear-gradient(135deg, #0088cc, #229ed9);
}

.social-btn.twitter {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-hover);
}

.social-icon {
  width: 24px;
  height: 24px;
}

/* Footer */
footer {
  position: relative;
  z-index: 10;
  background: linear-gradient(
    135deg,
    rgba(255, 182, 193, 0.3),
    rgba(255, 192, 203, 0.3)
  );
  backdrop-filter: blur(10px);
  padding: 40px 0;
  margin-top: 80px;
  margin-bottom: 0;
  border-top: 2px solid rgba(255, 105, 180, 0.2);
}

.footer-content {
  text-align: center;
}

.footer-logo {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(255, 105, 180, 0.3));
}

.footer-text {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 500;
}

.footer-copyright {
  font-size: 14px;
  color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-title {
    font-size: 48px;
  }

  .title-giggle {
    font-size: 56px;
  }

  .subtitle {
    font-size: 24px;
  }

  .tagline {
    font-size: 18px;
  }

  .hero-logo {
    width: 150px;
    height: 150px;
  }

  .cta-box {
    padding: 30px 20px;
  }

  .cta-title {
    font-size: 28px;
  }

  .info-item {
    font-size: 18px;
  }

  .launch-date {
    font-size: 18px;
    padding: 14px 24px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .social-btn {
    padding: 14px 28px;
    font-size: 16px;
  }

  .connect-wallet-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .logo {
    font-size: 22px;
  }

  .logo-img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 36px;
  }

  .title-giggle {
    font-size: 42px;
  }

  .social-links {
    flex-direction: column;
    align-items: stretch;
  }

  .social-btn {
    justify-content: center;
  }
}
