body {
  background: #23272a;
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}



.hero-bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 60% 30%, #ffa50033 0%, #23272a 70%);
  z-index: 0;
  pointer-events: none;
  animation: bgmove 10s infinite alternate;
}
@keyframes bgmove {
  0% { background-position: 60% 30%; }
  100% { background-position: 40% 70%; }
}

header {
  z-index: 1;
  text-align: center;
  padding: 3rem 1rem 1.5rem 1rem;
  position: relative;
}

.hero-logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid #FFA500;
  background: #fff;
  margin-bottom: 1rem;
  box-shadow: 0 4px 24px #ffa50044;
  animation: pop-in 1s;
}

h1 {
  font-size: 2.5rem;
  margin: 0;
  color: #FFA500;
  letter-spacing: 2px;
  font-weight: 900;
  text-shadow: 0 2px 8px #0006;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #fff;
  margin: 0.5rem 0 1.5rem 0;
  text-shadow: 0 1px 4px #0008;
}

.invite-btn.big.discord-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 1.2rem;
  padding: 0.8rem 2.7rem;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
  background: linear-gradient(90deg, #ffa500 60%, #ffb733 100%);
  box-shadow: 0 0 18px 3px #ffa50066, 0 4px 32px #ffa50033;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 1px 6px #0007;
  letter-spacing: 0.5px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.invite-btn.big.discord-glow:hover {
  transform: translateY(-2px) scale(1.045);
  background: linear-gradient(90deg, #ffb733 60%, #ffa500 100%);
  box-shadow: 0 0 28px 7px #ffa50088, 0 8px 40px #ffa50044;
}

.discord-icon {
  vertical-align: middle;
  margin-right: 0.1em;
}

.hero-scroll {
  margin-top: 1.5rem;
  font-size: 2.5rem;
  color: #FFA500;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0);}
  50% { transform: translateY(12px);}
}

main {
  flex: 1;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem 2rem 1rem;
}

.features-section, .example-section, .updates-section, .faq-section {
  margin: 2.5rem 0;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.feature-card {
  background: #2f3136;
  border-left: 5px solid #FFA500;
  border-radius: 8px;
  padding: 1.2rem 1.2rem 1rem 1.2rem;
  width: 260px;
  min-height: 180px;
  box-shadow: 0 2px 12px #0004;
  margin-bottom: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pop-in 0.7s;
}
.feature-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px #ffa50044;
}
.feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}
.feature-card h3 {
  margin: 0.2rem 0 0.5rem 0;
  color: #FFA500;
}

.example-section {
  text-align: center;
}
.example-section .discord-embed {
  margin: 1.5rem auto 0 auto;
  max-width: 400px;
}
.example-section .discord-embed .embed-header .bot-avatar.small {
  width: 28px;
  height: 28px;
  margin-right: 0.7rem;
  border-width: 1.5px;
}

.updates-section h2, .faq-section h2, .features-section h2, .example-section h2 {
  color: #FFA500;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.changelog {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 650px;
}
.changelog li {
  background: #2f3136;
  border-left: 5px solid #FFA500;
  border-radius: 8px;
  margin-bottom: 1.2rem;
  padding: 1rem 1.2rem;
  box-shadow: 0 2px 12px #0004;
  animation: pop-in 0.7s;
}
.changelog-date {
  color: #FFA500;
  font-weight: bold;
  margin-right: 0.7rem;
}
.changelog-title {
  font-weight: bold;
  margin-right: 0.5rem;
}
.changelog-desc {
  display: block;
  margin-top: 0.2rem;
  color: #fff;
  opacity: 0.88;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 1rem;
}
.faq-question {
  width: 100%;
  background: #2f3136;
  border: none;
  color: #FFA500;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px #0003;
  text-align: left;
}
.faq-question:hover {
  background: #ffa50022;
}
.faq-answer {
  background: #23272a;
  border-left: 4px solid #FFA500;
  border-radius: 0 0 6px 6px;
  padding: 0.7rem 1.2rem;
  color: #fff;
  font-size: 1rem;
  display: none;
  animation: fade-in 0.3s;
}

.discord-footer {
  background: #23272a;
  padding: 1.3rem 1rem 1.3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #FFA50033;
  z-index: 2;
  position: relative;
  font-size: 1rem;
  gap: 0.7rem;
}

.footer-links {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  margin-bottom: 0.2rem;
}

.footer-links button,
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: #FFA500;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(255,165,0,0.13);
  text-decoration: none;
}

.footer-links button:hover,
.footer-links a:hover {
  background: #ffb733;
  cursor: pointer;
  color: #fff;
}

.footer-discord-link .discord-icon {
  margin-right: 0.4em;
}

.footer-meta {
  color: #FFA500;
  font-size: 0.97rem;
  opacity: 0.92;
  letter-spacing: 0.2px;
  text-align: center;
}

.discord-embed {
  background: #2f3136;
  border-left: 5px solid #FFA500;
  border-radius: 8px;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.37);
  max-width: 420px;
  width: 100%;
  margin: 2rem;
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  animation: pop-in 0.6s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes pop-in {
  0% { transform: scale(0.85) translateY(30px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.embed-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.7rem;
}

.bot-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-right: 1rem;
  border: 2px solid #FFA500;
  background: #fff;
}

.embed-title {
  font-weight: bold;
  font-size: 1.3rem;
}

.embed-badge {
  background: #FFA500;
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 4px;
  padding: 0.1rem 0.5rem;
  margin-left: 0.6rem;
  vertical-align: middle;
}

.embed-description {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

.embed-highlight {
  color: #FFA500;
  font-weight: bold;
}

.embed-fields {
  margin-bottom: 1rem;
}

.embed-field {
  margin-bottom: 0.5rem;
}

.field-title {
  color: #FFA500;
  font-weight: bold;
  margin-right: 0.5rem;
}

.embed-footer {
  border-top: 1px solid #FFA50033;
  margin-top: 1rem;
  padding-top: 0.5rem;
  font-size: 0.95rem;
  color: #FFA500;
  display: flex;
  justify-content: flex-end;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30,30,30,0.7);
  z-index: 1000;
  animation: fade-in 0.3s;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal {
  display: none;
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: #2f3136;
  border-radius: 8px;
  border-left: 5px solid #FFA500;
  width: 90%;
  max-width: 500px;
  z-index: 1001;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.37);
  animation: pop-in 0.5s cubic-bezier(.68,-0.55,.27,1.55);
}

.modal-content {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  color: #fff;
}

.modal-content h2 {
  color: #FFA500;
  margin-top: 0;
}

.close-modal {
  background: #FFA500;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.4rem 1.2rem;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 1rem;
  float: right;
  transition: background 0.2s, box-shadow 0.2s;
}

@media (max-width: 900px) {
  .features-list {
    flex-direction: column;
    align-items: center;
  }
  .feature-card {
    width: 95%;
  }
}

@media (max-width: 600px) {
  header {
    padding: 2rem 0.2rem 1rem 0.2rem;
  }
  .hero-logo {
    width: 70px;
    height: 70px;
  }
  h1 {
    font-size: 1.7rem;
  }
  main {
    padding: 0 0.2rem 2rem 0.2rem;
  }
  .feature-card {
    padding: 1rem 0.6rem 1rem 0.6rem;
  }
  .changelog li {
    padding: 0.8rem 0.5rem;
  }
}
