/* CSS VARIABLES */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --bg-color: white;
  --text-color: black;
  --card-bg: #f4f4f4;
  --card-shadow: rgba(0, 0, 0, 0.1);
  --btn-bg: #f06921;
  --btn-text: white;
}

.dark-mode {
  --bg-color: #0f1e3b;
  --text-color: #ffffff;
  --card-bg: #1e1e1e;
  --card-shadow: rgba(255, 255, 255, 0.1);
  --btn-bg: #f06921;
  --btn-text: black;
}



body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  background-color: #fefefe;
  /* background-image: url(../img/bg/bg.png); */
  background-repeat: repeat-y;
  background-size: cover;
  background-position: center;
  padding-bottom: 100px;
  position: relative;
}

.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0C0D14;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}
.bottom-bar a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 3px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3px;
}
.bottom-bar a div{
  display: flex;
  flex-flow: column;
  font-size: 17px;
  align-items: center;
}
.bottom-bar a svg {
  margin-right: 5px;
  max-width: 20px;
  max-height: 20px;
}
.bottom-bar a:hover {
  background-color: #575757;
  border-radius: 5px;
}
.bottom-bar a.active {
  background-color: #12232b;
  color: #fff;
  border-radius: 5px;
}
.bottom-bar a.active div i{
  color: #fff;
}

.bottom-bar a.active svg {
  fill: #fff;
}
.bottom-bar a.active:hover {
  background-color: rgba(255, 255, 255, .2);
  color: #f06921;
  border-radius: 5px;
}

/* Header Start */
.menu-btn {
  cursor: pointer;
  z-index: 1002;
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-btn div {
  width: 100%;
  height: 4px;
  background-color: #ffffff;
  transition: 0.3s;
  border-radius: 2px;
}

.menu-btn.active div:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-btn.active div:nth-child(2) {
  opacity: 0;
}

.menu-btn.active div:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100vh;
  background: #151922;
  color: white;
  padding-top: 70px;
  transition: 0.3s;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding-bottom: 150px;
}

.sidebar a {
  display: flex;
  align-items: center;
  padding: 15px;
  text-decoration: none;
  color: #fff;
}
.sidebar a svg {
  margin-right: 10px;
  max-width: 20px;
  max-height: 20px;
}

.sidebar a:hover {
  background: #575757;
}

.overlay {
  position: fixed;
  top: 0;
  left: 250px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  z-index: 20;
}

.sidebar.active {
  left: 0;
}

.overlay.active {
  visibility: visible;
  opacity: 1;
}

.flex-space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

.navbar {
  background-color: #151515;
  padding: 1px 16px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  max-width: 480px;
  z-index: 5;
  margin: auto;
}

.navbar a image {
  max-width: 50px;

}

a.rounded-button-link {
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;

}

a.rounded-button-link:hover {
  text-decoration: none;
}

a.rounded-button-link svg {
  max-width: 23px;
  max-height: 23px;
}

/* Header End */

/* Main Start */
/* Reset default margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Container for the entire layout */
.container {
  display: flex;
  gap: 10px;
  /* Space between left and right sections */
  max-height: 200px;
  /* Limit the height of the container */
}

/* Left section (main image) */
.left-section {
  flex: 2;
  /* Takes up more space than the right section */
  overflow: hidden;
  /* In case the image overflows */
}

.left-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the image covers the area without distortion */
}

/* Right section (stacked divs) */
.right-section {
  flex: 1;
  /* Takes up less space than the left section */
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Space between the two right divs */
}

/* Right top and bottom sections */
.right-top,
.right-bottom {
  flex: 1;
  /* Each takes up equal height within the right section */
  overflow: hidden;
  /* In case the image overflows */
}

/* Ensure images in the right sections scale properly */
.right-top img,
.right-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the image covers the area */
}

.right-bottom button:hover {
  background-color: #e5e7eb;
}

.main-section-header {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: left;
  /* margin-bottom: 20px; */
  background: linear-gradient(to right, 0%, 70%, #ED2C7E, #F0BD01);
}

section.default-padding {
  padding: 3px 10px;
  margin: 10px 0px;
}

.img-rounded {
  border-radius: 5px;
}

#main-wrapper {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  padding-top: 30px;
}


