/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #0e0e0e;
    color: white;
    font-family: 'Segoe UI', sans-serif;
  }
  
  /* Header */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #1a1a1a;
  }
  
  .logo {
    font-weight: bold;
    font-size: 20px;
  }
  
  nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #c0c0c0;
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
  }
  
  nav a:hover {
    background-color: #1a1a1a;
    color: white;
  }
  
  nav a.active {
    background: linear-gradient(to bottom, #1e1e1e, #0e0e0e);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.08);
    color: white;
  }
  
  /* Discord Button */
  .discord-btn {
    margin: 0;
  }
  
  .discord-icon {
    width: 20px;
    height: 20px;
  }

  .discord-icon {
    width: 20px;
    height: 20px;
  }
  
  
  /* Hero */
  .hero {
    text-align: center;
    margin: 40px 0;
  }
  
  .hero img {
    max-width: 80%;
    border: 2px solid #333;
    border-radius: 10px;
  }
  
  .buttons {
    margin-top: 20px;
  }
  
  .btn {
    background-color: #222;
    color: white;
    padding: 12px 20px;
    margin: 10px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
    border: 1px solid #333;
  }
  
  .btn:hover {
    background-color: #333;
  }
  
  
  .btn.secondary {
    background-color: transparent;
    border: 1px solid #555;
  }

  
  /* FAQ Section */
  .faq {
    padding: 40px;
    max-width: 700px;
    margin: auto;
  }
  
  .faq h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .faq-item {
    margin-bottom: 15px;
  }
  
  .faq-question {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    color: white;
    background: #111;
    border-radius: 12px;
    border: 1px solid #2b2b2b;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .faq-question:hover {
    background: linear-gradient(to right, #1a1a1a, #0e0e0e);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    transform: scale(1.02);
  }
  .faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
    padding: 0 20px;
  }
  
  .faq-item.active .faq-answer {
    max-height: 200px; /* adjust as needed */
    padding: 15px 20px;
  }
  
  .download-section {
    padding: 60px 20px;
    text-align: center;
  }
  
  .download-title {
    font-size: 36px;
    margin-bottom: 8px;
  }
  
  .subtitle {
    color: #999;
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .download-card {
    max-width: 1100px;
    margin: auto;
    background: linear-gradient(to right, #141414, #0f0f0f);
    border: 1px solid #222;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    box-shadow: 0 0 40px rgba(0,0,0,0.3);
  }
  
  .left, .right {
    flex: 1;
    min-width: 300px;
  }
  
  .version {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .version-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    border: 2px solid #333;
  }
  
  .latest-release {
    color: #ccc;
    font-size: 14px;
  }
  
  .features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
  
  .feature-box {
    background: #111;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    flex: 1;
    min-width: 150px;
  }
  
  .download-btn {
    background-color: #111;
    border: 1px solid #444;
    font-weight: bold;
    font-size: 16px;
    margin-top: 20px;
  }
  
  .download-btn:hover {
    background-color: #222;
  }
  
  .right {
    max-height: 340px;
    overflow-y: auto;
    background-color: #101010;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 20px;
  }
  
  .updates-title {
    margin-bottom: 20px;
    font-size: 18px;
  }
  
  .updates-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .update {
    background-color: #1a1a1a;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #2b2b2b;
    font-size: 14px;
    color: #ccc;
  }

  .credits-section {
    padding: 60px 20px;
    text-align: center;
  }
  
  .credits-title {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .credits-subtitle {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 40px;
  }
  
  .credits-card {
    background: linear-gradient(to right, #141414, #0f0f0f);
    border: 1px solid #222;
    border-radius: 20px;
    padding: 30px;
    max-width: 1000px;
    margin: auto;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
  }
  
  .contributors-title {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: left;
    color: #fff;
  }
  
  .credits-table {
    width: 100%;
    border-collapse: collapse;
    color: #ccc;
    font-size: 14px;
  }
  
  .credits-table th,
  .credits-table td {
    padding: 14px 10px;
    text-align: left;
    border-bottom: 1px solid #333;
  }
  
  .credits-table a {
    color: #ccc;
    text-decoration: none;
  }
  
  .credits-table a:hover {
    text-decoration: underline;
  }
  
  .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #444;
  }
  