/* === Flex Utilities === */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-3 {
  gap: 0.75rem;
}

/* === Scrollable Container with Snap === */
.scroll-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.scroll-container main,
.scroll-container footer,
.scroll-container header,
.scroll-snap-start {
  scroll-snap-align: start;
}

/* === Background and Top Bar Styling === */
.main-background-image {
  background-image: url("../images/main-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.top-bar {
  position: relative;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background-color: rgba(17, 24, 39, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  z-index: 1000;
}

.top-bar .footer-item__logo {
  margin-bottom: 0 !important;
}

#canvas-container {
  position: fixed; /* Fixes the canvas within the viewport */
  top: 50%; /* Centers vertically */
  left: 50%; /* Centers horizontally */
  transform: translate(-50%, -50%); /* Adjusts to perfectly center */
  width: 300px; /* Set an appropriate width */
  height: 300px; /* Set an appropriate height */
  pointer-events: none; /* Allows interactions with underlying elements unless specifically targeted */
  z-index: 10; /* Ensures the canvas is above other elements */
}

/* === Button Styles === */
.btn-primary,
.btn-secondary, .btn-three {
  display: flex;
  align-items: center;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  transition: transform 0.3s;
  color: white;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #3b82f6 0%, #2dd4bf 100%);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-three {
  background: linear-gradient(135deg, #d823b3 0%,  #ee02f5 100%);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-three:hover {
  transform: scale(1.05);
  color: white;
  filter: brightness(1.2);
}

/* === Gradient Text === */
.text-gradient {
  background: linear-gradient(135deg, #0073b5, #6a3fa7, #d53e92);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.cube-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), rgba(255, 0, 150, 0.1), rgba(0, 0, 0, 0));
  opacity: 0.9;
  filter: blur(30px);
  pointer-events: none;
  animation:
    glow-pulse 2s ease-in-out infinite,
    color-change 6s linear infinite;
}

@keyframes glow-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes color-change {
  0% {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), rgba(255, 0, 150, 0.1), rgba(0, 0, 0, 0));
  }
  33% {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), rgba(0, 150, 255, 0.1), rgba(0, 0, 0, 0));
  }
  66% {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), rgba(0, 255, 150, 0.1), rgba(0, 0, 0, 0));
  }
  100% {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), rgba(255, 0, 150, 0.1), rgba(0, 0, 0, 0));
  }
}

/* === Modal Styling === */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-dialog {
  width: 100%;
  max-width: 1140px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.modal-content {
  flex: 1;
  background: var(--dark-bg);
  border-radius: 8px;
  overflow-y: auto;
}

/* === Prompt Details Styling === */
.prompt-details__thumb {
  max-width: 100%;
  margin: 0 auto;
}

.prompt-details__thumb .prompt-details__item img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
}

.prompt-details-content .title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

/* === Slick Slider Customization === */
.slick-slide {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slick-current {
  opacity: 1;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.slick-prev {
  left: 20px;
}

.slick-next {
  right: 20px;
}

.slick-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.slick-dots li button {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.slick-dots li.slick-active button {
  background: #d460ab;
}

.prompt-description {
  padding-inline: 10px;
}

/* === Scrollbar Styling === */
.prompt-description::-webkit-scrollbar {
  width: 6px;
}
.prompt-description::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}
.prompt-description::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
}
.prompt-description::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modal-top-rated-hidden {
  display: none;
}

.modal-top-rated-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
}

.modal-top-rated-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  pointer-events: all;
}

.modal-top-rated-window {
  position: fixed;
  top: 25%;
  left: 50%;
  width: 95%;
  transform: translateX(-50%);
  width: auto;
  max-width: 90%;
  max-height: 65vh;
  overflow: auto;
  background-color: #1f2937;
  border-radius: 0.5rem;
}

.modal-top-rated-content {
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: max-content;
}

.modal-top-rated-table {
  width: 100%;
}

.modal-top-rated-table-header {
  background-color: rgba(30, 41, 59, 0.5);
}

.modal-top-rated-table-cell {
  padding: 0.5rem 0.75rem;
}

.modal-top-rated-table th {
  text-align: left;
  padding: 0.5rem 0.75rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #94a3b8;
  font-weight: 600;
}

.modal-top-rated-table tbody tr {
  border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.modal-top-rated-table tbody tr:hover {
  background-color: rgba(30, 41, 59, 0.3);
  transition: background-color 0.2s;
}

.modal-top-rated-select {
  background-color: rgba(30, 41, 59, 0.8);
  color: white;
  font-size: 0.875rem;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 0.375rem;
  padding: 0.375rem 0.75rem;
}

.modal-top-rated-select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.4);
}