/* Horizontal Nav */
/* Navigation container */
.nav-container {
  display: flex;
  overflow-x: auto;
  /* Enables horizontal scrolling */
  white-space: nowrap;
  /* Prevents items from wrapping to the next line */
  padding: 10px;
  gap: 10px;
  /* Space between nav items */

  /* Hide scrollbar for Firefox */
  scrollbar-width: none;
  /* Removes the scrollbar entirely in Firefox */

  /* Hide scrollbar for Internet Explorer and Edge (legacy) */
  -ms-overflow-style: none;
  /* Removes the scrollbar in IE/Edge */
}

/* Hide scrollbar for Webkit browsers (Chrome, Safari) */
.nav-container::-webkit-scrollbar {
  display: none;
  /* Completely hides the scrollbar in Webkit browsers */
}

.nav-container::-webkit-scrollbar-track {
  background: #1e2a44;
  /* Background of the scrollbar track */
}

.nav-container::-webkit-scrollbar-thumb {
  background: #6b7280;
  /* Color of the scrollbar thumb */
  border-radius: 4px;
}

.nav-container::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
  /* Lighter color on hover */
}

/* Rest of the styles remain the same */
.nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  background-color: #efefef;
  color: #000;
  font-family: "Orbitron", sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  min-width: 30vw;
}

a.nav-item i {
  margin-right: 5px;
}

.nav-item.active {
  background-color: #f99222;
  color: #fff;
  /* font-weight: bold; */
  text-decoration: none;
}

.nav-item:not(.active):hover {
  background-color: #6E6F71;
}

/* GAMES TILES & CONTAINER */
.games-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: stretch;
  position: relative;
  gap: 9px;
}

.games-container .game-tile {
  width: calc(100% / 2 - 5px);
  border-radius: 5px;
  max-height: 300px;
  cursor: pointer;
  transition: 0.3s;
  /* margin-bottom: 10px; */
  position: relative;
  min-height: 230px;
  max-height: 230px;
 
}

.challenge-duration {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-block;
  border-radius: 5px;
  padding: 5px 20px;
  background: #EF373F;
  text-transform: capitalize;
  color: #fff;
}

.games-container .game-tile img.img-fluid.img-rounded {
  height: 100%;
  min-width: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.games-container .challenge-tile {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 10px;
  position: relative;
}

.img-fluid {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.game-details {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  color: white;
  background: linear-gradient(to top, black, transparent);
  padding: 35px 5px 5px;
  text-align: center;
  border-radius: 0px 0px 25px 25px;
  transition: 0.3s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.game-name {
  font-size: .9rem;
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "open sans", sans-serif;
  font-weight: 700;
}

/* Hoeme carousel */
.gallery {
  background: transparent;
}

.gallery-cell {
  width: 100%;
  min-height: 150px;
  padding: 5px;
  counter-increment: gallery-cell;
  display: flex;
  justify-content: center;

  background: rgba(255, 255, 255, 0.2);
  margin: 0px 20px;
  border-radius: 5px;
}

.left-content {
  background: #fff;
  border-radius: 5px 0px 0px 5px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  color: #000;
  padding: 5px 10px;
}

.right-content {
  background: #fff;
  border-radius: 0px 5px 5px 0px;
}

.left-content,
.right-content {
  height: 100%;
  flex: 1;
}

.flickity-page-dots .dot {
  background: #fff;
}

.slider-subtitle {
  font-weight: normal;
  font-size: 1rem;
  margin: 0px;
}

.left-content h3 {
  font-size: 1rem;
  font-weight: bold;
  margin: 0px;
}

.left-content p {
  margin: 5px 0px;
}

.left-content a {
  background: #A3AA20;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  padding: 5px 15px;
  color: #fff;
  border-radius: 15px;
  font-size: 12px;
}

/* IMage to cover all div */
.right-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px 5px 5px 0px;
}

.game-container {
  position: relative;
}

.game-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;

}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 5px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px;
  transition: opacity 0.3s ease-in-out;
}

.game-content {
  text-align: center;
}

.play-button {
    background-color: #ff7b16;
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
    display: inline-block;
    border: 2px solid #000;
}

.game-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.game-buttons a svg {
  max-width: 25px;
  max-height: 25px;
}

.game-description {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 5px;
  margin-top: 20px;
  color: #fff;

}
h2.main-section-header{
  color: #000;
  margin-bottom: 10px !important;
}
h4.game-breadcrumbs {
  font-size: 1rem;
  font-weight: bold;
  margin: 20px 0px;
  color: #000;
  margin-bottom: 10px !important;
}

