:root{

    --background-1: #0b0b0b;                 
    --background-2: #1d1b16;
    --header-footer-bg: #080808;

    --font: #ededed;
    --btn-color: #ededed;

    --pri-color-1: #00ff76;
    --pri-color-2: #1b3a27;
    --sec-color-1: #992323;
    --sec-color-2: #d33b1f;
    --ter-color-1: #b67d2b;
    --ter-color-2: #e3c66c;

    /* --font-txt: ''; */
    /* --font-link: 'Solitreo'; */

}

html{
    scroll-behavior: smooth;
}

body{
    background: -webkit-linear-gradient( var(--background-1),var(--background-2));
    background-repeat: no-repeat;
    min-height: 100vh;
}

.page{
  margin-top: 200px;
  margin-bottom: 80px;
}

a {
    text-decoration: none !important;
    color: var(--sec-color-1);
}

*{
  /* font-family: var(--font-txt); */
}

h1, h2{
    text-transform: uppercase;
    background: -webkit-linear-gradient(var(--pri-color-1), var(--pri-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-weight: bold;
    font-family: var(--font-link);
}

h1{
    font-size: 2rem;
}

h2{
      font-size: 1.7rem;
}

li{
  margin-bottom: 7px;
}

.container-fluid{
  padding: 0px;
}


/* ----- ----- ----- Arrow-Up ----- ----- ----- */
#arrow-up {
    position: fixed;
    right: 22px;
    bottom: 15px;
    width: 40px;
    opacity: 50%;
    z-index: 1;
    cursor: pointer;
    display: none;
    transition: all 0.3s;
    opacity: 50%;
    filter: invert(1);
}

#arrow-up:hover{
    opacity: 100%;
}

/* ----- ----- ----- Casinos ----- ----- ----- */

.casino{
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  margin: 0;

  border: double 3px transparent;
  border-radius: 20px;
  background-image: linear-gradient(var(--background-1), var(--background-1)), linear-gradient(45deg, var(--pri-color-1),var(--pri-color-2));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.casino p{
  margin: 0;
  color: var(--font);
}

.casino-logo-wrapper{
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}


.casino-logo-wrapper img{
  height: 100%;
  transition: all 0.3s ease;
}

.casino-logo-wrapper img:hover{
  scale: 105%;
}

.bonus, .feedback, .button, .logo{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px 0;
}

.feedback{
  justify-content: flex-start;
}

.logo{
  margin: 0px;
    background-color: var(--header-footer-bg);
}

.bonus{
  flex-direction: column;
}

.bonus, .feedback{
  margin-top: 50px;
}

.bonus-txt{
  font-size: 30pt;
  line-height: 30pt;
  font-weight: bold;
  text-transform: uppercase;
}

.bonus span{
  font-size: 16pt;
  position: relative;
  bottom: 9pt;
  left: 5pt;
}

.buttonmaxbetwager-wrapper{
  width: 60%;
}

.maxbetwager-wrapper{
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.maxbetwager-wrapper p{
  font-size: 16px;
}

@media only screen and (min-width: 992px){

  .small .maxbetwager-wrapper{
    flex-direction: column;
    align-items: center;
}

  .small .bonus, .small .feedback, .small .button, .small .logo{
    margin: 0;
  }

  .small .casino-logo-wrapper img {
    width: 100%;
    height: auto;
} 

}

.extra .feedback{
  flex-direction: column;
  justify-content: space-evenly;
}

.extra .bonus{
  margin-bottom: 50px;
}

.feedback p{
  font-size: 16px;
}

.small .feedback p{
  margin-left: 10px;
}

@media only screen and (max-width: 991px){

.small .feedback p{
  margin-left: 0px;
}

}


/* ----- Buttons ----- */

.btn-claim {
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 12px;
    border-style: none;
    background-size: 300% 100%;
    color: var(--btn-color);
    height: 40px;
    font-size: 14pt;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    background-image: linear-gradient(to right, var(--sec-color-1),var(--sec-color-2), var(--pri-color-1), var(--pri-color-2));

}
.btn-claim:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
    scale: 107%;
}

/* ----- Filter Buttons ----- */

#casino-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  gap: 10px;
  margin: 20px 0 30px 0;
}

