/* Xzen-Slop-Filter.css.css */

/* Global Reset & Theme */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: #000;
  color: #f00;
  font-family: sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Back Button */
.carousel-header {
  padding: 1rem 2rem;
}
.back-button {
  color: #f00;
  background: #111;
  padding: 0.5rem 1rem;
  border: 2px solid #f00;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.1s ease;
}
.back-button:hover {
  background: #000;
  border-color: #c00;
}
.back-button:active {
  transform: scale(0.9);
}

/* Main Carousel Layout */
.carousel-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
}

/* Logo + Title Row */
.gallery-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
}
.logo-preview {
  width: 150px;
  aspect-ratio: 1 / 1;
  background: #111;
  border: 2px solid #f00;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.carousel-title {
  font-size: 1.75rem;
  color: #f00;
  margin: 0;
}

/* Carousel Box */
.carousel-container {
  position: relative;
  width: 80%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  background: #111;
  border: 2px solid #f00;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #f00;
  font-size: 2rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.1s ease;
}
.carousel-arrow.left { left: 1rem; }
.carousel-arrow.right { right: 1rem; }
.carousel-arrow:hover {
  background: rgba(17, 17, 17, 0.8);
}
.carousel-arrow:active {
  transform: translateY(-50%) scale(0.9);
}

/* Description */
.carousel-description {
  margin-bottom: 1.5rem;
  width: 80%;
  max-width: 800px;
  padding: 1rem;
  background: #111;
  border: 2px solid #f00;
  border-radius: 4px;
}

/* System Requirements */
.system-requirements {
  margin-bottom: 1.5rem;
  width: 80%;
  max-width: 800px;
  padding: 1rem;
  background: #111;
  border: 2px solid #f00;
  border-radius: 4px;
}
.system-requirements h3 {
  margin-bottom: 0.5rem;
}
.system-requirements ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}
.system-requirements li {
  margin-bottom: 0.5rem;
}

/* Download Button (inline bottom-left) */
.download-button {
  align-self: flex-start;       /* now on the left */
  margin-top: 1rem;
  background: #111;
  color: #f00;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  font-size: 1.2rem;
  border: 2px solid #f00;
  border-radius: 4px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.1s ease;
}
.download-button:hover {
  background: #000;
  border-color: #c00;
}
.download-button:active {
  transform: scale(0.9);
}

/* Responsive */
@media (max-width: 600px) {
  .carousel-main {
    padding: 1rem;
  }
  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .logo-preview {
    width: 100px;
    margin-bottom: 0.5rem;
  }
  .carousel-title {
    font-size: 1.5rem;
  }
  .carousel-container {
    width: 100%;
  }
  .carousel-arrow {
    font-size: 1.5rem;
    padding: 0.4rem;
  }
  .carousel-description,
  .system-requirements {
    width: 100%;
    padding: 0.75rem;
  }
  .download-button {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }
}