.game-description h2 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

.game-description p {
  color: #999;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}

.profile-tile,
.profile-stats {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.profile-stats {
  align-items: stretch;
  background: transparent;
  justify-content: space-between;
  padding: 0px;
}

.profile-tile .avatar {
  flex: 1;
}

.profile-tile .profile-data {
  flex: 3;
}

.profile-tile .profile-data p {
  margin-bottom: 0px;
}
.profile-tile .profile-data h1{
  font-size: 12px;
  text-align: left;
}

.profile-tile .profile-edit {
  flex: 1;
}

div.avatar {
  min-width: 50px;
  min-height: 50px;
  height: 50px;
  max-width: 50px;
  max-height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;

  background-color: rgba(255, 255, 255, 0.2);
}

div.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .2)
}

.left-stats {
  margin-right: 5px;
}

.right-stats {
  margin-left: 5px;
}

.left-stats,
.right-stats {
  flex: 1;
  background-color: rgb(14 16 18 / 1);
  padding: 10px;

}

.left-stats h5,
.right-stats h5 {
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 10px;
  color: #fff;
}

.left-stats p,
.right-stats p {
  font-size: .7rem;
}

.liked-games-tile {
  padding: 0px;
  margin: 20px 0px;
  border-radius: 5px;
  background-color: transparent;
  color: #fff;
}

/* CHALLENGES PAGE */
[data-tab-content] {
  display: none;
}

.active[data-tab-content] {
  display: block;
}

.tabs li {
  display: inline-block;
  flex: 1;
  text-align: center;
  border-radius: 30px;
  background-color: #f1f1f1;
  margin: 0px 5px;
  padding: 10px;
}

.tabs {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  margin: 0;
  padding: 5px;
  background-color: transparent;
  border-radius: 30px;
  margin-bottom: 20px;
  color: #3E3E3E;
}

.tab {
  cursor: pointer;
  padding: 5px;
}

.tab.active {
  background-color: #FF7A00;
  color: #fff;
}

.tab:hover {
  background-color: #FF7A00;
}

.challenges-header {
  font-weight: normal;
  margin-top: 30px;
}

.challenges-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
}

.challenges-footer .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.challenges-footer .right p {
  margin: 0px;
  font-size: .8rem;
  font-weight: normal;
}

.challenges-footer .right h5 {
  margin: 0px;
  font-size: .6rem;
  font-weight: bold;
  color: #ffffff;
}



/* Style the tab */
.inner-tab {
  overflow: hidden;
  border: none;
  background: linear-gradient(to top, rgba(0, 0, 0, .5), transparent);
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}

/* Style the buttons inside the tab */
.inner-tab button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px;
  transition: 0.3s;
  font-size: 15px;
  display: inline-block;
  font-weight: bold;
  flex: 1;
  /* Make buttons take equal space */
  text-align: center;
  /* Center the text inside the button */
  color: #fff;
  border-bottom: 3px solid transparent;

}

/* Change background color of buttons on hover */
.inner-tab button:hover {
  background-color: transparent;
  font-weight: bold;
  border-bottom: 3px solid #fff;

}

/* Create an active/current tablink class */
.inner-tab button.active {
  background-color: transparent;
  font-weight: bold;
  border-bottom: 3px solid #ED2C7E;
}

/* Style the tab content */
.tabcontent {
  display: none;
  border-top: none;
}

#contact-form .form-fields .form-group:first-child {
  padding-right: 5px;
}

#contact-form .form-fields .form-group input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: .5px solid rgba(255, 255, 255, 0.2);
  margin: 0px 0px 10px 0px;
  font-size: 1rem;
  color: #fff;
  background-color: rgba(0, 0, 0, .2);
  transition: border-color 0.3s ease;
  font-family: "Orbitron", sans-serif;
}

#contact-form .form-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: .5px solid rgba(255, 255, 255, 0.2);
  margin: 0px 0px 10px 0px;
  font-size: 1rem;
  color: #fff;
  background-color: rgba(0, 0, 0, .2);
  transition: border-color 0.3s ease;
  font-family: "Orbitron", sans-serif;
}

#contact-form .form-fields .form-group input:focus,
#contact-form .form-group textarea:focus {
  border-color: #ffffff;
  outline: none;
}

#contact-form .form-group button[type="submit"] {
  background-color: #a3aa20;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease-in-out;
  display: inline-block;
  border: none;
  cursor: pointer;
}

