@import url('./components/root.css');

/* ===== BASE ===== */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--background-dark);
  color: var(--text-color);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

::selection {
  background: var(--accent-color);
  color: white;
}

/* ===== BACKGROUND GLOWS ===== */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.glow-1 {
  width: 600px; height: 600px;
  background: var(--accent-color);
  top: -200px; right: -200px;
}
.glow-2 {
  width: 500px; height: 500px;
  background: var(--primary-color);
  bottom: 20%; left: -150px;
}
.glow-3 {
  width: 400px; height: 400px;
  background: #6c5ce7;
  top: 50%; right: 10%;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 18, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(188, 19, 254, 0.15);
}
.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.logo-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
}
.title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin: 0;
}
.title span {
  color: var(--accent-color);
  text-shadow: 0 0 15px var(--accent-color);
}

/* Nav */
nav ul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
nav a, .nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
  opacity: 0.75;
  text-transform: uppercase;
}
nav a:hover, .nav-link:hover {
  opacity: 1;
  color: var(--accent-color);
  background: rgba(188, 19, 254, 0.1);
  text-shadow: 0 0 10px var(--accent-color);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-color);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
  opacity: 0.3;
}
.hero-content {
  position: relative;
  max-width: 900px;
  animation: fadeIn 1s ease-out;
}
.hero-badge {
  display: inline-block;
  background: rgba(188, 19, 254, 0.15);
  border: 1px solid rgba(188, 19, 254, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--accent-color);
  letter-spacing: 0.5px;
}
.hero-title {
  font-size: 4.5rem;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, var(--accent-color), #a332a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.btn-primary, .btn-secondary {
  padding: 1rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary {
  background: var(--accent-color);
  color: white;
  box-shadow: 0 0 30px rgba(188, 19, 254, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(188, 19, 254, 0.5);
  filter: brightness(1.15);
}
.btn-secondary {
  border: 1px solid rgba(188, 19, 254, 0.4);
  color: white;
  background: rgba(188, 19, 254, 0.08);
}
.btn-secondary:hover {
  background: rgba(188, 19, 254, 0.2);
  transform: translateY(-3px);
  border-color: var(--accent-color);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  text-shadow: 0 0 20px rgba(188, 19, 254, 0.3);
}
.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== SECTIONS ===== */
.section {
  position: relative;
  padding: 6rem 2rem;
  z-index: 1;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.75rem;
  background: linear-gradient(to right, #fff, var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 4rem;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.about-text a {
  color: var(--accent-color);
  text-decoration: none;
  border-bottom: 1px solid rgba(188, 19, 254, 0.3);
  transition: var(--transition);
}
.about-text a:hover {
  border-color: var(--accent-color);
}
.about-highlight {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.highlight-card {
  background: var(--background-surface);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.highlight-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 0 20px rgba(188, 19, 254, 0.15);
  transform: translateX(5px);
}
.highlight-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.highlight-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.highlight-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: linear-gradient(180deg, transparent, rgba(188, 19, 254, 0.03), transparent);
}
.steps {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-color), transparent);
}
.step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}
.step-number {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-color);
  background: rgba(188, 19, 254, 0.1);
  border: 2px solid rgba(188, 19, 254, 0.3);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.step-content {
  background: var(--background-surface);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  flex: 1;
  transition: var(--transition);
}
.step-content:hover {
  border-color: rgba(188, 19, 254, 0.3);
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #fff;
}
.step-content p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--background-surface);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  text-align: center;
  backdrop-filter: blur(5px);
}
.card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 20px rgba(188, 19, 254, 0.15);
}
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}
.card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* ===== RELEASES ===== */
.releases {
  background: linear-gradient(180deg, transparent, rgba(188, 19, 254, 0.02), transparent);
}
.release-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--background-surface);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover {
  border-color: var(--accent-color);
  color: #fff;
}
.filter-btn.active {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.releases-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.release-card {
  background: var(--background-surface);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition);
}
.release-card:hover {
  border-color: rgba(188, 19, 254, 0.2);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.release-card.prerelease {
  opacity: 0.7;
  border-style: dashed;
}
.release-card.prerelease:hover {
  opacity: 1;
}
.release-card.popular {
  border-color: rgba(255, 165, 0, 0.3);
  box-shadow: 0 0 30px rgba(255, 165, 0, 0.08);
}
.release-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.release-badge {
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stable-badge {
  background: rgba(46, 213, 115, 0.15);
  color: #2ed573;
  border: 1px solid rgba(46, 213, 115, 0.3);
}
.prerelease-badge {
  background: rgba(255, 165, 0, 0.15);
  color: #ffa502;
  border: 1px solid rgba(255, 165, 0, 0.3);
}
.popular-badge {
  background: rgba(255, 71, 87, 0.15);
  color: #ff4757;
  border: 1px solid rgba(255, 71, 87, 0.3);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}
.release-date {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-left: auto;
}
.release-version {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fff;
}
.release-tagline {
  font-size: 1.1rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.release-details ul {
  list-style: none;
  padding: 0;
}
.release-details li {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}
.release-details li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}
.release-assets {
  display: flex;
  gap: 12px;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.asset-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.asset-btn.primary {
  background: var(--accent-color);
  color: white;
  box-shadow: 0 0 20px rgba(188, 19, 254, 0.2);
}
.asset-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(188, 19, 254, 0.4);
  filter: brightness(1.1);
}
.asset-btn.secondary {
  background: rgba(188, 19, 254, 0.1);
  border: 1px solid rgba(188, 19, 254, 0.3);
  color: #fff;
}
.asset-btn.secondary:hover {
  background: rgba(188, 19, 254, 0.2);
  transform: translateY(-2px);
}
.dl-count {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.7;
}

/* ===== CONTRIBUTORS ===== */
.contributors-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.contributor-card {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: var(--background-surface);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.contributor-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3), 0 0 20px rgba(188, 19, 254, 0.1);
}
.contributor-card.main-dev {
  border-color: rgba(188, 19, 254, 0.3);
  box-shadow: 0 0 30px rgba(188, 19, 254, 0.1);
}
.contributor-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--accent-color);
  box-shadow: 0 0 20px rgba(188, 19, 254, 0.3);
  flex-shrink: 0;
}
.contributor-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.real-name {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 1rem;
}
.contributor-role {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.contributor-desc {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.contributor-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.contributor-links a {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(188, 19, 254, 0.3);
  border-radius: 8px;
  transition: var(--transition);
}
.contributor-links a:hover {
  background: rgba(188, 19, 254, 0.15);
  border-color: var(--accent-color);
}

.thanks-block {
  max-width: 800px;
  margin: 3rem auto 0;
  background: rgba(188, 19, 254, 0.05);
  border: 1px solid rgba(188, 19, 254, 0.15);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
}
.thanks-block h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.thanks-block p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}
.thanks-block a {
  color: var(--accent-color);
  text-decoration: none;
  border-bottom: 1px solid rgba(188, 19, 254, 0.3);
}

/* ===== COMMUNITY ===== */
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.community-card {
  display: flex;
  flex-direction: column;
  background: var(--background-surface);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
.community-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 20px rgba(188, 19, 254, 0.1);
}
.community-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.community-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.community-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex: 1;
}
.community-link {
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 600;
}
.telegram:hover { border-color: #0088cc !important; }
.discord:hover { border-color: #7289da !important; }
.github:hover { border-color: #fff !important; }
.twitter:hover { border-color: #1da1f2 !important; }
.youtube:hover { border-color: #ff0000 !important; }
.tiktok:hover { border-color: #ff0050 !important; }

/* ===== DONATE ===== */
.donate {
  background: linear-gradient(180deg, transparent, rgba(188, 19, 254, 0.03), transparent);
}
.donate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}
.donate-card {
  background: var(--background-surface);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.donate-card:hover {
  border-color: rgba(188, 19, 254, 0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.donate-card a {
  text-decoration: none;
  color: inherit;
}
.donate-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.donate-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.donate-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
  flex: 1;
}
.donate-link {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: inline-block;
}
.crypto-address {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.3);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-top: 1rem;
}
.crypto-address code {
  font-size: 0.8rem;
  word-break: break-all;
  color: var(--accent-color);
  flex: 1;
}
.copy-btn {
  background: none;
  border: 1px solid rgba(188, 19, 254, 0.3);
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.copy-btn:hover {
  background: rgba(188, 19, 254, 0.15);
  border-color: var(--accent-color);
}
.copy-feedback {
  color: #2ed573;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-top: 0.5rem;
}
.copy-feedback.show {
  opacity: 1;
}

/* ===== FOOTER ===== */
footer {
  background: var(--background-nav);
  border-top: 1px solid rgba(188, 19, 254, 0.15);
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-brand {
  max-width: 300px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.footer-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.footer-title {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
}
.footer-title span {
  color: var(--accent-color);
}
.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-links-grid {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}
.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: var(--transition);
}
.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copyright p {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.watermark p {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.watermark strong {
  color: var(--accent-color);
  text-shadow: 0 0 8px rgba(188, 19, 254, 0.3);
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-color);
  color: white;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(188, 19, 254, 0.3);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 99;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(188, 19, 254, 0.5);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 3rem;
  }
  .stat-num {
    font-size: 2rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 15, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(188, 19, 254, 0.15);
    padding: 1rem;
  }
  nav.open {
    display: block;
  }
  nav ul {
    flex-direction: column;
    gap: 4px;
  }
  nav a, .nav-link {
    display: block;
    padding: 0.75rem 1rem;
  }
  .hero {
    padding: 5rem 1.5rem 4rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .steps::before {
    display: none;
  }
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }
  .contributor-card {
    flex-direction: column;
    text-align: center;
  }
  .contributor-links {
    justify-content: center;
  }
  .release-assets {
    flex-direction: column;
  }
  .asset-btn {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .donate-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
  }
  .footer-links-grid {
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .release-date {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .section {
    padding: 4rem 1rem;
  }
  .release-card {
    padding: 1.5rem;
  }
  .community-grid {
    grid-template-columns: 1fr;
  }
}
