* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* indian spiders getting 5 eur after moving pixels for hours  */
html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Inter', Helvetica, sans-serif;
  color: #fff;
}
.frame {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-image: url('img/frame.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: 110%; 
}
.center-buttons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row;
  gap: 2rem;
  z-index: 5;
  text-align: center;
}
.center-button {
  padding: 1.25em 2.6em;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  font-size: 1.22rem;
  border-radius: 15px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}
.center-button:hover {
  transform: scale(1.05);
  background: linear-gradient(270deg, #ff00dd, #00ffff, #ff00dd);
  background-size: 600% 600%;
  animation: gradientShift 3s ease infinite;
}
.discord-logo {
  width: 1.5em;
  height: auto;
  margin-left: 0.5em;
  vertical-align: middle;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal {
  background: #111;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  width: 320px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  position: relative;
}
.modal h2 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}
.download-option {
  display: block;
  text-align: center;
  background: #222;
  color: white;
  text-decoration: none;
  padding: 0.8em;
  border-radius: 10px;
  margin-top: 0.5em;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s, transform 0.2s, border-color 0.3s;
}
.download-option:hover {
  background: #2e2e2e;
  border-color: rgba(255,255,255,0.25);
  transform: scale(1.04);
}
.download-note {
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 0.2rem;
}
.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.modal-close:hover {
  opacity: 1;
}
.faq-frame {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 3rem 2rem;
  box-sizing: border-box;
  color: #fff;
  background-image: url('img/frame.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow-x: hidden;
}
.faq-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.faq-section {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.faq-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 0.3rem;
}
.faq-item {
  margin-bottom: 1rem;
}
.faq-item p {
  line-height: 1.5;
  font-size: 1rem;
}
.faq-item code {
  background: rgba(0, 0, 0, 0.5);
  padding: 0.1em 0.3em;
  border-radius: 4px;
}
@media (max-width: 1200px) {
  .center-button {
    font-size: 1rem;
    padding: 1em 2em;
  }
}
@media (max-width: 768px) {
  .center-buttons {
    gap: 1rem;
  }
  .center-button {
    font-size: 1rem;
    padding: 1em 2em;
  }
  .faq-frame {
    padding: 2rem 1rem;
  }
  .faq-title {
    font-size: 2rem;
  }
  .faq-section h2 {
    font-size: 1.5rem;
  }
  .faq-item p {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .center-button {
    font-size: 0.9rem;
    padding: 0.8em 1.5em;
  }
  .faq-title {
    font-size: 1.7rem;
  }
  .faq-section h2 {
    font-size: 1.3rem;
  }
  .faq-item p {
    font-size: 0.9rem;
  }
}
