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

:root {
  --teal: #14b8a6;
  --cyan: #06b6d4;
  --dark: #0f172a;
  --darker: #020617;
  --white: #f8fafc;
  --accent-lp: #5b9bd5;
  --accent-burn: #d4a574;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--darker);
  color: var(--white);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Nature / mountain / forest background — very subtle parallax feel */
.bg-nature {
  position: fixed;
  inset: 0;
  background-color: var(--darker);
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -4;
  animation: bgFloat 25s ease-in-out infinite;
}

@keyframes bgFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(8px) scale(1.008); }
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.85) 0%, rgba(15, 23, 42, 0.88) 40%, rgba(2, 6, 23, 0.9) 100%);
  z-index: -3;
}

/* Animated gradient layer (very slow, subtle) */
.bg-gradient {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(14, 116, 144, 0.12) 50%, transparent 100%);
  background-size: 400% 400%;
  animation: gradientShift 22s ease-in-out infinite;
  z-index: -2;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.bg-glow {
  position: fixed;
  width: 80vmax;
  height: 80vmax;
  top: -30vmax;
  left: -20vmax;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: rgba(15, 23, 42, 0.82);
  z-index: 10;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
}

.header nav {
  display: flex;
  gap: 1.5rem;
}

.header nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.2s, color 0.2s;
}

.header nav a:hover {
  opacity: 1;
  color: var(--teal);
}

.theme-toggle {
  background: rgba(20, 184, 166, 0.2);
  border: 1px solid rgba(20, 184, 166, 0.4);
  color: var(--white);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.theme-toggle:hover {
  background: rgba(20, 184, 166, 0.35);
  transform: scale(1.05);
}

/* Hero */
.hero {
  text-align: center;
  padding: 4rem 1.5rem 5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--white), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-badges span {
  padding: 0.5rem 1rem;
  background: rgba(20, 184, 166, 0.2);
  border: 1px solid rgba(20, 184, 166, 0.4);
  border-radius: 999px;
  font-size: 0.95rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: var(--dark);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(20, 184, 166, 0.45);
  background: linear-gradient(135deg, #17d4c1, #22d3ee);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.75rem;
}

.btn-proof {
  background: rgba(20, 184, 166, 0.15);
  color: var(--teal);
  border: 1px solid rgba(20, 184, 166, 0.5);
}

.btn-proof:hover {
  background: rgba(20, 184, 166, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(20, 184, 166, 0.35);
}

.hero-proof-note {
  font-size: 0.85rem;
  opacity: 0.75;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.4;
}

/* Sections */
.section {
  padding: 3rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.section h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--teal);
}

.section-text {
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.section-text.small {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Tokenomics cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.card {
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(20, 184, 166, 0.35);
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35), 0 0 24px rgba(20, 184, 166, 0.12);
  border-color: rgba(20, 184, 166, 0.5);
}

.card--lp:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35), 0 0 20px rgba(91, 155, 213, 0.18);
  border-color: rgba(91, 155, 213, 0.45);
}

.card--burn:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35), 0 0 20px rgba(212, 165, 116, 0.18);
  border-color: rgba(212, 165, 116, 0.45);
}

.card-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--teal);
}

.card p {
  font-size: 0.85rem;
  opacity: 0.85;
}

.tokenomics-trust {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.85;
  font-style: italic;
}

.tokenomics-founder {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.88rem;
  opacity: 0.85;
  line-height: 1.5;
}

.tokenomics-founder a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}

.tokenomics-founder a:hover {
  text-decoration: underline;
}

/* FAQ */
.faq-list {
  margin-top: 1.5rem;
}

.faq-item {
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item h3 {
  font-size: 1rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.55;
}

/* Links */
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}

.link-card {
  display: inline-block;
  padding: 1rem 1.5rem;
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.4);
  border-radius: 12px;
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.link-card:hover {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.22), rgba(6, 182, 212, 0.2));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.2);
}

.disclaimer {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.7;
  text-align: center;
}

