/**
 * Failed to minify the file using clean-css v5.3.3. Serving the original version.
 * Original file: /gh/JBChangelogs/JailbreakChangelogs@2.0.18/styles/seasons.css
 *
 * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
 */
/* Dark Theme Styles */
[data-bs-theme="dark"] body {
  /* Main Colors */
  --common-bg-color: var(--background-light);
  --text-color: var(--text-body);
  --heading-color: var(--text-body);
  --subheading-color: var(--text-secondary);

  /* Button Colors */
  --button-primary-bg: var(--button-primary);
  --button-primary-text: var(--text-body);
  --button-primary-hover-bg: var(--background-dark);

  /* Keep unique color variables */
  --border-color: #ff6347;
  --season-rewards-hover-text: var(--text-secondary);

  /* Interaction Effects */
  --hover-bg-color: var(--hover-bg);
  --selection-bg: var(--accent-color);
  --selection-text: var(--text-body);
  --glow-color: 255, 165, 0; /* Glow effect color: Orange (RGB values) */
  --username-color: var(--text-secondary);

  /* Gray Scale */
  --gray-100: #333333;
  --gray-200: #444444;
  --gray-300: #555555;
  --gray-400: #666666;
  --gray-500: #777777;
  --gray-600: #888888;
  --gray-700: #999999;
  --gray-800: #aaaaaa;
  --gray-900: #bbbbbb;
}

/* Dark Theme Specific Styles */
[data-bs-theme="dark"] {
  /* Dropdown Menu Styles */
  .dropdown-menu {
    background-color: var(--gray-100);
    border-color: var(--gray-600);
  }

  /* Dropdown Item Color Override */
  .dropdown-menu .dropdown-item {
    color: #ffffff;
  }
}

/* Dropdown Menu Styles */
.dropdown-menu {
  margin-top: 0; /* Remove margin to align with the button */
  border: 1px solid; /* Define border once, specific colors in theme rules */
}

.dropdown-menu .dropdown-item {
  color: var(--text-color); /* Default text color */
}

/* Button Group Styles */
.button-group {
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-group .btn {
  margin: 0 5px; /* Add spacing between buttons */
}

/* Custom Dropdown Button Styles */
.custom-dropdown-btn {
  padding: 8px 46px;
  display: inline-block;
  min-width: 150px;
}
/* Global Styles */
html,
body {
  height: 100%;
  margin: 0;
}

body,
p,
span {
  color: var(--text-color);
}

/* Main Container Layout */
#main-container {
  display: flex;
  flex-direction: column;
}

#content {
  flex: 1;
  min-width: 0;
}

/* Scroll Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.btn-primary {
  background-color: var(
    --button-primary-bg
  ) !important; /* Primary button background */
  border-color: var(--button-primary-bg) !important; /* Primary button border */
  color: var(--button-primary-text) !important; /* Primary button text color */
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
  background-color: var(
    --button-primary-hover-bg
  ) !important; /* Hover state for primary button */
  border-color: var(
    --button-primary-hover-bg
  ) !important; /* Border color on hover */
}
/* Offcanvas Styling */
.offcanvas {
  color: var(--text-color); /* Text color */
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out; /* Smooth transitions */
}