.modal-top-rated-close {
  color: #94a3b8;
  transition: color 0.2s;
}

.modal-top-rated-close:hover {
  color: white;
}

.modal-top-rated-table tbody tr:hover {
  background-color: rgba(30, 41, 59, 0.3);
  transition: background-color 0.2s;
}

.sort-header {
  position: relative;
  user-select: none;
}

.sort-header:hover {
  background-color: rgba(30, 41, 59, 0.7);
}

.sort-arrow {
  display: inline-block;
  transition: transform 0.2s;
}

@media (max-width: 768px) {
  .modal-top-rated-hide-mobile {
    display: none;
  }
}

/* === Responsive Styles === */
@media (max-width: 1200px) {
  .modal-dialog {
    max-width: 95%;
  }
}

@media (max-width: 768px) {
  .top-bar {
    height: 56px;
    padding: 0 16px;
  }

  .footer-item__logo img {
    height: 32px;
  }

  .buttons-container span {
    display: none;
  }
  .buttons-container a {
    font-size: 0.5rem;
    padding: 3px 6px;
  }
  .buttons-container i {
    font-size: 1.5rem;
    margin-right: 0;
  }

  .prompt-details-content .title {
    font-size: 1.5rem;
  }

  .prompt-details__thumb .prompt-details__item img {
    max-height: 300px;
  }

  .modal-dialog {
    padding: 15px;
  }

  .modal-content {
    padding: 15px;
  }

  .slick-prev,
  .slick-next {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 600px) {
  .buttons-container {
    gap: 0.5rem !important;
  }

  .buttons-container span {
    display: none;
  }
  .buttons-container i {
    font-size: 1rem;
    margin-right: 0;
  }

  .footer-item__logo img {
    width: 70px !important;
  }

  .buttons-container a {
    font-size: 0.5rem;
    padding: 3px 6px;
  }
}

@media (max-width: 480px) {
  .modal-dialog,
  .modal-content {
    padding: 10px;
  }
  .buttons-container i {
    font-size: 0.7rem;
    margin-right: 0;
  }
  .buttons-container a {
    font-size: 0.5rem;
    padding: 1px 1px;
  }
  #showTopRatedBtn {
    gap: 0.5rem !important;
    font-size: 0.7rem !important;
    padding: 5px !important;
  }
}

/* Layout & Containers */
.h-screen {
  height: 100vh;
}

.min-h-screen {
  min-height: 100vh;
}

