/* GROK87K - Shared Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-primary: #0a0a0f;
  --bg-card: #111827;
  --accent-cyan: #00e5ff;
  --accent-purple: #7b2fff;
  --text-white: #ffffff;
  --text-gray: #9ca3af;
  --border-glow: rgba(0, 229, 255, 0.5);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: transparent;
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-purple);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-cyan);
  text-shadow: 0 0 20px var(--border-glow);
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-cyan);
  text-shadow: 0 0 20px var(--border-glow);
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--text-white);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--accent-cyan);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--accent-cyan);
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Warning Banner */
.warning-banner {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
  color: var(--text-gray);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 35px;
  border: none;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  box-shadow: 0 0 20px var(--border-glow);
}

.btn-primary:hover {
  box-shadow: 0 0 30px var(--border-glow), 0 0 50px var(--border-glow);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 120px 0;
  background: transparent;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--text-white);
  text-align: center;
}

.hero p {
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 30px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 30px;
  background: var(--bg-card);
  color: var(--text-white);
  border: 1px solid var(--accent-cyan);
}

.glow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 30px;
  background: var(--bg-card);
  color: var(--text-white);
  box-shadow: 0 0 20px var(--border-glow);
}

.blinking {
  animation: blink 1s infinite;
}

/* Blinking animation */
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

/* Crypto Icons Row */
.crypto-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 60px 0;
  padding: 0 20px;
}

.crypto-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.crypto-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 2px solid var(--accent-cyan);
  transition: all 0.3s ease;
}

.crypto-icon:hover {
  box-shadow: 0 0 20px var(--border-glow);
  transform: scale(1.1);
}

.crypto-label {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 500;
}

/* Countdown Timer */
.countdown {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 30px 0;
}

.countdown-box {
  background: var(--bg-card);
  padding: 20px 15px;
  border-radius: 10px;
  min-width: 80px;
  text-align: center;
  border: 1px solid var(--accent-cyan);
  color: var(--text-white);
}

.countdown-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-white);
  min-width: 50px;
}

.countdown-label {
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 5px;
}

/* Cards */
.card {
  background: var(--bg-card);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.card:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px var(--border-glow);
}

/* Grid Layout */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Progress Bar */
.progress-container {
  background: var(--bg-card);
  border-radius: 10px;
  height: 20px;
  overflow: hidden;
  margin: 20px 0;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 10px;
  width: 0%;
  transition: width 2s ease;
}

/* Token Distribution Chart */
.chart-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 40px 0;
}

.pie-chart {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: conic-gradient(
    #f97316 0% 15%,
    #3b82f6 15% 45%,
    #a855f7 45% 55%,
    #10b981 55% 80%,
    #f59e0b 80% 100%
  );
  margin-bottom: 30px;
  box-shadow: 0 0 30px var(--border-glow);
}

/* Bonus Cards */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.bonus-card {
  background: var(--bg-card);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  border: 2px solid;
  position: relative;
  transition: all 0.3s ease;
}

.bonus-bronze { border-color: #cd7f32; }
.bonus-silver { border-color: #c0c0c0; }
.bonus-gold { border-color: #ffd700; }

.bonus-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-white);
}

/* FAQ Accordion */
.faq-item {
  background: var(--bg-card);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: var(--accent-cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-answer.active {
  max-height: 200px;
  padding: 0 20px 20px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--text-gray);
}

.form-group input,
.form-group textarea {
  padding: 15px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: var(--bg-card);
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px var(--border-glow);
}

/* Swap Widget */
.swap-widget {
  background: var(--bg-card);
  border-radius: 15px;
  padding: 20px;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.3);
}

.swap-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}

.swap-label {
  font-size: 14px;
  color: var(--text-white);
  margin-bottom: 10px;
  font-weight: 500;
}

.swap-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #46475e;
  border-radius: 10px;
  background: #000;
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff'%3E%3Cpath d='M7.247 11.14 7.293 11.2l.046-.06.046-.06 1.414-1.414L8.812 9.5l.439.44.439.44 1.414-1.414L10.707 9.5 9.293 11.2l-.046.06-.046.06-1.414 1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}

.select-option:hover {
  background: var(--accent-cyan) !important;
  color: var(--bg-primary) !important;
}

.swap-input {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--accent-cyan);
  border-radius: 10px;
  background: #fff;
  color: black;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  outline: none;
}

.swap-separator {
  text-align: center;
  font-size: 24px;
  margin: 15px 0;
  color: #8DA4B6;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.status-blink {
  animation: blink 1s infinite;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  border: 1px solid var(--accent-cyan);
}

.modal-wallet {
  background: var(--bg-primary);
  padding: 15px;
  border-radius: 8px;
  font-family: monospace;
  margin: 20px 0;
  word-break: break-all;
}

.modal-close {
  margin-top: 20px;
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  background: var(--accent-cyan);
  color: var(--bg-primary);
}

.email-section {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(141, 164, 182, 0.3);
  display: none;
}

.email-section input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--accent-cyan);
  background: transparent;
  color: var(--text-white);
  font-weight: 500;
  font-size: 13px;
}

.email-section button {
  width: 100%;
  background: #00c26f;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

/* Stats */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-cyan);
}

/* Roadmap */
.roadmap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.roadmap::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-cyan);
  left: 50%;
  transform: translateX(-50%);
}

.roadmap-phase {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.roadmap-phase:nth-child(odd) {
  justify-content: flex-start;
}

.roadmap-phase:nth-child(even) {
  justify-content: flex-end;
}

.roadmap-content {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 10px;
  width: 45%;
  border: 1px solid var(--accent-cyan);
}

.roadmap-phase:nth-child(odd) .roadmap-content {
  margin-right: auto;
}

.roadmap-phase:nth-child(even) .roadmap-content {
  margin-left: auto;
}

/* Media Queries */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: var(--bg-card);
    padding: 20px;
    border-radius: 10px;
    flex-direction: column;
    min-width: 150px;
    box-shadow: 0 0 20px var(--border-glow);
  }

  .nav-links.active {
    display: flex;
  }

  .hero h1 {
    font-size: 32px;
  }

  .countdown {
    gap: 10px;
  }

  .countdown-number {
    font-size: 24px;
  }

  .roadmap::before {
    left: 20px;
  }

  .roadmap-phase {
    justify-content: flex-start !important;
  }

  .roadmap-content {
    width: calc(100% - 40px);
    margin-left: 40px;
  }

  #pre .container {
    flex-direction: column !important;
    align-items: flex-start;
  }

  #pre .container > div:first-child {
    order: 1;
    margin-top: 0;
  }

  #pre .container > div:last-child {
    order: 2;
    margin-top: 20px;
    max-width: 480px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 24px;
  }

  .countdown-box {
    min-width: 50px;
    padding: 10px 8px;
  }

  .stats-row {
    gap: 20px;
  }

  .stat-value {
    font-size: 18px;
  }

  #pre .container {
    flex-direction: column !important;
  }

  #pre .container > div:first-child {
    order: 1;
    margin-top: 0;
  }

  #pre .container > div:last-child {
    order: 2;
    margin-top: 20px;
    max-width: 480px;
  }
}