#casino-filters button {
  max-width: 160px; 
  min-width: 120px; 
  text-align: center;
  background-color: var(--background-1);
  color: var(--btn-color);
  border: 2px solid var(--pri-color-1);
  padding: 10px 0;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

#casino-filters button:hover {
  background-color: var(--pri-color-1);
  scale: 105%;
}

#casino-filters button.active-filter {
  background-color: var(--sec-color-1);
  font-weight: 600;
  transform: translateY(-4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  scale: 105%;
}

@media (max-width: 600px) {
  #casino-filters button {
    flex: 1 1 45%; 
    max-width: none;
  }
}


/* ----- Badges ----- */

.badges-container {
  position: absolute;
  top: 10px;
  left: 10px;

  display: grid;
  grid-auto-flow: column;         /* füllt Spalten statt Reihen */
  grid-template-rows: repeat(4, auto); /* max. 4 Badges pro Spalte */
  gap: 6px 10px;                  /* Abstand: Zeilen, Spalten */
  z-index: 5;
}

.badges {
  color: var(--font);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 10pt;
  padding: 4px 12px;
  border-radius: 6px;
  text-align: center;
  white-space: nowrap;
}

/* Farbvarianten */
.badges.exclusive {
  background-image: linear-gradient(to right, var(--pri-color-1),var(--pri-color-2));
}

.badges.top-deal {
  background-image: linear-gradient(to right, var(--pri-color-1),var(--pri-color-2));
}

.badges.new {
  background: linear-gradient(135deg, #b67d2b, #e3c66c);
}

.badges.non-sticky {
  background-image: linear-gradient(to right, var(--sec-color-1),var(--sec-color-2));
}

.badges.no-wager {
  background-image: linear-gradient(to right, var(--sec-color-1),var(--sec-color-2));
}

.badges.giveaway {
  background-image: linear-gradient(to right, var(--sec-color-1),var(--sec-color-2));
}

/* ----- Info Box ----- */

.info-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.2s ease;
  opacity: 0.85;
  z-index: 5;
}

.info-icon:hover {
  transform: scale(1.1);
}

.casino.expanded .info-icon {
  transform: rotate(180deg);
}

.info-box {
  display: none;             
  overflow: hidden;          
  padding: 0 15px;
  opacity: 0;                 
  transition: opacity 0.3s ease;
}

.info-box-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 25px;
}


@media (max-width: 450px) {
  .info-box-wrapper {
    flex-direction: column
}
}

hr{
  color: var(--pri-color-1);
  opacity: 100;
  position: relative;
  bottom: 16px
}

.casino.small .info-box {
  width: 100%;
}

.info-box[style*="display: block"] {
  opacity: 1;
}

.payments{
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 8px 0;
}

.payments img {
  height: 24px;
  object-fit: contain;
}


/* ----- Extra Feedback Grid ----- */
.extra-feedback {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, auto));
  justify-content: center;
  align-items: start;
  max-width: 50%;
  gap: 5px;
}

.extra-feedback p{
  font-size: 16px;
  margin-bottom: 5px;
}

.payments-wrapper{
  width: 50%;
}


/* ----- ----- ----- Navbar ----- ----- ----- */

nav {
    height: 120px;
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 20;
    width: 100%;
    background-color: var(--header-footer-bg);
    top: 0;
}

.nav-toggle-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar{
    position: fixed;
    width: 100%;
    height: 0px;
    overflow: hidden;
    z-index: 10;
    top: 120px;

    border-bottom: double 2px transparent;
    background-image: linear-gradient(var(--header-footer-bg), var(--header-footer-bg)), linear-gradient(45deg, var(--pri-color-1),var(--pri-color-2));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* ----- Navbar Links ----- */
#navbar-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

#navbar-links a{
    color: var(--link-color) !important;
    font-family: var(--font-link);
    font-size: 20pt;
    margin-top: 10px;
}