#contact-form .form-group button[type="submit"]:hover {
  background-color: #9a3c0a;
  color: white;
  text-decoration: none;
}

#contact-form .form-fields .form-group label,
#contact-form .form-group label {
  font-size: .6rem;
  font-weight: normal;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
  text-align: left;
}

.contact-list {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
  padding: 10px;
  border-radius: 5px;
}

.contact-list-tile {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}

.contact-list-tile .contact-avatar {
  flex: 1;
  max-width: 50px;
  max-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  background-color: rgba(240, 105, 33, .1);
  padding: 7px;
  border-radius: 5px;
}

.contact-list-tile .contact-avatar svg {
  color: #f06921;
  width: 30px;
  height: 30px;
}

.contact-list-tile .contact-details {
  flex: 3;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
}

.contact-list-tile .contact-details h5 {
  font-size: 1rem;
  font-weight: bold;
  margin: 0px;
  color: #fff;
}

.contact-list-tile .contact-details p {
  font-size: .7rem;
  font-weight: normal;
  margin: 0px;
  color: rgba(255, 255, 255, .6);
}

.contact-list-tile .contact-details p span {
  font-weight: bold;
  color: #f06921;
}

.sign-in-prompt {
  font-size: 14px !important;
  color: rgba(255, 255, 255, .6);
}

.sign-in-prompt a {
  color: dodgerblue;
  text-decoration: none;
  font-weight: bold;
}

.sign-in-prompt a:hover {
  text-decoration: underline;
}

.alert {
  background-color: #f44336;
  /* Red */
  color: white;
  padding: 15px;
  margin: auto;
  border-radius: 5px;
  position: fixed;
  z-index: 1;
  bottom: 50px;
  left: 16px;
  right: 16px;
  max-width: 480px;
  text-align: center;
}

.alert.success {
  background-color: #4BB543;
}

/* Green */

.alert.info {
  background-color: #2196F3;
}

/* Blue */

.alert.warning {
  background-color: #ff9800;
}

/* Orange */

.alert.danger {
  background-color: rgb(244 67 54 / 60%);
}

/* Red */

.alert.closebtn {
  position: absolute;
  top: 10px;
  right: 25px;
  color: white;
  font-weight: bold;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.alert.closebtn:hover {
  color: black;
}

.alert.closebtn:after {
  content: "×";
  font-size: 20px;
  line-height: 20px;
  position: absolute;
  right: 10px;
  top: 0;
}

.alert.closebtn:hover:after {
  color: black;
}

.challenge-overlay{
  align-items: flex-end !important;
  background: linear-gradient(to top, rgba(0, 0, 0, .4), transparent);
  bottom: -70px;
}
.challenge-overlay .game-content .game-buttons {
  margin-top: 10px;
  margin-bottom: 0px;
}

.back-button{
  background-color: #F8931D;
  color: white;
  padding: 5px 10px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease-in-out;
  display: inline-block;
}
.extras-holder{
  position: absolute;top: 0;right: 0;left: 0;
  
  border-radius: 5px 5px 0px 0px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  display: none;
}
.fav-button{
  background: rgba(255, 255, 255, .6);
  display: flex;justify-content: center;align-items: center;
  padding: 3px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  color: #fff !important;
}
.tag-holder{
  background: rgba(255, 255, 255, .6);
  padding: 2px 4px;
  border-radius: 5px;
  margin-right: 5px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  font-size: .5rem;
  font-weight: bold;
}
.tag-holder a{
  color: #000 !important;
  text-decoration: none;
  font-size: .6rem;
  font-weight: normal;
  text-transform: capitalize;
}
.fav-button a{
  color: #000 !important;
  text-decoration: none;
  font-size: .7rem;
  font-weight: normal;
  display: inline-block;
  padding: 5px;
}
.bottom-bar a i{
  color: #A3AA20;
  margin-right: 10px;
}
.left-section, .right-top, .right-bottom {
  position: relative;
}
.left-section .game-name, .right-top .game-name, .right-bottom .game-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;

}
/* begin external css: flickity.css
/*! Flickity v2.0.4
* https://npmcdn.com/flickity@2/dist/flickity.css
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
overflow: hidden;
position: relative;
height: 100%;
}

.flickity-slider {
position: absolute;
width: 100%;
height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
-webkit-tap-highlight-color: transparent;
tap-highlight-color: transparent;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
cursor: move;
cursor: -webkit-grab;
cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
cursor: -webkit-grabbing;
cursor: grabbing;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
position: absolute;
top: 50%;
width: 44px;
height: 44px;
border: none;
border-radius: 50%;
background: white;
background: hsla(0, 0%, 100%, 0.75);
cursor: pointer;
/* vertically center */
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}

