/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Baby Binance Colors - Cute & Playful */
  --primary-color: #f0b90b;
  --primary-dark: #e6a800;
  --secondary-color: #ff69b4;
  --accent-color: #87ceeb;
  --bg-dark: #0b0e11;
  --bg-card: #1a1d23;
  --bg-light: #2b3139;
  --text-primary: #ffffff;
  --text-secondary: #b7bdc6;
  --gradient-1: linear-gradient(135deg, #f0b90b 0%, #ff69b4 100%);
  --gradient-2: linear-gradient(135deg, #87ceeb 0%, #f0b90b 100%);
  --gradient-3: linear-gradient(135deg, #ff69b4 0%, #87ceeb 100%);
  --shadow: 0 10px 40px rgba(240, 185, 11, 0.2);
  --shadow-lg: 0 20px 60px rgba(240, 185, 11, 0.3);
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Animated Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(135deg, #0b0e11 0%, #1a1d23 100%);
}

.bubble {
  position: absolute;
  bottom: -100px;
  background: radial-gradient(
    circle,
    rgba(240, 185, 11, 0.1) 0%,
    rgba(255, 105, 180, 0.05) 100%
  );
  border-radius: 50%;
  animation: rise 15s infinite ease-in;
}

.bubble:nth-child(1) {
  width: 80px;
  height: 80px;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.bubble:nth-child(2) {
  width: 120px;
  height: 120px;
  left: 30%;
  animation-delay: 2s;
  animation-duration: 14s;
}

.bubble:nth-child(3) {
  width: 60px;
  height: 60px;
  left: 50%;
  animation-delay: 4s;
  animation-duration: 10s;
}

.bubble:nth-child(4) {
  width: 100px;
  height: 100px;
  left: 70%;
  animation-delay: 1s;
  animation-duration: 13s;
}

.bubble:nth-child(5) {
  width: 90px;
  height: 90px;
  left: 85%;
  animation-delay: 3s;
  animation-duration: 11s;
}

.bubble:nth-child(6) {
  width: 70px;
  height: 70px;
  left: 15%;
  animation-delay: 5s;
  animation-duration: 15s;
}

@keyframes rise {
  0% {
    bottom: -100px;
    transform: translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    bottom: 110vh;
    transform: translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

/* Navigation */
.navbar {
  background: rgba(11, 14, 17, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(240, 185, 11, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  box-shadow: 0 0 20px rgba(240, 185, 11, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(240, 185, 11, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(240, 185, 11, 0.8);
  }
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 100px 0;
  position: relative;
}

.hero-content {
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-1);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
  animation: slideDown 1s ease;
}

.badge-icon {
  width: 24px;
  height: 24px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 72px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeIn 1s ease 0.2s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 24px;
  color: var(--text-secondary);
  margin-bottom: 15px;
  animation: fadeIn 1s ease 0.4s both;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.inline-icon {
  width: 28px;
  height: 28px;
  color: var(--primary-color);
}

.hero-tagline {
  font-size: 32px;
  font-weight: 700;
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px;
  animation: fadeIn 1s ease 0.6s both;
}

.launch-info {
  margin: 40px 0;
  animation: fadeIn 1s ease 0.8s both;
}

.launch-card {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  padding: 30px 40px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.launch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(240, 185, 11, 0.4);
}

.launch-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-color);
}

.launch-icon svg {
  width: 100%;
  height: 100%;
}

.launch-details h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.launch-date {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
  animation: fadeIn 1s ease 1s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-1);
  color: var(--text-primary);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-wallet {
  background: linear-gradient(135deg, #87ceeb 0%, #4a90e2 100%);
  color: var(--text-primary);
  box-shadow: 0 10px 40px rgba(135, 206, 235, 0.3);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.btn-wallet:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(135, 206, 235, 0.5);
  border-color: #87ceeb;
}

.btn-wallet:active {
  transform: translateY(-1px);
}

.hero-image {
  margin-top: 60px;
  animation: fadeIn 1s ease 1.2s both;
}

.hero-image img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 5px solid var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Features Section */
.features {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 60px;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.title-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  fill: var(--primary-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(240, 185, 11, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--primary-color);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(240, 185, 11, 0.05) 100%
  );
}

.tokenomics-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.tokenomics-chart {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pie-chart {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--primary-color) 0deg,
    var(--secondary-color) 120deg,
    var(--accent-color) 240deg,
    var(--primary-color) 360deg
  );
  box-shadow: var(--shadow-lg);
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.pie-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: var(--bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--primary-color);
}

.pie-label {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tokenomics-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.token-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  padding: 20px 30px;
  border-radius: 15px;
  border: 1px solid rgba(240, 185, 11, 0.2);
  transition: all 0.3s ease;
}

.token-item:hover {
  border-color: var(--primary-color);
  transform: translateX(10px);
}

.token-label {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
}

.token-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--text-secondary);
}

.liquidity-dot {
  background: var(--primary-color);
}

.token-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.token-highlight {
  margin-top: 20px;
  padding: 30px;
  background: var(--gradient-1);
  border-radius: 15px;
  text-align: center;
}

.token-highlight p {
  font-size: 18px;
  font-weight: 600;
  margin: 8px 0;
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.highlight-icon {
  width: 20px;
  height: 20px;
}

/* Community Section */
.community {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    rgba(240, 185, 11, 0.05) 0%,
    transparent 100%
  );
}

.section-subtitle {
  text-align: center;
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 50px;
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.social-card {
  background: var(--bg-card);
  border: 2px solid rgba(240, 185, 11, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.social-card.telegram {
  border-color: #0088cc;
}

.social-card.telegram:hover {
  border-color: #0088cc;
  box-shadow: 0 20px 60px rgba(0, 136, 204, 0.3);
}

.social-card.twitter {
  border-color: #1da1f2;
}

.social-card.twitter:hover {
  border-color: #1da1f2;
  box-shadow: 0 20px 60px rgba(29, 161, 242, 0.3);
}

.social-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.social-icon svg {
  width: 100%;
  height: 100%;
}

.social-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.social-card p {
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.social-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 18px;
}

.launch-countdown {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 3px solid var(--primary-color);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.launch-countdown h3 {
  font-size: 36px;
  margin-bottom: 30px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.countdown-rocket {
  width: 40px;
  height: 40px;
}

.countdown-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.countdown-date {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
}

.countdown-time {
  font-size: 24px;
  font-weight: 600;
  color: var(--secondary-color);
}

.countdown-platform {
  font-size: 20px;
  color: var(--text-secondary);
}

/* Footer */
.footer {
  padding: 60px 0 30px;
  background: var(--bg-card);
  border-top: 1px solid rgba(240, 185, 11, 0.2);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
}

.footer-logo span {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-copyright {
  text-align: center;
  padding-top: 20px;
}

.footer-copyright p {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-links {
    display: none;
  }
  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-tagline {
    font-size: 24px;
  }

  .launch-card {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .title-icon {
    width: 36px;
    height: 36px;
  }

  .section-title {
    font-size: 36px;
  }

  .tokenomics-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-tagline {
    font-size: 20px;
  }

  .hero-badge {
    font-size: 14px;
    padding: 10px 20px;
  }

  .launch-card {
    padding: 25px;
  }

  .launch-details h3 {
    font-size: 20px;
  }

  .launch-date {
    font-size: 18px;
  }

  .section-title {
    font-size: 36px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-image img {
    width: 200px;
    height: 200px;
  }

  .pie-chart {
    width: 250px;
    height: 250px;
  }

  .pie-center {
    width: 160px;
    height: 160px;
  }

  .launch-countdown {
    padding: 30px 20px;
  }

  .launch-countdown h3 {
    font-size: 28px;
  }

  .countdown-date {
    font-size: 22px;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}
