/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

code {
  color: #E01A76;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}


.mainpage {
  min-height: 100%;

  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  /* background-image: url("./assets/login/Login_screen_bg.jpg"); */
  background-position: center;
  background-size: cover;
  color: #ffffff;

}

.maincontent {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* width: 960px; */
  flex-grow: 1;
}

.maincontentWithPtsIndicator {
  padding-top: 12px;
}

.ptsTopMicroBanner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10px;
  line-height: 10px;
  padding: 1px 6px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-decoration: none;
  font-size: 8px;
  font-weight: bold;
  letter-spacing: 0.2px;
  color: #fff8cf;
  background-color: rgba(155, 0, 0, 0.95);
  border-bottom: 1px solid rgba(255, 240, 200, 0.75);
}

.ptsTopMicroBanner:hover {
  color: #ffffff;
  background-color: rgba(190, 0, 0, 0.98);
}



Input {
  background-color: rgb(9, 12, 16);
  border: black;
  border-radius: 2PX;
  border-width: 1px;
  border-style: solid;
  color: rgb(147, 147, 147);
  margin: 5px 0 5px 0;
  min-height: 20px;
  padding: 1px 0 0 5px;


}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"] {
  color: whitesmoke;
}

input::placeholder {
  color: lightgray;
  font-family: 'Dante', sans-serif;
  /* replace with desired color value */
}



.RedButton {
  display: flex;
  border-image: url(/d48c684fa65d2301f4a9.png);
  border-style: solid;
  border-width: 5px;
  /* border-radius: 2px; */
  border-image-slice: 8 fill;
  min-height: 10px;
  min-width: 50px;
  color: whitesmoke;
  font-family: Dante;
  font-size: 18px;
  text-align: center;
  padding: 4px 10px 0px 10px;
  margin: 0 10% 0 10%;
  justify-content: center;
  align-items: center;
  cursor: pointer;

}

.GreyButton {
  display: flex;
  border-image: url(/1c4a00341ecc93ca43fe.png);
  border-style: solid;
  border-width: 5px;
  /* border-radius: 2px; */
  border-image-slice: 8 fill;
  min-height: 10px;
  min-width: 50px;
  color: whitesmoke;
  font-family: Dante;
  font-size: 18px;
  text-align: center;
  padding: 4px 10px 0px 10px;
  margin: 0 10% 0 10%;
  justify-content: center;
  align-items: center;

}

.YellowButton {
  display: flex;
  border-image: url(/ebd81102e40c5369c22e.png);
  border-style: solid;
  border-width: 5px;
  /* border-radius: 2px; */
  border-image-slice: 6 fill;
  min-height: 10px;
  min-width: 50px;
  color: whitesmoke;
  font-family: Dante;
  font-size: 18px;
  text-align: center;
  padding: 4px 10px 0px 10px;
  /* margin: 0 10% 0 10%; */
  justify-content: center;
  align-items: center;
  transition: transform 0.1s;

}

.YellowButton:hover {

  transform: scale(1.05);
  color: red;
}


.BlueButton {
  display: flex;
  border-image: url(/0a894a64e6013e044051.png);
  border-style: solid;
  border-width: 5px;
  /* border-radius: 2px; */
  border-image-slice: 6 fill;
  min-height: 10px;
  min-width: 50px;
  color: whitesmoke;
  font-family: Dante;
  font-size: 18px;
  text-align: center;
  padding: 4px 10px 0px 10px;
  /* margin: 0 10% 0 10%; */
  justify-content: center;
  align-items: center;
  transition: transform 0.1s;

}

.ButtonDeactive {
  color: #aaa;
  /* Mute the text color */
  cursor: not-allowed;
  /* Show a 'not-allowed' cursor */
  background-color: #e0e0e0;
  /* Mute the background color */
  /* border: 1px solid #d0d0d0; */
  /* Optional: add a muted border */
  opacity: 0.75;
  /* Overall dim the button */
  pointer-events: none;
  /* Prevents click events */
}




Form {
  display: flex;
  flex-direction: column;
  padding: 0 20% 0 20%;
  gap: 0px;


}

.spacer {
  display: flex;
  flex-grow: 1;
}

.spacer20 {
  height: 20px;
}

.spacer50 {
  height: 50px;
}

.versionumber {
  position: absolute;
  bottom: 5px;
  right: 10px;
  font-size: small;
}


img {
  pointer-events: none;
}


.flexRow {
  display: flex;
  flex-direction: row;

}

