:root {
  --primary: #a855f7;
  --secondary: #7c3aed;
  --accent: #c084fc;
}

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

body {
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #0f0f1a 100%);
  min-height: 100vh;
  color: #e2e8f0;
  overflow-x: hidden;
}

.comic-sans {
  font-family: 'Comic Sans MS', cursive, sans-serif !important;
}

.comic-sans * {
  font-family: inherit !important;
}

.app-container {
  min-height: 100vh;
  position: relative;
}

.emoji-rain {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.emoji-particle {
  position: absolute;
  top: -50px;
  font-size: 24px;
  animation: fall 6s linear forwards;
  opacity: 0.6;
}

@keyframes fall {
  to {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}

.app-header {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  z-index: 10;
}

.main-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 900;
  background: linear-gradient(90deg, #f472b6, #a855f7, #38bdf8, #f472b6);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  text-shadow: none;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.main-subtitle {
  color: #94a3b8;
  font-size: clamp(0.875rem, 2vw, 1rem);
  margin-top: 0.5rem;
  font-style: italic;
}

.app-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .app-layout {
    grid-template-columns: 320px 1fr;
    padding: 2rem;
  }
}

.glass-card {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
}

.configurator {
  position: sticky;
  top: 1rem;
  height: fit-content;
}

.config-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #f1f5f9;
}

.config-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.config-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.config-field.full-width {
  grid-column: 1 / -1;
}

.config-field label {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.config-input {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  padding: 0.75rem;
  color: #f1f5f9;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.config-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.hype-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(30, 41, 59, 0.8);
  -webkit-appearance: none;
  cursor: pointer;
}

.hype-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  cursor: pointer;
  box-shadow: 0 0 10px var(--primary);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  color: #e2e8f0;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}

.randomize-btn {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, #f472b6, #a855f7);
  border: none;
  border-radius: 8px;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.randomize-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(244, 114, 182, 0.4);
}

.preview-container {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.preview-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  z-index: 20;
}

.hero-section {
  padding: 3rem 1.5rem;
  text-align: center;
}

.hero-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.logo-emoji {
  font-size: 4rem;
}

.logo-glow {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: glow-ring 1.5s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes glow-ring {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0; }
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { filter: drop-shadow(0 0 20px var(--primary)); }
  to { filter: drop-shadow(0 0 40px var(--primary)); }
}

.hero-rockets, .hero-moons {
  display: inline-block;
  animation: bounce 0.5s ease infinite alternate;
}

.hero-name {
  font-size: 1.5rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1.125rem;
  color: #cbd5e1;
  max-width: 500px;
  margin: 0 auto 0.5rem;
}

.hero-vibe {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.stat-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.buy-btn {
  position: relative;
  padding: 1rem 3rem;
  border: none;
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s;
}

.buy-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px var(--primary);
}

.buy-text {
  transition: all 0.3s;
}

.buy-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
}

.buy-btn:hover .buy-text {
  opacity: 0;
}

.buy-btn:hover .buy-hover {
  opacity: 1;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.tokenomics-section {
  margin: 1.5rem;
}

.tokenomics-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 640px) {
  .tokenomics-content {
    flex-direction: row;
    justify-content: center;
  }
}

.pie-chart {
  width: 200px;
  height: 200px;
}

.pie-segment {
  transition: all 0.3s;
}

.pie-segment:hover {
  transform: scale(1.02);
  filter: brightness(1.2);
}

.tokenomics-legend {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.honest-disclaimer {
  text-align: center;
  color: #64748b;
  font-size: 0.75rem;
  font-style: italic;
  margin-top: 1rem;
}

.roadmap-section {
  margin: 1.5rem;
}

.roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.roadmap-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  border-left: 3px solid #334155;
  animation: slideIn 0.5s ease calc(var(--delay)) both;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.roadmap-item.complete {
  border-left-color: var(--primary);
}

.roadmap-item.progress {
  border-left-color: #eab308;
}

.roadmap-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.roadmap-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.roadmap-phase {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.roadmap-title {
  font-weight: 600;
  color: #e2e8f0;
}

.roadmap-status {
  font-size: 1.25rem;
}

.testimonials-section {
  margin: 1.5rem;
  text-align: center;
}

.testimonial-card {
  max-width: 400px;
  margin: 0 auto 1.5rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

.testimonial-avatar {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: #cbd5e1;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: var(--accent);
}

.testimonial-role {
  font-size: 0.75rem;
  color: #64748b;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #334155;
  transition: all 0.3s;
}

.dot.active {
  width: 24px;
  border-radius: 4px;
}

.as-seen-on {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.as-seen-on p {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.fake-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.fake-logo {
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  font-size: 0.75rem;
  color: #475569;
  font-weight: 600;
}

.telegram-section {
  margin: 1.5rem;
}

.telegram-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 0.75rem;
  margin-top: -1rem;
  margin-bottom: 1rem;
}

.telegram-messages {
  max-height: 200px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.telegram-message {
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.telegram-user {
  font-weight: 600;
  margin-right: 0.5rem;
}

.telegram-text {
  color: #cbd5e1;
}

.preview-footer {
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  margin-top: 1.5rem;
}

.disclaimer {
  font-size: 0.625rem;
  color: #475569;
  max-width: 400px;
  margin: 0 auto 1rem;
  line-height: 1.5;
}

.fake-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.fake-link {
  font-size: 0.75rem;
  color: #64748b;
  cursor: not-allowed;
}

.fake-link:hover {
  text-decoration: line-through;
}

.copyright {
  font-size: 0.75rem;
  color: #475569;
}

.site-footer {
  text-align: center;
  padding: 2rem;
  color: #64748b;
  font-size: 0.875rem;
  position: relative;
  z-index: 10;
}

.site-footer a {
  color: var(--primary);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-joke {
  font-size: 0.75rem;
  color: #475569;
  margin-top: 0.5rem;
  font-style: italic;
}

@media (max-width: 640px) {
  .hero-stats {
    gap: 1rem;
  }
  
  .stat-box {
    padding: 0.75rem 1rem;
  }
  
  .stat-value {
    font-size: 1.25rem;
  }
}