
/* Swiper container */
.swiper-container {
    width: 100%;
    height: 100vh;
    position: relative;
    clear: both;
      
  }
  .swiper-slide {
    transition: transform 1s ease, opacity 1s ease;
  }
  
  .swiper-slide .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
  }
  
  /* Common styles for slides */
  .swiper-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* This will keep the content vertically centered */
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
  }


.swiper-wrapper {
    position: relative;
    z-index: 0;
  }
  
  .content {
    color: #ffffff;
    max-width: 80%;
    margin: auto;
  }
  
  .title {
    font-size: 4rem;
    font-family: 'Cinzel', serif; /* Use a serif font similar to the one in the images */
    letter-spacing: 0.2rem;
    text-transform: uppercase;
  }
  
  .separator {
    width: 60px;
    height: 2px;
    background-color: #ffffff;
    margin: 20px auto;
  }
  
  .description {
    font-size: 1.2rem;
    margin: 20px 0;
  }
  
  .btn {
   
    border: 2px solid #ffffff;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
  }
  
   
  
/* Slide 1 (The Unconquered) 
.slide-1 {
    background-image: url('/static/images/the_unconquered.jpg');
}

/* Slide 2 (Ruined King) 
.slide-2 {
    background-image: url('/static/images/ruined_king.jpg');
}
*/

  
  /* Swiper buttons */
  .swiper-button-next,
  .swiper-button-prev {
    color: #ffffff;
  }
  
  .content {
    transition: transform 1.5s ease, opacity 1.5s ease;
  }
  .swiper-slide-active .content {
    transform: translateY(0);
    opacity: 1;
  }
  .swiper-slide-next .content,
  .swiper-slide-prev .content {
    transform: translateY(20px);
    opacity: 0.5;
  }
  
  /* Platform Button Styles */
  .btn-platform {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
  }
  
  /* Adjust Swiper Controls */
  .swiper-container {
    position: relative;
  }
  
  .swiper-slide {
 
    background-color: black; /* Fallback for background image */
  }
  
  .swiper-slide img {
    filter: brightness(0.7);
  }
/* Platform Button Styles */
 

/* Adjust Swiper Controls */
.swiper-container {
  position: relative;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: black; /* Fallback for background image */
}


.swiper-slide img {
  border-radius: 4px;
  filter: brightness(0.8);
}

.swiper-slide h2, .swiper-slide h3, .swiper-slide p {
  margin: 0;
}

.video-thumbnail {
  position: relative;
}

.play-button {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 10px;
}
.btn-platform {
    transition: background-color 0.3s, transform 0.3s !important;
}
.btn-platform:hover {
    background-color: #2f855a !important; /* Darker green */
    transform: scale(1.05) !important;
}


/*about banner*/
.champion-banner {
  background-color: #f9f9f9;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.content-wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
}

.keywords-section {
  width: 20%;
  margin-right: 40px;
}

.keywords-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.keyword-item {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-left: 20px;
  transition: all 0.3s;
}

.keyword-item::before {
  content: '\f00c'; /* Font Awesome check icon */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #333;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
}

.keyword-item:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.keyword-item.active,
.keyword-item:hover {
  color: #3dbb3d;
  font-weight: bold;
}

.details-section {
  width: 50%;
  text-align: left;
}

.keyword-title {
  font-size: 48px;
  color: #111;
  margin-bottom: 20px;
}

.keyword-description {
  font-size: 20px;
  color: #555;
  margin-bottom: 30px;
}

.actions .btn-play,
.actions .btn-play-now {
  display: inline-block;
  background-color: #3dbb3d;
  color: #fff;
  padding: 10px 20px;
  margin-right: 10px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
}

.actions .btn-play-now {
  background-color: #000;
}

.actions .btn-play:hover,
.actions .btn-play-now:hover {
  background-color: #111;
  color: #fff;
}

.image-section {
  width: 30%;
  text-align: right;
}

.image-section img {
  width: 100%;
  max-width: 450px;
  object-fit: contain;
}

/*house banner*/

/* Swiper container */
.swiper-container {
  width: 100%;
  height: 100vh;
  position: relative;
  clear: both;
}

/* Slide content */
.swiper-slide .slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
  background-size: cover;
  background-position: center;
  text-align: left;
  color: #fff;
  max-width: 80%;
  margin: auto;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 1.5s ease, opacity 1.5s ease;
}

.swiper-slide-active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.swiper-slide-next .slide-content,
.swiper-slide-prev .slide-content {
  transform: translateY(20px);
  opacity: 0.5;
}

/* Platform Button Styles */
.btn-platform {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s, transform 0.3s !important;
}

.btn-platform:hover {
  background-color: #2f855a !important; /* Darker green */
  transform: scale(1.05) !important;
}

/* House Logos */
.house-logos img {
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.house-logos img:hover {
  transform: scale(1.1);
}

/* Rival House Styles */
.rival-house img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.rival-house img:hover {
  transform: scale(1.2);
}

/* List Styles */
ul.list-disc {
  list-style-type: disc;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

li i {
  margin-right: 0.5rem;
}

/* Swiper navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #2f855a; /* Green */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #38a169;
}

/* Background image styles */
.swiper-slide {
  background-size: cover;
  background-position: center;
}

.bg-hero {
  background-image: url("{% static 'background-image.jpg' %}");
  background-size: cover;
  background-position: center;
}

.bg-scroll {
  background-image: url("{% static 'scroll-bg.jpg' %}");
  background-repeat: no-repeat;
  background-position: center;
}




.max-height{
  max-height: 400px;
}
/* Tailwind Scrollbar Styling */
.scrollbar-thin {
  scrollbar-width: thin;
}

.scrollbar-thumb-green-500 {
  scrollbar-color: #10b981 #374151;
}

.scrollbar-track-gray-700 {
  scrollbar-color: #374151;
}

  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
  }

  .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
  }

  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }

  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  .hidden {
    display: none;
  }
  ::selection {
    background-color: #10b981;/*#22c55e Vert Tailwind (équivalent de text-green-500) */
    color: #fff; /* Texte noir pour un bon contraste */
  }
  
  ::-moz-selection {
    background-color: #10b981;
    color: #fff;
  }
  
  /************* toaster *************/
.toast {
            animation: slideIn 0.4s ease-out;
            min-width: 280px;
            max-width: 350px;
        }
        @keyframes slideIn {
            from {
                transform: translateY(-20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        .toast.removing {
            animation: slideOut 0.3s ease-in forwards;
        }
        @keyframes slideOut {
            to {
                transform: translateY(-20px);
                opacity: 0;
            }
        }
        .pattern-dots {
            background-image: radial-gradient(circle, rgba(255,255,255,0.15) 2px, transparent 2px);
            background-size: 25px 25px;
        }

/************* fin toaster *************/