.scroll-container {
  position: relative;
  width: 100%;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-auto {
  overflow-x: auto;
}

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

/* Spacing */
.p-4 {
  padding: 1rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pr-4 {
  padding-right: 1rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}
.mr-8 {
  margin-right: 2rem;
}
.mr-16 {
  margin-right: 4rem;
}

/* Heights */
.h-5 {
  height: 1.25rem;
}

.h-8 {
  height: 2rem;
}

.h-10 {
  height: 2.5rem;
}

.h-16 {
  height: 4rem;
}

/* Widths */
.w-5 {
  width: 1.25rem;
}

.w-8 {
  width: 2rem;
}

/* Typography */
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.font-semibold {
  font-weight: 600;
}

/* Colors */
.text-white {
  color: #ffffff;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-purple-400 {
  color: #a78bfa;
}

.text-purple-500 {
  color: #8b5cf6;
}

.text-red-400 {
  color: #f87171;
}

.text-red-500 {
  color: #ef4444;
}

.text-yellow-500 {
  color: #eab308;
}

/* Backgrounds */
.bg-gray-800 {
  background-color: #1f2937;
}

.bg-slate-800\/80 {
  background-color: rgba(30, 41, 59, 0.8);
}

.bg-slate-800\/30 {
  background-color: rgba(30, 41, 59, 0.3);
}

.bg-purple-500\/20 {
  background-color: rgba(139, 92, 246, 0.2);
}

/* Borders */
.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.border-t-2 {
  border-top-width: 2px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

/* Transitions */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Transforms */
.hover\:transform:hover {
  transform: translateX(0) translateY(0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

/* Cursors */
.cursor-pointer {
  cursor: pointer;
}

/* Animations */
.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Modal Specific Styles */
.modal-top-rated-container {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-top-rated-hidden {
  display: none;
}

.modal-top-rated-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-top-rated-content {
  position: relative;
  z-index: 1;
}

/* Table Styles */
.modal-top-rated-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.modal-top-rated-table-header th {
  padding: 0.75rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.modal-top-rated-table-cell {
  padding: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive Utilities */
@media (min-width: 768px) {
  .md\:h-8 {
    height: 2rem;
  }

  .md\:h-14 {
    height: 3.5rem;
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .md\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .md\:py-1\.5 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .md\:pr-2 {
    padding-right: 0.5rem;
  }
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
  .modal-top-rated-hide-mobile {
    display: none;
  }
}

/* Base Layout & Positioning */
.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.relative {
  position: relative;
}

/* Flexbox & Grid */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-1 {
  gap: 0.25rem;
}

/* Spacing */
.p-4 {
  padding: 1rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

/* Sizing */
.h-12 {
  height: 3rem;
}

.w-12 {
  width: 3rem;
}

.w-full {
  width: 100%;
}

.h-96 {
  height: 24rem;
}

.max-w-2xl {
  max-width: 42rem;
}

/* Typography */
.text-center {
  text-align: center;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.font-bold {
  font-weight: 700;
}

/* Colors */
.text-white {
  color: #ffffff;
}

.text-gray-300 {
  color: #d1d5db;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-yellow-500 {
  color: #eab308;
}

.text-transparent {
  color: transparent;
}

/* Backgrounds */
.bg-slate-900 {
  background-color: #0f172a;
}

.bg-slate-800\/30 {
  background-color: rgba(30, 41, 59, 0.3);
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-slate-900 {
  --tw-gradient-from: #0f172a;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(15 23 42 / 0));
}

.from-blue-600 {
  --tw-gradient-from: #2563eb;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(37 99 235 / 0));
}

.to-pink-600 {
  --tw-gradient-to: #db2777;
}

.via-purple-900 {
  --tw-gradient-stops: var(--tw-gradient-from), #581c87, var(--tw-gradient-to, rgb(88 28 135 / 0));
}

/* Borders */
.border-t-2 {
  border-top-width: 2px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-white {
  border-color: #ffffff;
}

.rounded-full {
  border-radius: 9999px;
}

/* Effects & Animations */
.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-in-delayed {
  animation: fadeIn 0.5s ease-in 0.3s forwards;
  opacity: 0;
}

/* Transitions */
.transition-colors {
  transition-property: color, background-color, border-color;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cursors */
.cursor-pointer {
  cursor: pointer;
}

/* Z-index */
.z-50 {
  z-index: 50;
}

/* Container */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .md\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }

  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

/* Hide on Mobile */
@media (max-width: 640px) {
  .modal-top-rated-hide-mobile {
    display: none;
  }
}

/* Hover Effects */
.hover\:bg-slate-800\/30:hover {
  background-color: rgba(30, 41, 59, 0.3);
}

/* Modal Container Structure */
.modal-prompt-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-color: #1e293b;
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 0.75rem;
}

/* Modal Slider */
.modal-prompt-slider {
  position: relative;
  width: 100%;
}
.slick-initialized.slick-slider .slick-slide {
  padding: 0;
}

.single-prompt-slider {
  position: relative;
  width: 100%;
}

.prompt-details__item {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  border-radius: 0;
}

.prompt-details__item img, .prompt-details__item video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Modal Body */
.modal-prompt-body {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
}

.prompt-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* Modal Footer */
.modal-prompt-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.2);
  margin-top: 10px;
}
.modal-prompt-footer > div {
  flex-wrap: wrap;
}

/* Flexbox Utilities */
.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}
.justify-content-end {
  justify-content: end;
}

.align-items-center {
  align-items: center;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.btn--outline-base {
  background: transparent;
  border: 2px solid #2563eb;
  color: #2563eb;
}

.btn--outline-base:hover {
  background: rgba(37, 99, 235, 0.1);
}

/* Slick Slider Customization */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-slide img {
  display: block;
  width: 100%;
}

/* Responsive Gallery Settings */
.prompt-details__gallery .slick-slide {
  padding: 0.25rem;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.prompt-details__gallery .slick-current {
  opacity: 1;
}

/* Responsive Breakpoints for Gallery */
@media (max-width: 1200px) {
  .prompt-details__gallery .slick-slide {
    width: 20%;
  }
  .nav-menu {
    padding-left: 10px !important;
  }
}

@media (max-width: 991px) {
  .prompt-details__gallery .slick-slide {
    width: 25%;
  }
}

@media (max-width: 768px) {
  .prompt-details__gallery .slick-slide {
    width: 33.333%;
  }
}

@media (max-width: 576px) {
  .prompt-details__gallery .slick-slide {
    width: 50%;
  }
}

/* Icon Styles */
.las {
  font-family: "Line Awesome Free";
  font-weight: 900;
}

.la-external-link-alt::before {
  content: "\f35d";
}

.la-random::before {
  content: "\f074";
}

.flex-grow-center {
  flex-grow: 1;
  align-items: center;
  justify-content: center;
}

.display-none {
  display: none;
}