#navbar-links a:hover{
    background: -webkit-linear-gradient( var(--pri-color-1),var(--pri-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.active-nav{
    background: -webkit-linear-gradient( var(--sec-color-1),var(--sec-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ----- Navbar Animation ----- */
.nav-toggle {
    background: transparent;
    border: 1px solid transparent;
    padding: 0px;
  }
  
    .nav-toggle:focus {
        outline-width: 0;
    }
  
.nav-toggle [class*='bar-'] {
    background: var(--font);
    display: block;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: .2s ease all;
            transition: .2s ease all;
    border-radius: 2px;
    height: 2px;
    width: 25px;
    margin-bottom: 4px;
  }

  .nav-toggle:hover [class*='bar-'] {
    background: var(--pri-color-1);
  }

  
.nav-toggle .bar-bot {
    margin-bottom: 0;
  }
  
.opened .bar-top {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: 15% 15%;
            transform-origin: 15% 15%;
  }

.opened .bar-mid {
    opacity: 0;
  }

.opened .bar-bot {
    -webkit-transform: rotate(45deg);
            transform: rotate(-45deg);
    -webkit-transform-origin: 15% 95%;
            transform-origin: 15% 95%;
  }

#logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    overflow: hidden;
}

#logo-wrapper a{
  height: 80%;
}

#Logo {
    height: 100%;
}

/* ---------- ---------- ---------- Video Hintergrund ---------- ---------- ---------- */
#videobackground {
    position: fixed;
    top: 0px;
    right: 0px;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1000;
    overflow: hidden;
    background-image: url(vid/back.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 30%;
}

/* ----- ----- ----- Footer ----- ----- ----- */

footer .container-fluid{
    border-top: double 2px transparent;
    background-image: linear-gradient(var(--header-footer-bg), var(--header-footer-bg)), linear-gradient(45deg, var(--pri-color-1),var(--pri-color-2));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

footer .container {
    padding-top: 50px;
    padding-bottom: 12px;
}

footer h3{
    color: var(--pri-color-1);
}

footer p{
  color: var(--font);
}

footer a{
    color: var(--font);
}

footer a:hover{
    background: -webkit-linear-gradient( var(--pri-color-1),var(--pri-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-info {
  margin: 10px 0px;
}


.social {
display: flex;
justify-content: space-evenly;
margin: 8px 0;
}

.social-links {
background-color: var(--pri-color-1);
width: 40px;
height: 40px;
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.5s;
}

.social-links:hover {
    background-color: var(--sec-color-1);
    transition: all 0.5s;
    scale: 110%;
}

.social-links-img{
    filter: brightness(0) saturate(100%) invert(5%) sepia(6%) saturate(614%) hue-rotate(349deg) brightness(97%) contrast(88%);
}

footer hr{
background-color: var(--background-1);
opacity: 100 !important;
bottom: 0px !important;
}

.copyright{
font-size: 10px;
}

#copyright-desktop {
display: block;
margin: 0px;
}

#copyright-mobile{
margin: 20px 0 5px 0;
text-align: center;
display: none;
}

#gambleaware-img {
    width: 70%;
    transition: all 0.5s;
}

#gambleaware-img:hover {
    scale: 105%;
    transition: all 0.5s;
}

#gambleaware-wrapper {
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
}

#gambleaware-wrapper a{
    display: flex;
    justify-content: center;
    align-items: center;
}


@media only screen and (max-width: 992px){

#copyright-desktop {
display: none;
}

#copyright-mobile{
display: block;
}

#gambleaware-img {
    width: 40%;
}
}

/* ----- Einzelnes Casino Layout ----- */

body.single-casino-page {
  display: flex;
  flex-direction: column;
}

body.single-casino-page .page {
  flex: 1;
  display: flex;
  justify-content: center;  
  align-items: center;
  padding: 0px;      
}

body.single-casino-page footer {
  margin-top: auto;
}

body.single-casino-page #casino-container {
  width: 100%;
}

.single-casino-page .casino-logo-wrapper img:hover{
  scale: 100%;
}

/* ----- Giveaway ----- */

.timer{
    text-transform: uppercase;
    color:white;
    font-family: var(--font);
    margin-bottom: 16px;
    font-weight: bold;
}

.timer-end{
  color: crimson !important;
}

.giveaway-text{
  border: double 3px transparent;
  border-radius: 20px;
  background-image: linear-gradient(var(--header-footer-bg), var(--header-footer-bg)), linear-gradient(45deg, var(--pri-color-1),var(--pri-color-2));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 30px 10px;
  margin: 0;
}