.flickity-prev-next-button:hover { background: white; }

.flickity-prev-next-button:focus {
outline: none;
box-shadow: 0 0 0 5px #09F;
}

.flickity-prev-next-button:active {
opacity: 0.6;
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */ */
/* .flickity-rtl .flickity-prev-next-button.previous { */
/*   left: auto; */
/*   right: 10px; */
/* } */
/* .flickity-rtl .flickity-prev-next-button.next { */
/*   right: auto; */
/*   left: 10px; */
/* } */

.flickity-prev-next-button:disabled {
opacity: 0.3;
cursor: auto;
}

.flickity-prev-next-button svg {
position: absolute;
left: 20%;
top: 20%;
width: 60%;
height: 60%;
}

.flickity-prev-next-button .arrow {
fill: #333;
}



.carousel-main {
margin-bottom: 8px;
}

.carousel-cell {
width: 100%;
height: 35vh;
margin-right: 8px;
background: transparent;
border-radius: 5px;
/* counter-increment: carousel-cell; */
}



.carousel-nav .carousel-cell {
height: 100px;
width: 100px;
}


/* Atelierbram edit */
.carousel-main img {
display: block;
margin: 0 auto; 
}

.flick-container {
width: 100%;
max-width: 100%;
margin: 0 auto;
}

h1 {
text-align: center;
}
.img-responsive {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
}
img.game-image{
width: 100%;
height: auto;
display: block;
margin: 0 auto;
border-radius: 30px;
max-height: 100%;
}
.flickity-page-dots {
position: relative;
width: 100%;
padding: 0;
margin: 0;
list-style: none;
text-align: center;
line-height: 1;
transition: opacity 0.7s ease-in-out with 0.7s;

}
.flickity-page-dots .dot.is-selected {
background: #1cdda1;
opacity: 1;
width: 20px;
height: 10px;
border-radius: 5px;
margin: 0 5px;
}
.neon-text{
font-family: "Orbitron", sans-serif; /* Use a bold, modern font */
font-size: 2rem; /* Adjust size as needed */
font-weight: bold; /* Make it bold */
color: #000; /* White base color */
text-transform: uppercase; /* Match the uppercase style */
-webkit-text-stroke: 1px #e3ff04; /* Outline in neon cyan */
text-stroke: 1px #e3ff04; /* Fallback for non-WebKit browsers */
text-shadow: 
0 0 4px #e3ff04, /* Subtle glow */
2px 2px 4px rgba(0, 0, 0, 0.5); /* Slight 3D shadow for depth */
letter-spacing: 2px; /* Add spacing for a futuristic feel */
}
.game-tile-overlay{
padding: 16px;
}
.dot{
width: 5px;
height: 5px;
background-color: #e3ff04;
border-radius: 50%;
margin: 0 5px;
display: inline-block;
}
.game-details-inner{
color: #fff;
}
.carousel-nav .flickity-viewport .flickity-slider .carousel-cell img{
opacity: 0.5;
transition: opacity 0.3s ease-in-out;
}
.carousel-nav .flickity-viewport .flickity-slider .carousel-cell.is-selected img{
opacity: 1;
transition: opacity 0.3s ease-in-out;
}
.game-name-holder{
background: transparent;
padding: 5px 20px;
border-radius: 7px;
width: 90%;
}
h2.main-section-header i{
  color: #e3ff04;
}
.main-section{
  margin-bottom: 20px;
}
.challenge-imageholder{
  position: relative;
  margin-bottom: 30px;
  
}
.challenge-imageholder .inner-game-name-holder{
  position: absolute;
  left: 20px;
  bottom: -15px;
  background-color: #000000;
  border-radius: 10px;
  border: 1px solid #e3ff04;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  max-width: calc(100% - 80px);
}
.inner-game-name-holder h5{
  color: #ffffff;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.challenge-card{
  border-radius: 10px;
  margin-bottom: 30px;
  background-color: rgb(14 16 18 / 1);
}
.challenge-card .challenge-top, .challenge-card .challenge-bottom{
  padding: 10px;
  
}
.challenge-imageholder img{
  width: 100%;
  height: auto;
  border-radius: 10px;
  min-height: 200px;
}
.text-w-neutral-1{
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;

}
.text-w-neutral-1 svg{
  margin-right: 5px;
  width: 20px;
  height: 20px;
  color: #999 !important;
  fill: #999 !important;
  stroke: #999 !important;
}
.timing-section{
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 10px;
  background-color: rgba(33, 37, 41, 0.40);
  padding: 10px;
  border-radius: 10px;
}
.timing-left i{
  color: #999;
  font-size: 2rem;
}
.timing-right{
  margin-left: 10px;
}
.timing-right span{
  color: #999;
  font-size: .9rem;
}
.timing-section{
  font-family: "open-sans", sans-serif;
  font-weight: 400;
}
.challenge-description h5{
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
  margin: 10px 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.challenge-description p{
  font-size: 1rem;
  color: rgb(156 171 185 / 1);
  font-weight: 400;
  font-family: "open-sans", sans-serif;
  margin-bottom: 10px;
}
.challenge-bottom{
  border-top: 1px solid rgb(156 171 185 / 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row nowrap;
}

.challenge-bottom div h6{
  font-size: 1rem;
  color: rgb(156 171 185 / 1);
  font-weight: 600;
  margin-bottom: 10px;
}

.bottom-sheet {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  font-family: "open-sans", sans-serif;
}
.bottom-sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #ddd;
}
.bottom-sheet-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}
.bottom-sheet-header i {
  font-size: 24px;
  cursor: pointer;
}
.bottom-sheet-body {
  padding: 16px;
}
.bottom-sheet-body p {
  margin: 0;
  font-size: 16px;
  color: #555;
}
.bottom-sheet-footer {
  padding: 16px;
  text-align: center;
}
.bottom-sheet-footer a {
  background-color: #2F7C0A;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
}
.bottom-sheet-footer a:hover {
  background-color: #1f5b0a;
}
.show{
  display: block !important;
}
  
.restrict-2-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Restrict to 2 lines */
    line-clamp: 2; /* Fallback for non-WebKit browsers */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; /* Optional: adds "..." for overflow */
    font-size: 1.4em;
  }
  .navbar a.rounded-button-link{
    background-color: #ffffff;
    padding: 5px;
  }
  .intro-banner {
            position: relative;
            margin-top: 20px;
        }
        .content{
            min-height: 150px;
            display: flex;
            align-items: stretch;
            justify-content: space-between;
            border-radius: 5px;
            position: relative;
            z-index: 2;
            
        }
        .intro-banner:before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1;
            background-image: url('../../assets/img/bg/intro-bg.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.5;
            border-radius: 5px;
        
        }
        .intro-banner-content {
            color: white;
            text-align: left;
            flex: 3;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 10px;
        }
        .intro-banner-content h1 {
            font-size: 2rem;
            margin: 0;
            color: #000;
            text-align: left;
            margin-bottom: 15px;
        }
        .intro-banner-content a{
            color: #000;
            text-decoration: none;
            font-size: .7rem;
        }
        span.orange-text {
            color: #FFA500; /* Orange color */
        }
        .intro-banner-image {
            flex: 2;
            text-align: right;
          
        }
        .intro-banner-image img {
            max-width: 100%;
            height: auto;
            min-height: 100%;
            border-radius: 0px 5px 5px 0px;
        }
        div.play-prompt-banner{
            display: flex;
            flex-flow: column;
            justify-content: center;
            align-items: center;
            background-image: url('../../assets/img/bg/bg-2.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 20px 16px;
            border-radius: 5px;
        }
        .play-prompt-banner h1{
            color: #fff;
            font-size: 1.5rem;
            margin: 0;
            text-align: center;
            margin-bottom: 10px;
        }
        .play-prompt-banner span{
            color: #fff;
            font-size: 1rem;
            text-align: center;
        }
        .play-prompt-banner a{
            color: #2b222c;
            text-decoration: none;
            font-size: 1rem;
            background-color: #fff; /* Orange color */
            padding: 10px 20px;
            border-radius: 5px;
            margin-top: 10px;
        }
        .play-prompt-banner a:hover{
            background-color: #FFA500; /* Orange color */
            color: #fff;
        }

        div.bottom-bar a div i{
          font-size: 1.6rem;

        }
        div.bottom-bar a div p{
          font-size: 1rem;
        }
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #fff;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
        }