.offcanvas-header {
  background-color: #212a31;
  color: var(--text-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
}

.offcanvas-title {
  font-weight: bold; /* Bold title */
  font-size: 1.25rem; /* Title font size */
}

.offcanvas-body {
  padding: 0.2rem; /* Padding for body */
  color: var(--text-color); /* Body text color */
  font-size: 1rem; /* Body font size */
  line-height: 1.5; /* Line height for readability */
  overflow-y: auto; /* Vertical scrolling */
}

/* Close Button Styles */
.btn-close {
  color: #ffffff; /* Close button text color */
}

/* Responsive Heading Styles */
.responsive-heading {
  font-size: 2.5rem; /* Large font size for headings */
}

/* Responsive Text Styles */
.responsive-text {
  font-size: 1rem; /* Standard font size for text */
}

/* Carousel Styles */
.carousel-item img {
  border-radius: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 50%;
  width: 25px;
  height: 25px;
}
.carousel-control-prev,
.carousel-control-next {
  width: 5%; /* Adjust the clickable area of the buttons */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 15px; /* Adjust this value to make the arrows smaller */
  height: 15px; /* Adjust this value to make the arrows smaller */
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.rewards-container {
  background: linear-gradient(
    to bottom,
    var(--button-primary),
    var(--background-light),
    var(--background-dark)
  );
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.rewards-title {
  text-align: center;
  font-family: "Luckiest Guy", Arial, sans-serif;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-weight: bold;
}
.rewards-list {
  list-style-type: none;
  padding: 0;
}
.reward-item {
  background-color: var(--background-dark);
  border-radius: 8px;
  margin-bottom: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 0.5s ease forwards;
  opacity: 0;
  animation-delay: calc(var(--animation-order) * 0.1s);
}
.reward-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.reward-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}
.reward-title {
  margin: 0;
  font-size: 1rem;
  color: var(--text-body);
}
.reward-badges {
  display: flex;
  gap: 5px;
}
.badge {
  font-size: 0.8rem;
}
.bonus-reward {
  background-color: #212a31;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Title Styles */
.season-title {
  border-bottom: 2px solid var(--heading-color);
  color: var(--heading-color);
  font-family: "Luckiest Guy", "Bangers", Arial, Helvetica, sans-serif;
}
.custom-prizes-title {
  border-bottom: 4px solid var(--subheading-color);
  font-size: 2.5rem;
  color: var(--subheading-color);
  font-family: "Luckiest Guy", "Bangers", Arial, Helvetica, sans-serif;
}

.season-description-container {
  background-color: #1a2228;
  border-radius: 0.75rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.season-description-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #124e66, #748d92);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 3px;
  border-radius: 0.75rem;
  pointer-events: none;
}

.season-description-body {
  padding: 2.5rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #e0e5e3;
  letter-spacing: 0.015em;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Dropdown button padding */
#seasonsDropdown {
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
}

/* Custom scrollbar styling for Webkit browsers (Chrome, Safari, etc.) */
#seasonList::-webkit-scrollbar {
  width: 8px;
}

#seasonList::-webkit-scrollbar-track {
  background: var(--gray-300);
  border-radius: 4px;
}

#seasonList::-webkit-scrollbar-thumb {
  background: var(--gray-600);
  border-radius: 4px;
}

#seasonList::-webkit-scrollbar-thumb:hover {
  background: var(--gray-700);
}

/* Dropdown menu padding */
#seasonList {
  padding: 0.5rem 0;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  max-height: 400px; /* Set maximum height */
  overflow-y: auto; /* Enable vertical scrolling */
  min-width: 400px; /* Increased from default */
  max-width: 90vw; /* Ensures it doesn't overflow on mobile */
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: var(--gray-600) var(--gray-300); /* For Firefox */
}

/* Dropdown items padding */
#seasonList .dropdown-item {
  padding: 0.75rem 1.25rem;
  white-space: normal; /* Allows text to wrap */
  word-wrap: break-word; /* Handles very long words */
  line-height: 1.4; /* Improves readability of wrapped text */
}

/* Hover state for dropdown items */
#seasonList .dropdown-item:hover {
  background-color: var(--hover-bg-color);
}

/* Add a subtle animation to the description container */
.season-description-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Add a subtle transition effect for smoother hover interactions */
.season-description-container,
.season-description-paragraph {
  transition: all 0.3s ease;
}

/* Enhance link styling within paragraphs */
.season-description-paragraph a {
  color: #8ecae6;
  text-decoration: none;
  border-bottom: 1px dotted #8ecae6;
  transition: all 0.2s ease;
}

.season-description-paragraph a:hover {
  color: #e0fbfc;
  border-bottom: 1px solid #e0fbfc;
}

/* Bonus Badge */
.bonus-badge {
  margin-right: 0.5rem;
}