.giveaway-text p, .giveaway-text li{
  color: var(--font);
}

.giveaway-text p{
  margin: 0px;
}

.important-1 {
    color: var(--pri-color-1);
    font-weight: bold;
    text-transform: uppercase;
}

.important-2 {
    color: var(--pri-color-2);
    font-weight: bold;
    text-transform: uppercase;
}

.giveaway-bg {
    background-color: var(--background-1);
    border-radius: 10px;
    padding: 10px;
}

.giveaway-bg p {
  font-weight: bold;
  margin-bottom: 10px;
}

.price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.price p {
    text-align: center;
    margin: 0px;
    padding: 5px;
}

.page.giveaway{
  margin-top: 0px;
}

.giveaway .badges.giveaway{
  display: none;
}

.cash-img{
  width: 50%;
}

#giveaway-header-img{
  width: 100%;
  margin-top: 120px;
}

.link:hover {
    background: -webkit-linear-gradient( var(--pri-color-1),var(--pri-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ----- Socials ----- */

#iframe-wrapper{
  display: flex;
  justify-content: center;
  /* margin-bottom: 80px; */
}

#iframe-wrapper iframe{
  frameborder: 0; 
  allowfullscreen: true;
  scrolling: no;
  height: 300px;
  width: 50%;
}

@media only screen and (max-width: 1200px){
  #iframe-wrapper iframe{
  width: 75%;
}
}

@media only screen and (max-width: 767px){
  #iframe-wrapper iframe{
  width: 100%;
}
}

.social-wrapper {
    background-color: var(--background-1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.social-wrapper p{
    color: var(--font);
    margin:0px;
}

.social-wrapper img{
   margin-bottom: 13px;
   width: 20%;
   filter: invert(1);
}

.social-wrapper:hover {
    background-color: var(--pri-color-1);
    scale: 103%;
}

.carousel-caption {
    background-color: #000000db;
}

/* ----- Bonushunt ----- */

.bonushunt {
    display: block;
    width: 100%;
    height: calc(2108px + 80px);
    margin-top: 200px;
    border: none;
}

@media only screen and (max-width: 1315px){
  .bonushunt {
    height: calc(2548px + 80px);
}
}

@media only screen and (max-width: 916px){
  .bonushunt {
    height: calc(3688px + 80px);
}
}

@media only screen and (max-width: 565px){
  .bonushunt {
    height: calc(5313px + 80px);
}
}

/* ----- Disclaimer Popup ----- */

#disclaimer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Hintergrund abdunkeln */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* über alles andere */
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#disclaimer-overlay.active {
  visibility: visible;
  opacity: 1;
}

#disclaimer-popup {
  background-color: var(--background-1);
  color: var(--font);
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--pri-color-1);
}

#disclaimer-popup h2 {
  color: var(--pri-color-1);
  margin-bottom: 15px;
}

#disclaimer-popup p {
  font-size: 14pt;
  margin-bottom: 25px;
  color: var(--font);
}

#disclaimer-btn {
  background-image: linear-gradient(to right, var(--pri-color-1), var(--pri-color-2));
  border: none;
  color: #fff;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

#disclaimer-btn:hover {
  scale: 1.05;
  background-image: linear-gradient(to right, var(--sec-color-1), var(--sec-color-2));
}

/* ----- Seiten Exklusiver Code ----- */

.head-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.head-info p{
    text-align: center;
}

.extra-btn {
    width: 100%;
    border-radius: 12px;
    border-style: none;
    background-size: 300% 100%;
    color: var(--btn-colors);
    font-size: 14pt;
    border-radius: 20px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;

    display: flex;
    justify-content: center;
    padding: 10px;
}

.extra-btn:hover{
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
    scale: 107%;
}

.extra-btn-wrapper a{
  color: var(--btn-color) !important;
}

.extra-btn img{
  filter:invert(1);
  margin-right: 10px;
  height: 44px;
}

.extra-btn p{
  margin: 0px
}

.telegram-btn{
    background-image: linear-gradient(to right, #072d5e, #072d5e, #25a2d3, #25a2d3);
}

.discord-btn{
    background-image: linear-gradient(to right, #5865F2, #5865F2, #8d96f0, #8d96f0);
}