.centerCenter {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer {
  display: flex;
}

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

.gamehome {
    display: flex;
    width: 100vw;
    background-color: black;
    background-image: url(/52c0d9071e3d726793dc.jpg);
    background-position: top;
    background-size: cover;
    background-attachment: fixed;
    flex-grow: 1;
}




@media only screen and (min-width: 880px) {
    .sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        height: 100%;
        background: #333;
        transform: translateX(-100%);
        transition: transform 0.3s ease-out;
        z-index: 1000;
    }

    .sidebar.open {
        display: none;
        transform: translateX(0);
    }

    .sidebar-toggle {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 2000;
    }

    .gamehomecontent {
        display: flex;


        width: 884px;


        flex-direction: column;
        /* justify-content: flex-start; */
        /* align-items: center; */
        margin-left: auto;
        margin-right: auto;

        /* background-color: black; */

    }

    .gamecontent {
        display: flex;
        flex-direction: row;
        /* width: 100%; */
        flex-grow: 1;

        justify-content: space-between;

    }


    .ClubHeader {
        margin: 20px 10px 0 10px;
        display: flex;
        flex-direction: row;
        min-height: 150px;
    }

    .ClubHeader h1 {
        display: flex;
        color: red;
        font-weight: bold;
        text-transform: uppercase;
        margin: 2px;
        padding: 0px;


    }

    .ClubHeader p {
        display: flex;
        padding: 0;
        margin: 0px;
        margin-left: 2px;
    }

    .ClubHeader .shopLogo {
        min-width: 250px;
        height: 250px;
    }

    .ClubHeaderDescription {
        display: flex;
        margin-left: 40px;

        flex-direction: column;
    }

}

@media only screen and (max-width: 880px) {
    .gamehomecontent {
        width: 90vw;
        margin-left: 30px;
    }

    .sidebar {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100vh;
        background: #101010;
        transform: translateX(-220px);
        transition: transform 0.3s ease-out;
        z-index: 1000;
        border: 1px solid #610000;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-toggle {
        display: flex;
        flex-direction: row-reverse;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 2000;
        width: 100%;
        height: 20px
    }

    .ClubHeader {
        margin: 0px 10px 0 10px;
        display: flex;
        flex-direction: row;
        min-height: 100px;
    }

    /* .shopLogo {
        position: absolute;
        z-index: 1;
    }

    .ClubHeaderDescription {
        position: relative;
        z-index: 2;

    } */
}
.home {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  background-color: black;
  align-items: center;
  position: relative;
  isolation: isolate;
}

.homeWithPtsBanner {
  padding-top: 56px;
}

