* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #0a0a0a;
  color: #e5e5e5;
  line-height: 1.6;
}

/* Fixed Logo - Top Left */
.logo-header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 24px;
  z-index: 100;
}

.logo {
  height: 100px;
  width: auto;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
  }
}

/* Hero Section - Sticky */
.hero {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 40px 80px;
  background-color: #0a0a0a;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  max-width: 800px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.25rem;
  color: #888;
  font-weight: 300;
  max-width: 600px;
}

.brand-gradient {
  background: linear-gradient(90deg, #d0343d, #ec752d, #f4ad3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}

/* Slot Machine Container */
main {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.slot-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Product Sections */
.product-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  padding: 40px;
  background-color: #111;
  flex-shrink: 0;
}

.product-section:nth-child(even) {
  background-color: #0d0d0d;
}

.product-content {
  max-width: 600px;
  width: 100%;
}

.product-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.product-name {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}

.product-description {
  font-size: 1.1rem;
  color: #888;
  font-weight: 300;
  max-width: 500px;
}

.product-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  background-color: transparent;
  border: 1px solid #333;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.product-link:hover {
  border-color: #555;
  background-color: #1a1a1a;
}

/* Coming Soon */
.coming-soon-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-badge {
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
  background-color: transparent;
  border: 1px solid #333;
  border-radius: 8px;
}

/* Status Badges */
.status {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.status.live {
  background-color: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.status.beta {
  background-color: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

.status.development {
  background-color: rgba(234, 179, 8, 0.15);
  color: #eab308;
}

.status.coming-soon {
  background-color: rgba(156, 163, 175, 0.15);
  color: #9ca3af;
}

/* Footer */
footer {
  padding: 60px 40px;
  text-align: center;
}

.emoji-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.hi-text {
  font-size: 0.85rem;
  color: #555;
  font-weight: 400;
  transition: color 0.2s ease;
}

.follow-text {
  font-size: 0.85rem;
  color: #555;
  font-weight: 400;
  transition: color 0.2s ease;
}

.emoji-link:hover .hi-text,
.emoji-link:hover .follow-text {
  color: #888;
}

.copyright {
  position: fixed;
  bottom: 16px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.75rem;
  color: #333;
}

.mobile-x-link {
  display: none;
  text-decoration: none;
  color: #555;
  font-size: 0.75rem;
  margin-bottom: 8px;
}

.mobile-emoji {
  font-size: 1.2rem;
  margin: 0 6px;
}

.emoji {
  display: inline-block;
  font-size: 2.5rem;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.emoji-link:hover .emoji {
  animation: wave 0.5s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(20deg);
  }
  75% {
    transform: rotate(-20deg);
  }
}

/* Responsive */
@media (max-width: 480px) {
  .logo-header {
    padding: 16px;
  }

  .logo {
    height: 70px;
  }

  .hero {
    padding: 120px 24px 60px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.85rem;
  }

  footer {
    display: none;
  }

  .mobile-x-link {
    display: block;
  }

  .product-section {
    padding: 60px 24px;
  }

  .product-name {
    font-size: 1.5rem;
  }

  .product-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .product-description {
    font-size: 1rem;
  }
}