/* Meme teaser */
.meme-teaser {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

.meme-teaser-text {
  text-align: center;
  font-size: 1rem;
  opacity: 0.8;
  font-style: italic;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* ========== CANLI TEMA: LIGHT ========== */
[data-theme="light"] {
  --darker: #e0f2fe;
  --dark: #f0f9ff;
  --white: #0c4a6e;
}

[data-theme="light"] body {
  background: var(--darker);
  color: var(--white);
}

[data-theme="light"] .bg-nature {
  opacity: 0.45;
}

[data-theme="light"] .bg-overlay {
  background: linear-gradient(180deg, rgba(224, 242, 254, 0.92) 0%, rgba(240, 249, 255, 0.94) 40%, rgba(224, 242, 254, 0.96) 100%);
}

[data-theme="light"] .bg-gradient {
  background: linear-gradient(135deg, transparent 0%, rgba(14, 116, 144, 0.08) 50%, transparent 100%);
}

[data-theme="light"] .bg-glow {
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 50%);
}

[data-theme="light"] .header {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(20, 184, 166, 0.2);
}

[data-theme="light"] .header nav a {
  color: var(--white);
}

[data-theme="light"] .header nav a:hover {
  color: var(--teal);
}

[data-theme="light"] .theme-toggle {
  background: rgba(20, 184, 166, 0.15);
  border-color: rgba(20, 184, 166, 0.35);
  color: var(--white);
}

[data-theme="light"] .hero h1 {
  background: linear-gradient(90deg, var(--white), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
}

[data-theme="light"] .hero-badges span {
  background: rgba(20, 184, 166, 0.12);
  border-color: rgba(20, 184, 166, 0.35);
  color: var(--white);
}

[data-theme="light"] .btn-primary {
  color: #0f172a;
}

[data-theme="light"] .card,
[data-theme="light"] .faq-item {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(20, 184, 166, 0.28);
}

[data-theme="light"] .card:hover,
[data-theme="light"] .faq-item:hover {
  border-color: rgba(20, 184, 166, 0.45);
}

[data-theme="light"] .link-card {
  background: rgba(20, 184, 166, 0.1);
  border-color: rgba(20, 184, 166, 0.3);
  color: var(--teal);
}

[data-theme="light"] .link-card:hover {
  background: rgba(20, 184, 166, 0.2);
}

[data-theme="light"] .disclaimer,
[data-theme="light"] .tokenomics-trust,
[data-theme="light"] .tokenomics-founder,
[data-theme="light"] .meme-teaser-text {
  color: var(--white);
}

[data-theme="light"] .footer {
  color: var(--white);
}

/* ========== MOBİL / RESPONSIVE ========== */
@media (max-width: 768px) {
  .header {
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .logo {
    font-size: 1.25rem;
  }
  .header nav {
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .header nav a {
    font-size: 0.9rem;
  }
  .section {
    padding: 2rem 1rem;
  }
  .section h2 {
    font-size: 1.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
  .links-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .link-card {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .header {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .header nav {
    justify-content: center;
  }
  .hero {
    padding: 2.5rem 1rem 3.5rem;
  }
  .hero h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.2;
  }
  .hero-sub {
    font-size: 1rem;
  }
  .hero-badges {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  .hero-badges span {
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
  }
  .hero-proof-note {
    font-size: 0.8rem;
    padding: 0 0.5rem;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .card {
    padding: 1rem;
  }
  .card p {
    font-size: 0.8rem;
  }
  .tokenomics-trust,
  .tokenomics-founder {
    font-size: 0.85rem;
    padding: 0 0.5rem;
  }
  .faq-item {
    padding: 1rem 1rem;
  }
  .faq-item h3 {
    font-size: 0.95rem;
  }
  .faq-item p {
    font-size: 0.9rem;
  }
  .btn {
    padding: 0.85rem 1.5rem;
    min-height: 44px;
  }
  .theme-toggle {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 44px;
    min-height: 44px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.35rem;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .header nav a {
    font-size: 0.85rem;
  }
}

/* Dokunmatik cihazlar: hover’da sticky tap önleme */
@media (hover: none) {
  .card:hover,
  .link-card:hover {
    transform: none;
  }
  .btn-primary:hover,
  .btn-proof:hover {
    transform: none;
  }
}
