@font-face {
  font-family: "cyberpunk";
  src: url("../fonts/Sddystopiandemo-GO7xa.otf") format("truetype");
}
.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
}

.menu-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: #000000;
  border: 2px solid #FFCE00;
  border-radius: 5px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}
.menu-toggle .bar {
  width: 30px;
  height: 3px;
  background-color: #FFCE00;
  margin: 3px 0;
  transition: 0.4s;
}
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.navbar {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: auto;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: none;
  transition: none;
  overflow-y: visible;
  padding: 0;
  z-index: 999;
}
.navbar .navbar-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
  padding: 20px;
}
.navbar a {
  display: block;
  color: #FFCE00;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  border-radius: 10px;
  width: auto;
}
.navbar a:hover {
  transform: scale(1.05);
  color: #000000;
  background-color: #00FFFF;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
}
.navbar a.active {
  color: #00FFFF;
  font-size: 22px;
  text-decoration: underline;
}
.navbar a.active:hover {
  color: #000000;
}

.welcome {
  margin-top: 100px;
  text-align: center;
}
.welcome h1 {
  font-size: 50px;
  color: #FFCE00;
}
.welcome p {
  font-size: 20px;
  color: #FFCE00;
}

.rss-feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(400px, 100%), 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.rss-card {
  background-color: #1A1A1A;
  color: #FFCE00;
  border-radius: 10px;
  padding: 15px;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 15px rgba(255, 206, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.section-header {
  display: inline-flex;
  align-items: center;
  margin-left: 50px;
  margin-top: 20px;
  gap: 20px;
  background-color: #000000;
  border-radius: 20px 20px 0 0;
  padding: 0 0 0 20px;
  height: 70px;
}
.section-header h2 {
  font-size: 30px;
  color: #FFCE00;
  margin-right: 20px;
  transition: color 0.3s ease;
}
.section-header:hover {
  cursor: pointer;
}
.section-header:hover h2 {
  color: #00FFFF;
  text-decoration: underline;
}
.section-header img {
  margin-right: 8px;
  transition: margin 0.3s ease;
}

.container {
  display: flex;
  margin-top: 100px;
  flex-direction: row;
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.image-box {
  flex: 2;
  padding: 20px;
}
.image-box img, .image-box video {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.text-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: #000000;
  border-radius: 10px;
  margin-right: 20px;
}

.Tittle {
  font-size: 36px;
  color: #FFCE00;
  text-align: center;
  margin: 0;
  padding: 20px 0;
  font-family: "cyberpunk", Arial, sans-serif;
}

.line {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #FFCE00 20%, #FFCE00 80%, transparent 100%);
  margin: 15px auto;
  width: 80%;
  max-width: 1200px;
}

.plugin-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  max-width: 1200px;
}

.plugin-card {
  background: #3d3939;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  max-width: 800px;
  overflow: hidden;
  flex: 1;
  min-width: 300px;
  max-width: 580px;
  margin: 10px;
}

.plugin-header {
  background: #2b2b2b;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plugin-badge {
  background: #4CAF50;
  color: white;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.8em;
}

.plugin-content {
  display: flex;
  padding: 20px;
  gap: 20px;
}

.plugin-image {
  flex: 0 0 40%;
}

.plugin-thumbnail {
  width: 100%;
  border-radius: 4px;
}

.plugin-description {
  flex: 1;
}

.plugin-features {
  margin: 15px 0;
  padding-left: 20px;
}

.plugin-button {
  display: inline-block;
  background: #0078d7;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 15px;
  transition: background 0.3s;
}

.plugin-button:hover {
  background: #005fa3;
}

@media (max-width: 1300px) {
  .section-header .title-section {
    display: none;
  }
  .section-header {
    justify-content: center;
    padding: 10px;
    margin-left: 5px;
    margin-right: 5px;
    gap: 0;
  }
  .section-header img {
    margin-right: 0;
  }
  .category {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    gap: 0;
  }
  .container {
    flex-direction: column;
  }
  .text-box {
    margin-right: 0;
    margin-top: 20px;
  }
  .rss-feed {
    grid-template-columns: repeat(3, 1fr);
    padding: 20px;
  }
  .rss-card {
    width: 100%;
  }
  .nav-container {
    background-color: transparent;
  }
  .menu-toggle {
    display: flex;
  }
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
  }
  .navbar.active {
    transform: translateX(0);
  }
  .navbar .navbar-inner {
    flex-direction: column;
    gap: 25px;
  }
  .navbar a {
    font-size: 26px;
    max-width: 90%;
  }
  .navbar a.active {
    font-size: 30px;
  }
  .container {
    flex-direction: column;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
  .image-box {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 10px;
  }
  .text-box {
    width: 100%;
    margin-right: 0;
    margin-top: 20px;
    padding: 15px;
    box-sizing: border-box;
  }
  .carousel-container .carousel-content {
    height: auto;
  }
}
@media (max-width: 767px) {
  .navbar .navbar-inner {
    gap: 30px;
  }
  .navbar a {
    font-size: 20px;
    padding: 12px 20px;
    max-width: 80%;
  }
  .navbar a.active {
    font-size: 24px;
  }
  .menu-toggle {
    top: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
  }
  .welcome h1 {
    font-size: 36px;
  }
  .welcome p {
    font-size: 18px;
  }
  .section-header {
    margin-left: 20px;
    height: 50px;
  }
  .section-header h2 {
    font-size: 22px;
  }
  .rss-feed {
    padding: 15px;
    grid-template-columns: 1fr;
  }
  .bottom-box .btn, .bottom-box .win-btn, .bottom-box .lnx-btn, .bottom-box .itch-btn, .bottom-box .and-btn {
    width: 100%;
    margin-top: 10px;
  }
  .container {
    max-width: 95%;
  }
  .carousel-container .carousel-nav {
    width: 25%;
  }
  .carousel-container .carousel-nav .arrow {
    font-size: 1.5rem;
  }
  .container {
    margin-top: 80px;
    padding: 0 10px;
  }
  .image-box, .text-box {
    padding: 10px;
  }
  .text-area h1 {
    font-size: 24px;
  }
  .text-area p {
    font-size: 16px;
  }
  .text-details h3 {
    font-size: 16px;
  }
  .Tittle {
    font-size: 28px;
  }
  .line {
    width: 90%;
    margin: 20px auto;
  }
  .plugin-content {
    flex-direction: column;
  }
}
@media (max-width: 479px) {
  .navbar .navbar-inner {
    gap: 25px;
  }
  .navbar a {
    font-size: 16px;
    padding: 10px 15px;
    max-width: 75%;
  }
  .navbar a.active {
    font-size: 18px;
  }
  .menu-toggle {
    width: 42px;
    height: 42px;
    top: 10px;
    left: 10px;
    padding: 3px;
  }
  .menu-toggle .bar {
    width: 24px;
    height: 3px;
    margin: 3px 0;
  }
  .welcome h1 {
    font-size: 28px;
  }
  .welcome p {
    font-size: 16px;
  }
  .section-header {
    margin-left: 0;
    margin-right: 0;
    padding: 8px 10px;
    gap: 0;
  }
  .category {
    padding: 0 5px;
  }
  .container {
    max-width: 98%;
  }
  .image-box, .text-box {
    padding: 8px;
  }
  .text-area h1 {
    font-size: 20px;
  }
  .text-area p {
    font-size: 14px;
  }
  .text-details h3 {
    font-size: 14px;
  }
  .bottom-box p {
    font-size: 14px;
  }
  .bottom-box .btn, .bottom-box .win-btn,
  .bottom-box .lnx-btn, .bottom-box .itch-btn,
  .bottom-box .and-btn {
    padding: 8px 15px;
    font-size: 14px;
  }
  .Tittle {
    font-size: 24px;
  }
  .line {
    width: 95%;
    margin: 15px auto;
  }
}
body {
  font-family: "cyberpunk", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #1A1A1A;
}

.active-header h2 {
  color: #00FFFF;
  text-decoration: underline;
}

.section-start {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  height: 5px;
}

.section-wrapper .active-section {
  background-color: #000000;
}
.section-wrapper .active-section .carousel-container {
  display: flex;
}

.text-area {
  display: flex;
  flex-direction: column;
  color: #FFCE00; /* Adjust as needed */
}

.line {
  height: 1px;
  background-color: #FFCE00; /* Adjust as needed */
  margin-bottom: 10px;
}

.bottom-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.bottom-box p {
  margin: 0 10px 10px 0px;
  color: #FFCE00; /* Adjust as needed */
}
.bottom-box .btn {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #00FFFF; /* Adjust as needed */
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.bottom-box .win-btn {
  display: flex; /* Enable Flexbox */
  align-items: center; /* Align content vertically */
  justify-content: center; /* Center content horizontally if needed */
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #3e29f7; /* Adjust as needed */
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none; /* Remove underline from link */
}
.bottom-box .win-btn img {
  margin-right: 10px; /* Add space between image and text */
  width: 20px; /* Adjust size as needed */
}
.bottom-box .ue-btn {
  display: flex; /* Enable Flexbox */
  align-items: center; /* Align content vertically */
  justify-content: center; /* Center content horizontally if needed */
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #9029f7; /* Adjust as needed */
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none; /* Remove underline from link */
}
.bottom-box .ue-btn img {
  margin-right: 10px; /* Add space between image and text */
  width: 20px; /* Adjust size as needed */
}
.bottom-box .lnx-btn {
  display: flex; /* Enable Flexbox */
  align-items: center; /* Align content vertically */
  justify-content: center; /* Center content horizontally if needed */
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #ae00ff; /* Adjust as needed */
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none; /* Remove underline from link */
}
.bottom-box .lnx-btn img {
  margin-right: 10px; /* Add space between image and text */
  width: 20px; /* Adjust size as needed */
}
.bottom-box .itch-btn {
  display: flex; /* Enable Flexbox */
  align-items: center; /* Align content vertically */
  justify-content: center; /* Center content horizontally if needed */
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #f94343; /* Adjust as needed */
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none; /* Remove underline from link */
}
.bottom-box .itch-btn img {
  margin-right: 10px; /* Add space between image and text */
  width: 20px; /* Adjust size as needed */
}
.bottom-box .and-btn {
  display: flex; /* Enable Flexbox */
  align-items: center; /* Align content vertically */
  justify-content: center; /* Center content horizontally if needed */
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #43ff5c; /* Adjust as needed */
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none; /* Remove underline from link */
}
.bottom-box .and-btn img {
  margin-right: 10px; /* Add space between image and text */
  width: 20px; /* Adjust size as needed */
}
.bottom-box .btn:hover, .bottom-box .win-btn:hover, .bottom-box .lnx-btn:hover, .bottom-box .itch-btn:hover, .bottom-box .and-btn:hover {
  background-color: #00FFFF; /* Adjust as needed */
  color: #000;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.bottom-box .btn, .bottom-box .win-btn, .bottom-box .lnx-btn, .bottom-box .itch-btn, .bottom-box .and-btn {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.no-underline {
  text-decoration: none; /* Remove underline from link */
}

.status-box {
  margin-top: -20px;
  display: flex;
  align-items: center;
}
.status-box .status {
  margin-left: 10px;
  color: #00FFFF; /* Adjust as needed */
  text-decoration: underline;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.carousel-container .carousel-content {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-container img, .carousel-container video {
  max-width: 100%;
  height: auto;
  display: block;
}
.carousel-container .carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 15%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
  background-color: rgba(0, 0, 0, 0);
}
.carousel-container .carousel-nav.prev {
  left: 0;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  background: linear-gradient(to right, rgb(0, 0, 0), transparent);
}
.carousel-container .carousel-nav.next {
  right: 0;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  background: linear-gradient(to left, rgb(0, 0, 0), transparent);
}
.carousel-container .carousel-nav .arrow {
  font-size: 2rem;
  color: #FFCE00; /* Adjust as needed */
}
.carousel-container .carousel-nav.prev:hover {
  opacity: 1;
}
.carousel-container .carousel-nav.next:hover {
  opacity: 1;
}

.rss-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.8); /* Aura bleue lors du survol */
}

.rss-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.rss-card p {
  font-size: 14px;
  margin-bottom: 10px;
}

.rss-card a {
  color: #00FFFF;
  text-decoration: none;
  font-weight: bold;
}

.rss-card a:hover {
  text-decoration: underline;
}

.rss-content {
  margin-top: 10px;
  font-size: 14px;
  color: #CCCCCC;
}
.rss-content h1, .rss-content h2, .rss-content h3 {
  font-size: 16px;
  color: #FFCE00;
}
.rss-content ul {
  margin-left: 20px;
  list-style-type: disc;
}
.rss-content li {
  margin-bottom: 5px;
}/*# sourceMappingURL=main.css.map */