.ptsBanner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 6px 14px;
  text-align: center;
  text-decoration: none;
  font-family: 'Dante', sans-serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #fff7c2;
  background: linear-gradient(90deg, #700000 0%, #a30000 48%, #700000 100%);
  border-bottom: 2px solid rgba(255, 236, 179, 0.7);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.ptsBanner:hover {
  color: #ffffff;
  background: linear-gradient(90deg, #8a0000 0%, #bf0000 48%, #8a0000 100%);
}

.home::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url(/67eb3ddad58c1adc05f0.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.home>* {
  position: relative;
  z-index: 1;
}

.homeHero {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.topImageContainer {
  display: flex;
  position: relative;
  max-width: 700px;
  min-width: 280px;
  width: 100%;
  min-height: 220px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.countdown {
  color: whitesmoke;
  text-align: center;
  font-family: 'Dante', sans-serif;
  font-weight: lighter;
  font-size: 60px;
  color: rgb(243 11 0);
  text-transform: uppercase;

  text-shadow: 2px 2px 2px black,
    2px -2px 2px black,
    -2px 2px 2px black,
    -2px -2px 2px black;
}

.topImage {
  width: 100%;
  max-width: 700px;
  height: auto;
}

.parentalImage {
  width: 200px;
  height: auto;
  margin-top: 10px;
}

.playNowContainer {

  display: flex;
  flex-direction: column;
  margin-top: 100px;
  margin-bottom: 50px;
  /* margin: auto;
  z-index: 1; */

  min-height: 100px;
  /* margin-bottom: 200px; */
  text-align: center;
  position: relative;
  color: #fff;
  font-family: 'Dante';

  font-size: 2.5em;

  text-shadow: 2px 2px 2px black,
    2px -2px 2px black,
    -2px 2px 2px black,
    -2px -2px 2px black;
  align-items: center;
  gap: 12px;
}

.heroSubline {
  margin: 0;
  font-size: 22px;
}

.heroActions {
  display: flex;
  gap: 16px;
}

.heroActions a {
  text-decoration: none;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.75);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 26px;
}

.heroActions a:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.homeContent {
  width: min(980px, 92vw);
  margin-top: 24px;
  margin-bottom: 20px;
  color: #f3f3f3;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
}

.homeSection {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 14px;
}

.homeSection h2 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #f6f6f6;
}

.homeSection h3 {
  margin-bottom: 6px;
  color: #f0e9d1;
}

.homeSection p {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.5;
}

.homePlaySteps {
  margin: 0;
  padding-left: 22px;
  line-height: 1.6;
}

.homePlaySteps li {
  margin-bottom: 6px;
}

.homePlaySteps li:last-child {
  margin-bottom: 0;
}

.homeTagList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.homeTag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #ffe6e6;
  background: rgba(124, 10, 10, 0.45);
  border: 1px solid rgba(255, 190, 190, 0.35);
}

.screenshotHint {
  margin-bottom: 12px;
}

.screenshotGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.screenshotCard {
  margin: 0;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

.screenshotCardFeatured {
  grid-column: span 2;
}

.screenshotCard img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.screenshotCard figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
}

.screenshotCard figcaption strong {
  color: #ffe9cc;
}

.screenshotCard figcaption span {
  font-size: 14px;
  line-height: 1.45;
}

.faqItem {
  margin-bottom: 14px;
}

.faqItem:last-child {
  margin-bottom: 0;
}


.socialFooterHomeLocation {
  margin-top: 45px;
  width: 100%;
}

@media (max-width: 768px) {
  .homeWithPtsBanner {
    padding-top: 70px;
  }

  .ptsBanner {
    min-height: 62px;
    font-size: 15px;
    line-height: 1.2;
    padding: 8px 10px;
  }

  .playNowContainer {
    width: 92%;
    font-size: 2em;
    margin-top: 45px;
  }

  .countdown {
    font-size: 42px;
  }

  .heroSubline {
    font-size: 20px;
  }

  .heroActions {
    flex-direction: column;
    width: 100%;
  }

  .heroActions a {
    width: 100%;
  }

  .screenshotGrid {
    grid-template-columns: 1fr;
  }

  .screenshotCardFeatured {
    grid-column: auto;
  }
}

.socialFooter {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1em;
  flex-wrap: wrap;
}

.socialMedia {
  display: flex;
  flex-direction: row;
}

.support {
  display: flex;
  flex-direction: row;
}

.socialIconName {
  display: flex;
  padding: 5px;

}

.socialIcon {
  margin-right: 5px;
  height: 20px;
  width: 20px;
}
.imprintBody {
  display: flex;
  flex-direction: column;
}

.imprintNav {
  display: flex;
  flex-direction: column;
}

.switchLanguage {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 10px 10px 0px 10px;
}

.imprintSwitch {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 10px;
}

.topleftBack {
  position: absolute;
  top: 10px;
  left: 10px;
}
@font-face {
  font-family: 'Dante';
  /* The name you want to give to your font family */
  src: url(/7f27da0c7d0d3a51cf2a.otf) format('opentype');
  /* Adjust the path to your OTF font file */
}

a {
  color: #fff;
  text-decoration: none;

}

a:hover {
  color: rgb(243 11 0);
  text-decoration: none;
}

#footer {
  margin: auto auto 10px auto;
  text-align: center;

}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: whitesmoke;
  text-align: center;
  font-family: 'Dante', sans-serif;
  font-weight: lighter;
  font-size: 30px;
  color: rgb(243 11 0);
  text-transform: uppercase;

  text-shadow: 2px 2px 2px black,
    2px -2px 2px black,
    -2px 2px 2px black,
    -2px -2px 2px black;
}


h2 {
  margin-top: 30px;
  font-size: 20px;
  text-align: left;
}

h3 {
  font-size: 16px;
  text-align: left;

}

h10 {
  font-size: 10px;
  /* padding-top: 10px; */
  padding-bottom: 10px;
  font-family: Arial, Helvetica, sans-serif;
  margin: 5px;
}


p {
  padding-left: 20px;
  color: #fff;
}

.backToGame {
  height: 100px;
  width: 100px;
  position: fixed;
  top: 25px;
  left: 25px;
}

body {
  user-select: none;
  background-color: black;
}