.list-group-item {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 576px) {
  .season-rewards .badge {
    margin: 0 0.25rem;
  }

  .season-rewards .d-flex {
    flex-direction: row;
    flex-wrap: nowrap;
  }
  #seasonList {
    min-width: 300px;
    max-height: 350px; /* Slightly smaller on mobile */
  }
}
@media (max-width: 400px) {
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* Seasons Introduction Styles */
.seasons-intro {
  background: var(--bg-primary);
  border-radius: 8px; /* Reduced from 12px */
  padding: 1.5rem; /* Reduced from 2.5rem */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Smaller shadow */
  margin-bottom: 1.5rem; /* Reduced from 2rem */
  border: 1px solid var(--accent-color);
}

.seasons-intro .display-4 {
  color: var(--text-primary);
  font-family: "Luckiest Guy", sans-serif;
  margin-bottom: 1rem; /* Reduced from 1.5rem */
  font-size: 2rem; /* Reduced from 2.5rem */
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Reduced shadow */
  letter-spacing: 1px;
  border-bottom: 1px solid var(--text-primary); /* Thinner border */
}
.seasons-intro .lead {
  color: var(--text-primary);
  font-size: 1.15rem;
  line-height: 1.5; /* Reduced from 1.7 */
  margin-bottom: 1.5rem; /* Reduced from 2rem */
  text-align: center;
  max-width: 800px; /* Reduced from 900px */
  margin-left: auto;
  margin-right: auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(220px, 1fr)
  ); /* Reduced from 250px */
  gap: 1rem; /* Reduced from 1.5rem */
  margin-top: 1.5rem; /* Reduced from 2rem */
}
.feature-item {
  background: var(--bg-secondary);
  padding: 1.25rem; /* Reduced from 1.75rem */
  border-radius: 8px; /* Reduced from 10px */
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  border: 1px solid rgba(var(--accent-color-rgb), 0.2);
}

.feature-grid .feature-item i {
  color: var(--accent-color-light) !important;
}

.feature-item i {
  font-size: 1.75rem; /* Reduced from 2.25rem */
  margin-bottom: 1rem; /* Reduced from 1.25rem */
  color: var(--accent-color-light) !important;
}

.feature-item h5 {
  color: var(--text-primary);
  margin-bottom: 0.5rem; /* Reduced from 0.75rem */
  font-size: 1.1rem; /* Reduced from 1.25rem */
  font-weight: 600;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.9rem; /* Reduced from 0.95rem */
  margin: 0;
  line-height: 1.4; /* Reduced from 1.6 */
}

.seasons-intro .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.seasons-intro .feature-item {
  background: var(--bg-secondary);
  padding: 1.75rem;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  border: 1px solid rgba(var(--accent-color-rgb), 0.2);
}

