*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body,
.btn,
.simple-container {
  width: 100%;
  height: 100%;
  font-family: "Source Sans Pro", sans-serif;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  overflow-x: hidden;
  flex-direction: column;
}

body {
  background: rgb(30, 30, 40);
}

img,
a {
  -webkit-user-drag: none;
}

#content {
  overflow-y: auto;
  height: 100%;
  padding-top: 0;
}

.page {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateX(50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.page.active {
  opacity: 1;
  transform: translateX(0);
}

.main-content {
  margin: 0;
  padding: 0;
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(29, 31, 41, 0.75);
  color: white;
  z-index: 1001;
  border-radius: 0;
  padding: 12px 24px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  height: 56px;
}

.nav-logo {
  margin: 0;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  display: inline-block;
}

.nav-logo img {
  height: 45px;
  display: block;
}

.nav-logo:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.top-nav-list {
  display: flex;
  justify-content: flex-start;
  list-style: none;
  margin: 0 0 0 30px;
  padding: 0;
  flex-grow: 1;
}

.top-nav-item {
  margin: 0 12px;
  position: relative;
  padding: 0;
}

.top-nav-item:not(:last-child)::after {
  content: none;
}

.top-nav-link {
  display: inline-block;
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 6px;
  font-size: 1rem;
  letter-spacing: 0.6px;
  position: relative;
  font-weight: 500;
}

.top-nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #ffffff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  opacity: 0;
}

.top-nav-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.top-nav-link:hover::after {
  width: 70%;
  opacity: 1;
}

.top-nav-link.active {
  color: #ffffff;
  font-weight: 600;
}

.top-nav-link.active::after {
  width: 70%;
  opacity: 1;
}

.page-container,
.fullpage-container {
  width: 100%;
  border-radius: 0;
  display: flex;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background-color: rgba(30, 30, 40, 0.7);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.page-container {
  position: relative;
  height: auto;
  min-height: 400px;
  align-items: center;
  justify-content: flex-end;
  margin: 80px auto 40px auto;
  width: auto;
  max-width: 1200px;
  border-radius: 12px;
  display: flex;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
}

.fullpage-container {
  height: 100vh;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 70px 20px 70px 20px;
  position: relative;
}

.fullpage-container:last-child {
  margin-bottom: 0;
}

.page-content,
.fullpage-content {
  width: 40%;
  text-align: center;
  position: relative;
  margin: 8%;
  padding: 10px 0 20px 0;
  z-index: 3;
  animation: fadeIn 0.8s ease-in-out;
}

.text-center {
  text-align: center;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  padding-top: 20px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Source Sans Pro Light", sans-serif;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  padding-top: 10px;
}

.primary-btn {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  padding: 12px 24px;
  font-size: 1.1rem;
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 24px;
  font-size: 1.1rem;
}

.hero-logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.about-section {
  background-color: rgb(30, 30, 40);
  padding: 60px 0;
}

.about-container {
  margin: 0 auto;
  padding: 0 0px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  color: white;
  padding-top: 40px;
  margin-top: 20px;
}

.section-text {
  font-size: 1.2rem;
  line-height: 1.8;
  font-family: "Source Sans Pro Light", sans-serif;
  margin-bottom: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0px;
  margin-bottom: 50px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.cta-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.community-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0 auto 60px;
  padding: 0 20px;
  justify-content: center;
  align-items: flex-start;
}

.community-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px 30px 40px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  height: 500px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 400px;
  flex: 0 1 400px;
}

.community-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

.community-card.discord {
  background: linear-gradient(
    to bottom,
    rgba(120, 140, 200, 0.75),
    rgba(25, 25, 50, 0.75)
  );
}

.community-card.youtube {
  background: linear-gradient(
    to bottom,
    rgba(255, 0, 25, 0.75),
    rgba(75, 10, 25, 0.75)
  );
}

.community-card.roblox {
  background: linear-gradient(
    to bottom,
    rgba(50, 50, 225, 0.75),
    rgba(25, 25, 75, 0.75)
  );
}

.community-card-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  margin-top: 16px;
}

.community-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.community-platform-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: white;
  position: relative;
  z-index: 2;
}

.community-platform-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.mods-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 40px auto;
  padding: 0 20px;
  justify-content: center;
  align-items: flex-start;
}

.mod-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  max-width: 400px;
  width: 100%;
  flex: 0 1 400px;
  height: 500px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.mod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.mod-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.mod-card-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  color: white;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
}

