* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary-purple: #a855f7;
      --purple-light: #c084fc;
      --purple-glow: rgba(168, 85, 247, 0.2);
      --text-light: #e0e0e0;
      --text-muted: #aaa;
      --bg-dark: #0f0f0f;
      --bg-card: #1a1a1a;
      --border: #333;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--bg-dark);
      color: var(--text-light);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* === NAVBAR === */
    .navbar {
      position: sticky;
      top: 0;
      background: rgba(15, 15, 15, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 1rem 0;
      border-bottom: 1px solid var(--border);
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 1.5rem;
    }

    .logo-container {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .logo-img {
      width: 32px;
      height: 32px;
      object-fit: contain;
      border-radius: 6px;
    }

    .logo-text {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary-purple);
    }

    .nav-menu {
      display: flex;
      list-style: none;
      gap: 1.5rem;
    }

    .nav-link {
      color: #ccc;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: color 0.3s;
    }

    .nav-link:hover {
      color: var(--primary-purple);
    }

    /* === CONTAINER === */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 4rem 1.5rem;
    }

    .section-title {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 2.5rem;
      color: #fff;
    }

    /* === SEARCH BAR === */
    .search-container {
      max-width: 600px;
      margin: 0 auto 2.5rem;
      position: relative;
    }

    .search-input {
      width: 100%;
      padding: 1rem 1.5rem 1rem 3rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      color: var(--text-light);
      font-size: 1rem;
      outline: none;
      transition: all 0.3s;
    }

    .search-input:focus {
      border-color: var(--primary-purple);
      box-shadow: 0 0 15px var(--purple-glow);
    }

    .search-icon {
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
    }

    /* === RELEASES TABLE === */
    .releases-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--bg-card);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    }

    .releases-table th {
      background: #222;
      padding: 1.2rem 1rem;
      text-align: left;
      font-weight: 600;
      color: var(--primary-purple);
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .releases-table td {
      padding: 1.2rem 1rem;
      border-bottom: 1px solid var(--border);
      vertical-align: middle;
    }

    .release-tag {
      font-weight: 700;
      color: var(--primary-purple);
      font-size: 1.1rem;
    }

    .release-date {
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    .btn {
      padding: 0.6rem 1.2rem;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.9rem;
      display: inline-block;
      transition: all 0.3s;
      text-align: center;
    }

    .btn-download {
      background: var(--primary-purple);
      color: white;
    }

    .btn-download:hover {
      background: var(--purple-light);
      transform: translateY(-2px);
      box-shadow: 0 6px 15px var(--purple-glow);
    }

    .btn-changelog {
      background: transparent;
      color: var(--text-muted);
      border: 1px solid var(--border);
    }

    .btn-changelog:hover {
      color: var(--primary-purple);
      border-color: var(--primary-purple);
      box-shadow: 0 0 10px var(--purple-glow);
    }

    .no-results {
      text-align: center;
      padding: 3rem;
      color: var(--text-muted);
      font-style: italic;
    }

    .loading {
      text-align: center;
      padding: 3rem;
      color: var(--primary-purple);
      font-size: 1.1rem;
    }

    .loading::after {
      content: '';
      display: inline-block;
      width: 8px;
      height: 8px;
      border: 2px solid var(--primary-purple);
      border-radius: 50%;
      border-top-color: transparent;
      animation: spin 1s linear infinite;
      margin-left: 10px;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* === MODAL === */
    .modal {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.85);
      backdrop-filter: blur(8px);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: var(--bg-card);
      padding: 2rem;
      border-radius: 20px;
      max-width: 700px;
      width: 100%;
      max-height: 80vh;
      overflow-y: auto;
      border: 1px solid var(--border);
      box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    }

    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border);
    }

    .modal-title {
      font-size: 1.4rem;
      color: var(--primary-purple);
      font-weight: 600;
    }

    .close-modal {
      background: none;
      border: none;
      color: var(--text-muted);
      font-size: 1.8rem;
      cursor: pointer;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.3s;
    }

    .close-modal:hover {
      background: #333;
      color: #fff;
    }

    .changelog-body {
      color: var(--text-light);
      line-height: 1.8;
      white-space: pre-wrap;
    }

    /* === FOOTER === */
.footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 2rem;
  margin-top: 4rem;
  overflow: hidden;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 100%;
}

.footer-left .logo {
  color: var(--primary-purple);
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  display: block;
}

.footer-left p {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  word-wrap: break-word;
  line-height: 1.5;
}

.footer-left p a {
  color: #666;
  text-decoration: none;
}

.footer-left p a:hover {
  color: #999;
}

.footer-links h4,
.footer-social h4 {
  color: #fff;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  display: block;
}

.footer-links a:hover {
  color: var(--primary-purple);
}

.social-icons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.social-icons a:hover {
  background: var(--primary-purple);
  color: #fff;
  transform: translateY(-4px);
  border-color: var(--primary-purple);
  box-shadow: 0 8px 20px var(--purple-glow);
}

.social-icons a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 0;
}

.social-icons a:hover::before {
  width: 300px;
  height: 300px;
}

.social-icons a i {
  position: relative;
  z-index: 1;
}

    /* === RESPONSIVE === */
    @media (max-width: 768px) {
      .nav-menu { display: none; }
      .releases-table th, .releases-table td {
        padding: 0.8rem 0.6rem;
        font-size: 0.9rem;
      }
      .btn { font-size: 0.8rem; padding: 0.5rem 1rem; }
      .section-title { font-size: 1.8rem; }
    }

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }
  .footer-left p,
  .footer-left p a { font-size: 0.9rem; }
  .footer-links h4,
  .footer-social h4 { font-size: 1.1rem; }
  .footer-links a { font-size: 0.95rem; }
  .social-icons { gap: 1rem; }
  .social-icons a { width: 44px; height: 44px; font-size: 1.3rem; }
}