body {
  font-family: sans-serif;
  margin: 0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

header {
  background-color: #f2f2f2;
  padding: 20px 0;
}

header h1 {
  margin: 0;
}

header h1 a {
  text-decoration: none;
  color: #333;
}

/* Header content layout */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.header-discord {
  display: flex;
  align-items: center;
}

.header-discord-btn {
  display: inline-block;
  background: #5865F2;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(88, 101, 242, 0.3);
}

.header-discord-btn:hover {
  background: #4752C4;
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(88, 101, 242, 0.4);
  text-decoration: none;
  color: white;
}

main {
  padding: 20px 0;
}

.act {
  margin-bottom: 40px;
}

.act h2 {
  margin-top: 0;
}

.act h2 a {
  text-decoration: none;
  color: #333;
}

.act ul {
  list-style: none;
  padding: 0;
}

.act li {
  margin-bottom: 10px;
}

.act li a {
  text-decoration: none;
  color: #333;
}

/* Simple Download Section */
.download-section {
  text-align: center;
  margin: 20px 0;
}

.download-section p {
  margin: 10px 0;
}

.download-link {
  color: #333;
  text-decoration: none;
  font-weight: normal;
  font-size: 1rem;
}

.download-link:hover {
  text-decoration: underline;
  color: #666;
}

.discord-link-simple {
  color: #333;
  text-decoration: none;
  font-weight: normal;
  font-size: 1rem;
}

.discord-link-simple:hover {
  text-decoration: underline;
  color: #666;
}

/* Disclaimer styling */
.disclaimer {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 20px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
}

.disclaimer strong {
  color: #856404;
}

.disclaimer a {
  color: #856404;
  text-decoration: underline;
}

.disclaimer a:hover {
  color: #533f03;
}

/* Floating download button */
.floating-download {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #ff6b6b;
  color: white;
  text-decoration: none;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
  transition: all 0.3s ease;
  border: 3px solid white;
}

.floating-btn:hover {
  background: #ff5252;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 107, 107, 0.5);
  text-decoration: none;
  color: white;
}

.floating-btn:active {
  transform: scale(0.95);
}

/* Responsive design */
@media (max-width: 600px) {
  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .download-section {
    margin: 15px 0;
  }

  .download-section p {
    margin: 8px 0;
  }

  .floating-download {
    bottom: 15px;
    right: 15px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* Hide floating button on larger screens where main download section is visible */
@media (min-width: 768px) {
  .floating-download {
    display: none;
  }
}