.mod-logo {
  width: 250px;
  height: 80px;
  margin-bottom: 15px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mod-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.mod-title {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.mod-tagline {
  font-size: 1.2rem;
  margin-bottom: 15px;
  margin-top: 10px;
  opacity: 0.9;
  font-weight: 600;
  max-width: 90%;
}

.mod-description {
  margin-bottom: 25px;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.mod-actions {
  display: flex;
  gap: 15px;
  height: 45px;
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-element {
  z-index: 3;
  position: relative;
}

.page-content p,
.fullpage-content p,
.page-content li,
.fullpage-content li,
.page-content h1,
.fullpage-content h1,
.page-content h2,
.fullpage-content h2,
.page-content h3,
.fullpage-content h3,
.page-content h4,
.fullpage-content h4,
.page-content h5,
.fullpage-content h5,
.page-content h6,
.fullpage-content h6 {
  margin-bottom: 15px;
}

.page-content .btn,
.fullpage-content .btn {
  margin-top: 15px;
}

.fullpage-container.centered {
  justify-content: center;
  align-items: center;
}

.fullpage-container.centered .fullpage-content {
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.fullpage-container.centered .logo-block {
  display: none;
}

.page-container[style*="background-image"]::after,
.fullpage-container[style*="background-image"]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(30, 30, 40, 0) 0%,
    rgba(30, 30, 40, 0) 100%
  );
  z-index: -10;
}

.page-container[style*="background-image"],
.fullpage-container[style*="background-image"] {
  color: #fff;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 1);
}

.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  margin: 5px 5;
}

.btn {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  padding: 0 28px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: white;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  margin: 8px 4px;
  width: auto;
  letter-spacing: normal;
  position: relative;
  overflow: hidden;
  z-index: 5;
  height: 45px;
  line-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.4s ease;
}

.btn:hover {
  background: linear-gradient(135deg, #3ee884 0%, #2ecc71 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  transform: translateY(1px);
  background: linear-gradient(135deg, #1a4122 0%, #1d3a20 100%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.simple-container {
  background: rgba(200, 200, 225, 0.5);
  border-radius: 8px;
  padding: 28px;
  margin: 20px auto;
  max-width: 550px;
  width: 80%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  color: #333333 !important;
  text-shadow: none !important;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.simple-container h1,
.simple-container h2,
.simple-container h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 700;
  color: rgb(25, 25, 35);
  letter-spacing: 0.5px;
}

.simple-container p {
  margin: 14px 0;
  line-height: 1.6;
  color: rgb(30, 30, 40);
  font-size: 1.05rem;
}

.logo-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  pointer-events: none;
  animation: slideIn 1s ease-out;
  z-index: 4;
}

@keyframes slideIn {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.logo-block img {
  max-width: 500px;
  height: auto;
  object-fit: contain;
  max-height: 85%;
  z-index: 4;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
  transition: all 0.5s ease;
  border: none;
}

.logo-block:hover img {
  transform: scale(1.05) translateY(-5px);
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.5));
}

.logo-block .subtitle {
  margin-top: -35px;
  font-size: 24px;
  font-family: "Source Sans Pro Light", sans-serif;
  background-color: rgba(25, 25, 35, 0);
  padding: 26px 16px 10px;
  border-radius: 8px;
  font-weight: 500;
  z-index: 3;
  letter-spacing: 0.8px;
  transition: all 0.4s ease;
  z-index: 4;
  text-shadow: 0 0px 4px rgba(0, 0, 0, 1);
}

#footer {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  color: white;
  text-align: center;
  transform: translateY(0);
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  background: linear-gradient(
    180deg,
    rgba(10, 10, 20, 0.5) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
  padding: 20px 0;
  z-index: 1001;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  max-height: 128px;
  font-family: "Source Sans Pro Light", sans-serif;
}

#footer.hidden {
  transform: translateY(100%);
  opacity: 0;
}

#footer .footer-links {
  font-family: "Source Sans Pro", sans-serif;
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 8px;
}

#footer .footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  padding: 6px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

#footer .footer-links a:hover {
  color: white;
  background: rgba(46, 109, 204, 0.2);
  transform: translateY(-2px);
}

#footer .footer-info {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.gallery-page {
  display: block;
  padding: 30px 40px;
  background: rgb(30, 30, 40);
  min-height: 60vh;
  margin: 80px auto 40px auto;
  max-width: 1200px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  align-items: start;
  margin: 30px auto;
}

.gallery-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  aspect-ratio: 4 / 3;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fullpage-container.centered {
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgba(30, 30, 40, 1);
}

.fullpage-container.centered h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 5;
}

.fullpage-container.centered p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .page-content {
    padding: 16px;
  }
  .fullpage-content,
  .page-content {
    width: 80%;
    margin: 5%;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .fullpage-content,
  .page-content {
    width: 90%;
    margin: 5%;
  }
  .top-nav {
    padding: 8px;
  }
  .top-nav-link {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
}

.faq-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: rgb(30, 30, 40);
  color: white;
}

.faq-header-section {
  background-color: rgba(30, 30, 40, 0.98);
  background-image: url("images/backgrounds/space.png");
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
  color: white;
  text-align: center;
  position: relative;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.faq-header-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(30, 30, 40, 0.7), rgba(30, 30, 40, 0.9));
  z-index: 1;
}