.seasons-intro .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.seasons-intro .feature-item i {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  color: var(--accent-color);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.seasons-intro .feature-item h5 {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.seasons-intro .feature-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* Season Countdown Styles */
.season-countdown {
  background: var(--bg-secondary);
  padding: 1.25rem;
  border-radius: 8px;
  border: 1px solid var(--accent-color);
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.countdown-title {
  color: var(--text-primary);
  font-family: "Luckiest Guy", sans-serif;
  margin-bottom: 0.75rem; /* Reduced from 1rem */
  font-size: 1.25rem; /* Reduced from 1.5rem */
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem; /* Reduced from 1.5rem */
  margin-top: 0.75rem; /* Reduced from 1rem */
  flex: 1;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px; /* Reduced from 80px */
}

.countdown-item span {
  color: var(--text-primary);
  font-size: 1.75rem; /* Reduced from 2rem */
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

.countdown-item .countdown-label {
  color: var(--text-muted);
  font-size: 0.8rem; /* Reduced from 0.9rem */
  margin-top: 0.2rem; /* Reduced from 0.25rem */
}

.season-ended {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff6b6b;
  text-align: center;
  padding: 1rem;
  background-color: rgba(255, 107, 107, 0.1);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.season-ended i {
  font-size: 2rem;
  margin-right: 0.5rem;
}
.season-dates {
  background-color: rgba(18, 78, 102, 0.1);
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.season-dates p {
  margin-bottom: 0.25rem;
  color: var(--text-secondary);
}

.season-dates strong {
  color: var(--text-primary);
}

.countdowns-container {
  margin-top: 2rem;
}

.countdown-wrapper {
  height: 100%;
  display: flex;
}

.countdown-status {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .seasons-intro {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .seasons-intro .display-4 {
    font-size: 1.25rem; /* Further reduced for mobile */
    margin-bottom: 0.75rem;
  }

  .seasons-intro .lead {
    font-size: 0.875rem; /* Further reduced for mobile */
    line-height: 1.4;
    margin-bottom: 0.75rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem; /* Further reduced for mobile */
    margin-top: 0.75rem;
  }

  .feature-item {
    padding: 0.75rem; /* Further reduced for mobile */
  }

  .feature-item i {
    font-size: 1.25rem;
    margin-bottom: 0.375rem;
  }

  .feature-item h5 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
  }

  .feature-item p {
    font-size: 0.8rem;
    line-height: 1.3;
  }
  .countdown-timer {
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .countdown-item {
    min-width: 55px;
  }

  .countdown-item span {
    font-size: 1.25rem;
  }

  .countdown-item .countdown-label {
    font-size: 0.7rem;
    margin-top: 0.15rem;
  }

  .countdown-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .countdowns-container {
    margin-top: 1rem;
  }

  .countdown-wrapper {
    margin-bottom: 1rem;
  }
}

/* Very small screens */
@media (max-width: 400px) {
  .seasons-intro {
    padding: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .feature-item {
    padding: 0.625rem;
  }
  .countdown-timer {
    gap: 0.25rem;
  }

  .countdown-item {
    min-width: 45px;
  }

  .countdown-item span {
    font-size: 1.1rem;
  }

  .countdown-item .countdown-label {
    font-size: 0.65rem;
    margin-top: 0.1rem;
  }

  .countdown-title {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }
}

/* Submission Notice Styles */
.submission-notice {
  margin-top: auto;
  padding-top: 1rem;
  text-align: center;
}

.submission-notice .btn-outline-info {
  color: #8ecae6;
  border-color: #8ecae6;
  transition: all 0.2s ease;
}

.submission-notice .btn-outline-info:hover {
  background-color: #8ecae6;
  color: #212a31;
}

/* Exclusive reward indicator */
.exclusive-star {
  color: #ffd700;
  margin-left: 4px;
  text-shadow: 0 0 3px rgba(255, 215, 0, 0.5);
  cursor: help;
}

/* Bootstrap tooltip override for exclusive items */
.tooltip.exclusive .tooltip-inner {
  background-color: #ffd700;
  color: #000;
  font-weight: 500;
}

@media (max-width: 1024px) {
  #content-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  #content-wrapper > div {
    width: 100%;
    max-width: 100%;
  }

  #sidebar-image-wrapper {
    margin-top: 2rem;
    width: 100%;
  }

  .seasons-intro {
    padding: 1.5rem;
  }

  .seasons-intro .display-4 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
  }

  .seasons-intro .lead {
    font-size: 1.15rem;
    line-height: 1.6;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .feature-item {
    padding: 1.25rem;
  }

  .feature-item i {
    font-size: 1.75rem;
  }

  .feature-item h5 {
    font-size: 1.15rem;
  }

  .feature-item p {
    font-size: 0.95rem;
  }

  .quick-stats,
  .quick-links {
    margin-top: 1.25rem;
  }

  .quick-stats h5,
  .quick-links .card-title {
    font-size: 1.15rem;
  }

  .quick-stats ul li,
  .quick-links ul li {
    font-size: 0.95rem;
  }

  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #main-container .col-12 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .quick-nav-link {
    padding: 0.75rem;
    font-size: 0.95rem;
  }

  #content {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 728px) {
  #content-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }

  #content-wrapper > div {
    width: 100%;
    max-width: 100%;
  }

  #sidebar-image-wrapper {
    margin-top: 1.5rem;
    width: 100%;
  }

  .seasons-intro {
    padding: 1rem;
  }

  .seasons-intro .display-4 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .seasons-intro .lead {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-item {
    padding: 1rem;
  }

  .feature-item i {
    font-size: 1.5rem;
  }

  .feature-item h5 {
    font-size: 1.1rem;
  }

  .feature-item p {
    font-size: 0.9rem;
  }

  .quick-stats,
  .quick-links {
    margin-top: 1rem;
  }

  .quick-stats h5,
  .quick-links .card-title {
    font-size: 1.1rem;
  }

  .quick-stats ul li,
  .quick-links ul li {
    font-size: 0.9rem;
  }

  .container-fluid {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  #main-container .col-12 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .quick-nav-link {
    padding: 0.625rem;
    font-size: 0.9rem;
  }

  #content {
    margin-bottom: 1rem;
  }

  .countdowns-container {
    flex-direction: column;
  }

  .countdown-wrapper {
    width: 100%;
    margin-bottom: 1rem;
  }
}