.faq-header-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-logo {
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.faq-header-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.faq-header-content p {
  margin: 14px 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.search-container {
  position: relative;
  max-width: 500px;
  margin: 20px auto 0;
  z-index: 2;
}

.faq-search {
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.2);
  color: white;
  font-size: 1rem;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.faq-search::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.faq-search:focus {
  background-color: rgba(0, 0, 0, 0.3);
  outline: none;
  box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.4), 0 2px 12px rgba(0, 0, 0, 0.3);
  border-color: rgba(46, 204, 113, 0.5);
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.faq-list {
  border-radius: 8px;
  backdrop-filter: blur(8px);
  margin-bottom: 100px;
}

.faq-item {
  background-color: rgba(40, 40, 50, 0.5);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 16px 0;
  border-radius: 4px;
  overflow: hidden;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item:hover {
  background-color: rgba(46, 204, 113, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s ease;
  background-color: rgba(33, 35, 48, 0);
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.faq-question:hover {
  background-color: rgba(46, 204, 113, 0.15);
}

.faq-question span {
  position: relative;
  z-index: 1;
}

.faq-item.active .faq-question {
  background-color: rgba(46, 204, 113, 0.2);
  border-left: 4px solid rgba(46, 204, 113, 0.8);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease,
    background-color 0.3s ease;
  padding: 0 20px;
  background-color: rgba(0, 0, 0, 0.25);
}

.faq-answer.show {
  max-height: 500px;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-answer p {
  margin: 14px 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.no-results-message {
  padding: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  margin-top: 20px;
}

.help-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: rgb(30, 30, 40);
  color: #ffffff;
}

.help-header-section {
  background-color: #2a363b;
  background-image: url("images/backgrounds/space.png");
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  color: white;
  text-align: center;
  position: relative;
}

.help-header-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.help-header-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.help-logo {
  height: 60px;
  margin-bottom: 20px;
}

.help-header-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.help-header-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.help-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.help-card {
  background-color: rgb(40, 41, 56);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.help-card-header {
  background-color: rgb(50, 53, 70);
  color: white;
  padding: 20px;
}

.help-card-header h2 {
  margin: 0;
  font-size: 1.5rem;
}

.help-card-body {
  padding: 20px;
}

.contact-option {
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding: 15px;
  background-color: rgb(30, 30, 40);
  border-radius: 8px;
}

.contact-icon {
  font-size: 2rem;
  margin-right: 20px;
}

.contact-details h4 {
  margin: 0 0 5px 0;
}

.contact-details p {
  margin: 0;
  color: #bebebe;
}

.help-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .faq-header-content h1,
  .help-header-content h1 {
    font-size: 2rem;
  }

  .help-content {
    grid-template-columns: 1fr;
  }
}

.image-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 30, 45, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  opacity: 0;
  transition: all 0.3s ease;
  display: none;
}

.image-backdrop.active {
  display: block;
  opacity: 1;
}

.fullscreen-image {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  max-width: 95vw !important;
  max-height: 95vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  z-index: 2001 !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6) !important;
  border-radius: 6px !important;
  cursor: zoom-out !important;
  transition: left 260ms ease, top 260ms ease, width 260ms ease,
    height 260ms ease, transform 260ms ease, box-shadow 180ms ease,
    border-radius 180ms ease;
}

.gallery-item img {
  cursor: zoom-in;
}

.archive-page {
  display: block;
  padding: 30px 40px;
  background: rgba(13, 14, 19, 0.5);
  min-height: 60vh;
  margin: 80px auto 40px auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 100%;
  overflow-x: hidden;
}

.archive-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 12px;
  border-radius: 10px;
}

.archive-toolbar .toolbar-left,
.archive-toolbar .toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.archive-input,
.archive-select {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.2);
  color: white;
  font-size: 0.95rem;
  outline: none;
}

.archive-breadcrumb {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
}

@media (max-width: 1024px) {
  .archive-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }
}

.archive-tile {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  width: 100%;
}

.archive-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.tile-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tile-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  align-items: center;
}

.tile-name {
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tile-info {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.tile-actions {
  margin-left: 0;
  margin-top: 8px;
  display: flex;
  gap: 6px;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}

.icon-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.has-tooltip {
  position: relative;
}
.has-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -28px;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 12px;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.2s ease;
  pointer-events: none;
}
.has-tooltip:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.archive-pager {
  margin-top: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
}

.site-version {
  position: fixed;
  bottom: 0px;
  right: 0px;
  padding: 6px 12px;
  font-size: 16px;
  z-index: 1002;
  font-family: "Source Sans Pro Light", sans-serif;
  color: rgba(255, 255, 255, 0.5);
}

.update-description {
  position: fixed;
  bottom: 32px;
  right: 8px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  max-width: 300px;
  display: none;
  z-index: 1002;
  backdrop-filter: blur(8px);
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-version:hover .update-description {
  transform: translateY(0);
  opacity: 1;
  display: block;
}

.update-description ul {
  margin: 0;
  margin-bottom: 8px;
  padding-left: 2px;
  list-style: disc inside;
}

.update-description h3 {
  font-family: "Source Sans Pro", sans-serif;
  margin: 8px 0;
  padding-left: 2px;
  list-style: disc inside;
}
