:root {
  --primary-color: #3498db;
  --secondary-color: #2ecc71;
  --text-color: #f0f0f0;
  --light-blue: 127, 183, 250;
  --dark-blue: 21, 29, 51;
  --mid-blue: 27, 39, 133;
  --green: 39,174,96;
}



@font-face {
    font-family: SandboxVR;
    src: url("/vip/assets/fonts/sandboxvr/sandboxvr-regular.woff2") format("woff2"), url("/vip/assets/fonts/sandboxvr/sandboxvr-regular.woff") format("woff");
    font-weight: 400;
    font-style: normal
  }
  @font-face {
    font-family: SandboxVR;
    src: url("/vip/assets/fonts/sandboxvr/sandboxvr-medium.woff2") format("woff2"), url("/vip/assets/fonts/sandboxvr/sandboxvr-medium.woff") format("woff");
    font-weight: 500;
    font-style: normal
  }
  @font-face {
    font-family: SandboxVR;
    src: url("/vip/assets/fonts/sandboxvr/sandboxvr-bold.woff2") format("woff2"), url("/vip/assets/fonts/sandboxvr/sandboxvr-bold.woff") format("woff");
    font-weight: 700;
    font-style: normal
  }




/* Reset und Basis */
* {
    font-family: "SandboxVR","Roboto", Arial, sans-serif;
}
body, html {
    margin: 0;
    padding: 0;
    font-family: "SandboxVR","Roboto", Arial, sans-serif;
    
    color: var(--text-color);
    line-height: 1.6;
}

html {
    background: var(--dark-color);
    background: -webkit-linear-gradient(145deg, rgba(var(--dark-blue), 1) 0%, rgba(var(--mid-blue), 1) 73%, rgba(0, 0, 0, 1) 100%);
    background: -o-linear-gradient(145deg, rgba(var(--dark-blue), 1) 0%, rgba(var(--mid-blue), 1) 73%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(145deg, rgba(var(--dark-blue), 1) 0%, rgba(var(--mid-blue), 1) 73%, rgba(0, 0, 0, 1) 100%);
    min-height:100vh;
    font-size:0.9em
}




h1, h2, h3 {
    color: #f0f0f0;
    margin-top: 0;
}
h1 {text-align:center}
.profile-name h1 {text-align:left}

a {color:rgb(var(--light-blue))}

.logo-wrapper {
    text-align: center;
    margin: 10px auto 0px;
}

.container {
    max-width: 500px;
    margin: 0px auto 20px;
    padding: 30px;

}

.container-wide {
    max-width: 1200px;
}

.btn {
    display: inline-block;
    background-color: #0076FF;
    color: #fff;
    border: none;
    padding: 11px 24px;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    line-height: 1.4;
    transition: background 0.3s;
    /*width: 60%;*/
    max-width:500px;
}

.btn:hover {
    background-color: #005FCC;
}


.btn2 {
    display: inline-block;
    background-color: none;
    color: #fff;
    border: 2px solid #0076FF;
    padding: 11px 24px;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    line-height: 1.4;
    transition: background 0.3s;
    /*width: 60%;*/
    max-width:500px;
}

.btn2:hover {
    background-color: #0076FF;
}



.login-switch {margin-bottom:20px;}
.login-switch a {    
    display: inline-block;
    color: rgb(var(--light-blue));
    padding: 5px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    line-height: 1.4;

}
.login-switch a:hover {
    
    text-decoration:underline;
}

select {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    margin: 2px 0 20px;
    border: none;
    border-radius: 4px;
    background-color: #D1DDE8;
    color: #111;
    font-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23111' d='M2 0L0 2h4L2 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 30px;
}


input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="number"],
input[type="date"],
input[type="datetime-local"],
input[type="file"] {
    width: calc(100% - 24px);
    padding: 12px;
    margin: 2px 0 20px;
    border: none;
    border-radius: 4px;
    background-color: #D1DDE8;
    color: #111;
    font-size: 16px;
}
input[type="checkbox"]{
    padding: 12px;
    margin: 2px 0 20px;
    border: none;
    border-radius: 4px;
    background-color: #D1DDE8;
    color: #111;
    font-size: 16px;
}


label {
    display: block;
    margin-bottom: 0px;
    font-weight: bold;
}

p {
    margin-bottom: 20px;
	    margin-top: 0px;
}

.alert {
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.alert-error {
    background-color: #c0392b;
    color: #fff;
}

.alert-success {
    background-color: #27ae60;
    color: #fff;
}

.alert-info {
    background-color: #2980b9;
    color: #fff;
}

.text-center {
    text-align: center;
}


.benefit-grid {
    display: grid;
    grid-template-columns: 1fr; /* Immer nur 1 Spalte */
    gap: 20px;
    margin-top: 30px;
}


/* Mobile Optimierung */
@media (max-width: 600px) {
    .container {
        padding: 8px;
        margin: 0px auto;
    }
    .benefit-grid {
        grid-template-columns: 1fr;
    }
    .btn, .btn2  {
        width: 100%;
        padding: 14px 0px;
    }
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="date"] {
        font-size: 18px;
    }


}


input[type="text"],
input[type="email"],
input[type="number"],
input[type="date"],
input[type="password"] {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}



textarea {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 16px;
    resize: vertical;
    background-color: #D1DDE8;
    color: #111;
    box-sizing: border-box;
}

.invite-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}







/*Menü */

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    position: relative;
	max-width:540px;
	margin:0px auto;
    width:100%;
}

.logo-wrapper svg {
    max-width: 180px;
    height: auto;
}

.burger {
    background: none;
    border: none;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
	position: absolute;
    right: 20px;
	padding: 0px 0px 5px 0px;
	line-height: 1;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #1a1a1a;
    position: absolute;
    top: 70px;
    right: 20px;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 10px;
    z-index: 10;
}

.mobile-menu a {
    color: #f0f0f0;
    text-decoration: none;
    padding: 5px 20px;
    display: block;
}

.mobile-menu a:hover {
    background-color: #333;
}

.mobile-menu.active {
    display: flex;
}



/*FOOTER*/
.site-footer {
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
    margin-top: 0px;
    border-top: 0px solid #333;
}
.footer-container {
    max-width: 500px;
    margin: 10px auto 10px;
    padding: 10px;
	text-align:center;

}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}


/*BENEFITS*/

.benefit-box {
    border: 1px solid #39506b;
    border-radius: 6px;
    margin-bottom: 15px;
    background-color: #000;
    overflow: hidden;
}

.benefit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background-color: #39506b;
    border-bottom: 0px solid #39506b;
    transition: background-color 0.3s;
}

.benefit-header:hover {
    background-color: #39506b;
}

.benefit-title {
    font-weight: bold;
    color: #f0f0f0;
	text-transform: uppercase;
}

.checkmark {
    color: #27ae60;
    font-size: 16px;
	font-weight:bold;
}

.benefit-content {
    display: none;
    padding: 15px 20px;
}

.benefit-box.active .benefit-content {
    display: block;
}



.content-box {
  background: rgba(var(--dark-blue), 0.6);
  border: 1px solid rgba(var(--light-blue), 0.5);
  border-radius: 12px;
  padding: 15px;
  margin: 20px 0;
  backdrop-filter: blur(4px);
}
.content-header {
  display: flex;
  margin-bottom: 15px;
  gap:12px;
}
.content-box .content {
    padding: 10px;
}

.rcontent .reward-icon {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width:30px;
    height:30px;
}

.reward-box .reward-icon svg {
  stroke: rgb(var(--light-blue));/*#f97316*/; 
}

.reward-box .reward-info h3 {
  margin: 0;
  font-size: 1.1em;
  color: #fff;
}

.reward-box .reward-info p {
  margin: 2px 0 0;
  font-size: 0.85em;
  color: #fff;
}



/*FORMULAR*/

.scale-options {
    display: flex;
    gap: 15px;
    margin: 10px 0;
}

.scale-options label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.scale-options input[type="radio"] {
    margin-bottom: 4px;
}


.form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.form-card {
    flex: 1 1 300px;
    background: rgba(var(--dark-blue), 0.6);
      border: 1px solid rgba(var(--light-blue), 0.5);
    border-radius: 6px;
    padding: 20px;
    box-sizing: border-box;
    transition: border-color 0.3s, transform 0.3s;
}

.form-card:hover {
    border-color: #0076FF;
    transform: translateY(-2px);
}

.form-card h3 {
    margin-top: 0;
    color: #0076FF;
}

.form-card p {
    font-size: 14px;
    margin-bottom: 20px;
}

.form-question {
        flex: 1 1 300px;
    background: rgba(var(--dark-blue), 0.6);
      border: 1px solid rgba(var(--light-blue), 0.5);
    border-radius: 6px;
    padding: 20px;
    box-sizing: border-box;
    transition: border-color 0.3s, transform 0.3s;
    
}


.message-success {
    color: #27ae60;
    font-size: 16px;
    margin-bottom: 15px;
}


.credits-box {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: #39506b;
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}




/*CREDITS TAbelle*/

.credits-summary {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 15px;
}

.credits-summary td {
    padding: 5px 12px;
    border-bottom: 1px solid #333;
}

.credits-summary tr:last-child td {
    border-bottom: none;
}

.credits-summary td:first-child {
    text-align: left;
}

.credits-summary td:last-child {
    text-align: right;
}

.credits-summary .total-row {
    background-color: #39506b;
    color: #fff;
}



/*BUTTON ROW*/
.button-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
	margin-top:20px;
}

.button-row .btn,
.button-row .btn2,
.button-row button,
.button-row a.btn,
.button-row a.btn2 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 40%;
  box-sizing: border-box;
  text-align: center;
  max-width: 300px;
}

@media (max-width: 600px) {
  .button-row .btn,
  .button-row .btn2,
  .button-row button,
  .button-row a.btn,
  .button-row a.btn2 {
    flex: 1 1 40%;
  }
}


/*SEARCH BAR*

/* Suchformular Container */
.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* Input und Select gleich hoch machen */
.search-form input,
.search-form select,
.search-form button {
  height: 36px;
  padding: 5px 10px;
  font-size: 14px;
  max-width:300px;
    margin:0px 10px 
}

/* Input etwas breiter */
.search-form input[type="text"] {
  min-width: 220px;
}







/*DASHBOARD*/


/* Dashboard Header mit Gradient Hintergrund */
.dashboard-header {
  background: linear-gradient(145deg,
    rgba(var(--light-blue), 0.3),
    rgba(var(--mid-blue), 0.8)
  );
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.header-content {
  display: flex;
  flex-direction: column;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.profile-picture img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  object-fit: cover;
}

/* Overview Items */
.dashboard-overview {
  display: flex;
  justify-content: space-between;
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
}

.overview-item {
  text-align: center;
  flex: 1;
}

.overview-label {
  font-size: 0.9em;
  color: #ddd;
}

.overview-value {
  font-size: 1.5em;
  font-weight: bold;
  color: #fff;
}

.overview-item-link {
  text-decoration: none;
  color: inherit;
  display: block;
      flex: 1;    
}

.overview-item-link:hover .overview-item {
  cursor: pointer;
}

/* Progress Bar */
.progress-container {
  margin-top: 5px;
}

.progress-bar {
  position:relative;
    background: rgba(0,0,0,0.3);
  border-radius: 6px;
  overflow: hidden;
  height: 20px;
}

.progress-fill {
  background: #c084fc;
  height: 100%;
  transition: width 0.5s ease;
}

.progress-text {
  position:relative;
  margin-top: 5px;
  font-size: 0.8em;
  text-align: right;
  color: #fff;
}

#progress-bar-xp-level {z-index:1000;left:5px;position:absolute;top:2px;font-size:0.7em;color:rgba(255,255,255,0.3)}
#progress-bar-xp-next-level {z-index:1000;right:5px;position:absolute;top:2px;font-size:0.7em;color:rgba(255,255,255,0.3)}
#progress-text-level-name {position:absolute;left:0px;}
#progress-text-next-level {}


/*QUEST GRIDS*/
.quest-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr; /* mobil 1 Spalte */
  gap: 20px;
  margin-top: 10px;
  padding: 0px;
  border-radius: 8px;
  /*background-color: rgba(var(--dark-blue), 0.3);
  border: 1px solid rgba(var(--light-blue), 0.2);*/
}

/* Für größere Bildschirme mehrere Spalten */
@media (min-width: 700px) {
  .quest-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}




/* Basis Reward Box */

.reward-box {
  background: rgba(var(--dark-blue), 0.6);
  border: 1px solid rgba(var(--light-blue), 0.5);
  border-radius: 12px;
  padding: 15px;
  margin: 20px 0;
  backdrop-filter: blur(4px);
}

/* Header: Icon und Titel */

.reward-box .reward-header {
  display: flex;
  margin-bottom: 15px;
  gap:12px;
}

.reward-box .reward-icon {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width:30px;
    height:30px;
}

.reward-box .reward-icon svg {
  stroke: rgb(var(--light-blue));/*#f97316*/; 
}

.reward-box .reward-info h3 {
  margin: 0;
  font-size: 1.1em;
  color: #fff;
}

.reward-box .reward-info p {
  margin: 2px 0 0;
  font-size: 0.85em;
  color: #fff;
}

/* Grid für Fortschritt / Streaks */

.reward-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin: 10px 0 15px;
}

.reward-day {
  width: 100%;
  padding-top: 100%;
  position: relative;
  border: 2px solid #555;
  border-radius: 6px;
  text-align: center;
  color: #ccc;
  font-size: 0.9em;
}

.reward-day span,
.reward-day svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.reward-day.claimed {
  background-color: #27ae60;
  border-color: #27ae60;
  color: #fff;
}



/* Hinweistext */

.reward-note {
  font-size: 0.85em;
  color: #888;
  text-align: center;
  margin: 0;
}



.reward-validity {
  font-size: 0.6em;
  color: #aaa;
  margin-top: 4px;
}
.reward-label {
  margin-right: 8px;
  font-weight: normal;
  color: #ccc;
}


/*Ticket*/
.reward-code,
.ticket-code {
  background: rgba(var(--green),0.3);
  border: 2px dashed rgba(var(--green),1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  padding: 6px;
  margin: 15px 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: background 0.3s ease;
}
.reward-code:hover,
.ticket-code:hover {
  background: rgba(var(--green),0.5);
}

.ticket-left {
  width: 70%;
    padding:10px;
  padding-right: 12px;
}

.code-text {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 4px;
}

.reward-validity {
  font-size: 0.8em;
}

.ticket-right {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 2em;
  font-weight: bold;
  border-left: 2px dashed rgba(var(--green),1);
  height: 100%;
  text-align: center;
    padding:10px;
    white-space:nowrap;
}


.ticket-list {text-align:center;}
.ticket-code.hidden {
  display: none;
}
.show-more-tickets-link {
  display: inline-block;
  margin-bottom: 10px;
  cursor: pointer;
  text-decoration: underline;
    text-align:center;
  font-size: 0.9em;
    color:rgb(var(--light-blue));
}




.lottery-info-box h4 {margin:0px;}
.lottery-info-box p {margin:0px;font-size:0.9em;}

.countdown-box {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 10px 0;
}

.countdown-segment {
  background-color: #f1f3f5;
  border-radius: 8px;
  padding: 8px 12px;
  text-align: center;
  min-width: 60px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.countdown-segment span {
  display: block;
  font-size: 1.5em;
  font-weight: bold;
  color: #007bff;
}

.countdown-segment small {
  display: block;
  font-size: 0.75em;
  color: #555;
}

.lottery-box {
  background: rgba(var(--dark-blue), 0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

.lottery-box .header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.lottery-box .icon {
  background: linear-gradient(to right, #06b6d4, #3b82f6);
  padding: 10px;
  border-radius: 8px;
  margin-right: 12px;
  display: flex;
  align-items: center; 
  justify-content: center;
}

.lottery-box  .icon {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.lottery-box  .icon svg {
  stroke: rgb(var(--light-blue));/*#f97316*/; 
}


.lottery-box .info h3 {
  margin: 0;
  font-size: 1.2em;
  color: #fff;
}

.lottery-box .info p {
  margin: 2px 0 0;
  font-size: 0.9em;
  color: #ccc;
}

.quest-success,
.lottery-success {
  background: rgba(39, 174, 96, 0.2);
  border: 1px solid rgba(39, 174, 96, 0.5);
  color: #2ecc71;
  padding: 10px;
  border-radius: 6px;
  font-size: 0.95em;
  display: flex;
  align-items: center;
  justify-content: center;
    font-size:0.8em;
    text-align: center;
}

.quest-progress {}
.quest-progress h4 {margin-bottom:0;}

/*QUESTs*/

/* Quest Box */

.quest-box {
  background: rgba(var(--dark-blue), 0.6);
  border: 1px solid rgba(var(--light-blue), 0.5);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
    max-width: 100%;
  box-sizing: border-box;
  overflow: hidden; /* verhindert Überlauf */
}

.quest-header {
  display: flex;
  /*align-items: center;*/
  gap: 12px;
  align-items: flex-start;
  flex-wrap: nowrap;  /* alles bleibt in einer Zeile */
}


/* Textbereich darf schrumpfen */
.quest-info {
  flex: 1 1 auto;
  min-width: 0; /* WICHTIG für text-overflow */
}

.quest-info h3,
.quest-info p {
 /* white-space: nowrap;*/
  overflow: hidden;
  text-overflow: ellipsis;
}

.quest-content,
.quest-content p,
.quest-content ul{
    font-size:0.9em;
    font-style:italic;
    color:#ccc;
}
.quest-content ul{
    margin-block-start: 0.5em;
    padding-inline-start: 25px;
}
    
.lottery-summary,
.lottery-summary p,
.lottery-summary ul{
    font-size:0.9em;
    font-style:italic;
    color:#ccc;
}
.lottery-summary h4 {margin-bottom:0;}
.lottery-summary ul{
    margin-block-start: 0.5em;
    padding-inline-start: 25px;
}


/*
.quest-icon {
  background: linear-gradient(to right, #3b82f6, #06b6d4);
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.quest-icon svg {
  stroke: #fff;
}*/


.quest-icon {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  /*margin-right: 12px;*/
  height: 30px;
  width: 30px;    
}

.quest-icon svg {
  stroke: rgb(var(--light-blue));/*#f97316*/; 
}


.quest-info h3 {
  margin: 0;
  font-size: 1.1em;
  color: #fff;
}

.quest-info p {
  margin: 2px 0 0;
  font-size: 0.9em;
  color: #ccc;
}

.quest-status {
  margin-left: auto;
  font-size: 1.2em;
  color: #27ae60;
}

.quest-checkmark {
  display: inline-block;
}

.quest-actions {
  margin-top: 10px;
}

.primary-btn,
.reward-btn,
.quest-btn {
  width: 100%;
  background: linear-gradient(to right, #8b5cf6, #ec4899);
  border: none;
  padding: 10px 0px;
  font-size:14px;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s;
  display: inline-block;
}

.primary-btn:hover,
.reward-btn:hover,
.quest-btn:hover {
  background: linear-gradient(to right, #7c3aed, #db2777);
}

.primary-btn:disabled,
.reward-btn:disabled,
.quest-btn:disabled {
  background: #555;
  cursor: not-allowed;
  opacity: 0.6;
}

.btn.disabled,
.btn:disabled {
  background: #cccccc;
  color: #777777;
  border: 1px solid #aaaaaa;
  cursor: not-allowed;
  box-shadow: none;
  text-decoration: none;
  pointer-events: none;
  opacity: 0.6;
}
.btn.disabled:hover,
.btn:disabled:hover {
  background: #cccccc;
  color: #777777;
}


.shop-btn {
    background: linear-gradient(to right, #fbbf24, #facc15, #fef08a);
    color: black;
}
.shop-btn:hover {
      background: linear-gradient(to right, #f59e0b, #eab308, #facc15);
    cursor: pointer;
}

.shop-btn {
  position: relative;
  color: #000;
  background: linear-gradient(to right, #facc15, #fde047, #facc15);
  border: none;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}

.shop-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 60%
  );
  transform: rotate(0deg);
  animation: glitter 2.5s infinite linear;
  pointer-events: none;
  z-index: 2;
}

@keyframes glitter {
  0% {
    transform: rotate(0deg) translateX(-100%);
  }
  100% {
    transform: rotate(0deg) translateX(100%);
  }
}

.glitter-button:hover {
  background: linear-gradient(to right, #facc15, #fbbf24, #f59e0b);
  box-shadow: 0 0 12px #facc15;
  cursor: pointer;
}


.svg-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  vertical-align: middle;
}

.svg-icon.large {
  width: 32px;
  height: 32px;
}

.svg-icon.xlarge {
  width: 40px;
  height: 40px;
}



/*PROFILE PICtURE*/
.profile-picture {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 0px solid rgb(var(--light-blue));
  background: rgba(var(--dark-blue),0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-picture svg {
  width: 36px;
  height: 36px;
  stroke: rgb(var(--light-blue));
}
.profile-name {
  flex: 0 1 70%;
  max-width: 70%;
}
.profile-name h1 {
    margin-bottom:5px;
    font-size:1.8em;
  max-width: 100%;
  white-space: nowrap;         /* kein Umbruch */
  overflow: hidden;            /* alles über den Bereich hinaus abschneiden */
  text-overflow: ellipsis;     /* "..." am Ende zeigen */
}
.profile-name p{
    margin-bottom:5px;
    font-size:0.9em;
}

/*Info Toggle*/
.info-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 4px;
  vertical-align: 10px ;
  color:#fff;    
}

.info-toggle .svg-icon {
  width: 18px;
  height: 18px;
  stroke: #aaa;
  transition: stroke 0.3s;
}

.info-toggle:hover .svg-icon {
  stroke: #fff;
}


.reward-gains {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  /*align-items: flex-end;*/
  gap: 0px;
  flex-shrink: 0;
}

.reward-gains-item {
  display: flex;
  align-items: center;
  gap: 0px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  align-self: flex-end;
}

.reward-gains-item svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
  margin-right:3px;
}

.reward-icon-coin {
  color: #facc15;
  stroke: #facc15; /* Amber */
}

.reward-icon-xp {
  color: #c084fc;
  stroke: #c084fc; /* Violet */
}

.reward-gains-note {
  font-size: 0.65rem;
  color: #aaa;
  text-align:right;
  white-space: nowrap;
}





.quest-header {
  display: flex;
  gap: 12px;
}

.quest-icon {
  flex: 0 0 auto;
}

.quest-info {
  flex: 1 1 auto;
  min-width: 0; /* wichtig für flex-shrink */
}


/* Optional: Wenn der Text trotzdem sehr lang wird, kürze den Mittelteil */
.quest-info h3 {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.quest-info p {
  font-size: 0.85em;
  margin: 2px 0 0;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Einheitliche Größe für alle SVG-Icons */
.svg-icon {
  width: 24px;   /* oder 20px je nach Bedarf */
  height: 24px;
  display: inline-block;
  flex-shrink: 0;
}



.section-header {margin-top:2em;margin-left:10px;margin-bottom:5px;}
.section-info {font-size:0.9em;margin-left:10px;}



.overview-item svg{height:18px;width:18px;}

.overview-item-level * {  
  color: #22d3ee;
  stroke: #22d3ee; /* Violet */ 
}


.overview-item-xp * {
  color: #c084fc;
  stroke: #c084fc; /* Violet */     
}

.overview-item-credits * {
  color: #facc15;
  stroke: #facc15; /* Amber */    
}




/*FEUERWERK*/
#level-up-firework .spark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(to right, #facc15, #c084fc);
  opacity: 0.9;
  animation: sparkMove 1.5s ease-out forwards;
}

@keyframes sparkMove {
  to {
    transform: translate(var(--dx), var(--dy)) scale(0.2);
    opacity: 0;
  }
}

#level-up-firework.hidden {
  display: none;
}


/*LEVEL UP BADGE*/
#level-up-badge {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: rgba(30,30,30,0.95);
  border: 2px solid #c084fc;
  border-radius: 12px;
  padding: 30px 40px;
  text-align: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

#level-up-badge.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

#level-up-badge .badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#level-up-badge .badge-icon {
  width: 50px;
  height: 50px;
  fill: #facc15;
  margin-bottom: 10px;
  animation: badge-pulse 1.5s infinite;
}

#level-up-badge h3 {
  margin: 0;
  color: #fff;
  font-size: 1.4em;
}

#level-up-badge p {
  margin: 5px 0 0;
  color: #ddd;
  font-size: 1em;
}

@keyframes badge-pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}



/*Quest Content ein und ausblenden*/
.reward-content,
.quest-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.reward-box.active .reward-content,
.quest-box.active .quest-content {
  max-height: 2000px; /* oder ein Wert, der passt */
}



/*Booking Link*/
.comeback-booking-link {
  text-align: center;
  margin-top: 15px;
}




.guide-box {
  border: 2px solid #0076FF;
  padding: 20px;
  font-style: italic;
  color:#fff;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}





/* Leuchteffekt beim Button */
.btn.glow-effect {
  position: relative;
  animation: glow 0.7s ease-out forwards;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 0px rgba(255, 215, 0, 0.8);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 1), 0 0 40px rgba(255, 165, 0, 0.7);
  }
  100% {
    box-shadow: 0 0 0px rgba(255, 215, 0, 0);
  }
}

/* Optionale Partikeleffekte (einfach) */
.spark-container {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.spark {
  position: absolute;
  width: 6px;
  height: 6px;
  background: gold;
  border-radius: 50%;
  opacity: 0;
  animation: sparkAnim 0.6s ease-out forwards;
}

@keyframes sparkAnim {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--dx), var(--dy)) scale(0.5);
  }
}



.glow-pulse {
  display: inline-block;
  position: relative;
  animation: pulse-glow 2s infinite;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  transition: box-shadow 0.3s ease-in-out;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.6);
  }
  50% {
    box-shadow: 0 0 20px rgba(236, 72, 153, 1), 0 0 30px rgba(236, 72, 153, 0.8);
  }
  100% {
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.6);
  }
}



/*Reviews*/
.review-links ul {
  margin-top:0px;margin-bottom:30px;
}
.review-links p {
  margin-bottom:5px; 
}
.review-links a {
  color: rgb(var(--light-blue));
  text-decoration: none;
}

.review-links a:hover {
  text-decoration: underline;
}




/*LEVELS*/
.quest-box.reached-level {
  opacity: 0.9;
}

.quest-box.current-level {
  box-shadow: 0 0 10px rgba(241, 196, 15, 0.8);
}

.quest-box.upcoming-level {
  opacity: 0.6;
  filter: grayscale(0.3);
}








/*HISTORY*/

/* ======= VIP-Style kompatibel, neue Visit-Varianten ======= */
:root {
  --light-blue: 127, 183, 250;
  --dark-blue: 21, 29, 51;
  --mid-blue: 27, 39, 133;
  --surface-1: rgba(var(--dark-blue), 0.6);
  --surface-2: rgba(255,255,255,0.06);
  --border-1: rgba(var(--light-blue), 0.5);
  --text: #f0f0f0;
  --muted: #ccc;
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body { max-width:100%; overflow-x:hidden; }

/* Grid */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 10px;
}

@media (min-width: 700px) {
  .visit-grid { grid-template-columns: 1fr; }
}

/* Visit Box (analog quest-box) */
.visit-box {
  background: var(--surface-1);
  border: 1px solid var(--border-1);
  border-radius: 12px;
  padding: 0; /* Header hat eigene Padding-Regel */
  overflow: hidden;
}

/* Header als Button für bessere Zugänglichkeit */
.visit-header {
  width: 100%;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-width: 0;
  padding: 16px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.visit-header:focus-visible {
  outline: 2px solid rgba(var(--light-blue), .8);
  outline-offset: 2px;
}

.visit-icon {
  background: var(--surface-2);
  border-radius: 8px;
  width:45px; 
  display:flex; align-items:center; justify-content:center;
  flex: 0 0 auto;
}
.visit-icon .svg-icon { stroke: rgb(var(--light-blue)); }

.visit-info { flex: 1 1 auto; min-width: 0; text-align: left; }
.visit-info small { color: #aaa; display:block; }
.visit-title {
  margin: 0;
  font-size: 1.1em;
  color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.visit-info p { margin: 2px 0 0; font-size: .9em; color: #ccc; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }

.visit-status { margin-left:auto; display:flex; align-items:center; gap:8px; }
.visit-note { font-size:.7rem; color:#aaa; text-align:right; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.visit-chevron { transition: transform .2s ease; }
.visit-chevron.rotated { transform: rotate(180deg); }

/* Inhalt der Visit-Box */
.visit-content {
  padding: 0 16px 16px;
}

/* Visit Content Bereiche */
.visit-section {
  /*border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(0,0,0,0.15);*/
  margin: 10px 0;
  overflow: hidden;
}
.visit-section[open] .chevron { transform: rotate(180deg); }

.visit-section-header {
  display: flex; align-items: center; justify-content: space-between;
  list-style: none; cursor: pointer; padding: 10px 0px;
}
.visit-section-header::-webkit-details-marker { display:none; }
.visit-section-title { display:flex; align-items:center; gap:8px; color:#fff; font-weight:600; overflow:hidden;margin-right:5px; }
.visit-section-title .dot { width:8px; height:8px; border-radius:50%; background: rgb(var(--light-blue)); display:inline-block;    flex: 0 0 auto; }

/* … Linie rechts bis zum Zeilenende */
.visit-section-title::after {
  content: "";
  display: block;
  flex: 1 1 auto;
  height: 0;          
  border-top: 1px solid rgba(255,255,255,1);
  margin-left: 0px;         /* Abstand zum Titel */
  transform: translateY(0.1em);
    width:300px
}
    
.visit-section-content { /*padding: 10px 12px 10px 25px; */ padding: 0px; color:#ccc; }
.visit-section-content h4 {margin:15px 0px 3px; font-weight:500;font-size:0.9em;}    
    
/* Tabellen */
.stats-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85em;
}
.stats-table th,
.stats-table td {
  padding: 2px 8px 0px 0px;
  text-align: left;
  word-break: break-word;
}
.stats-table th {
  font-weight: 600;
  border-bottom: 1px solid rgba(var(--light-blue),0.75);
  background: rgba(255,255,255,0.05);
}
.stats-table .center { text-align:center; }

    .stats-key {white-space:nowrap;font-weight:600;}    
    
/* Spielerübersicht – horizontal scrollen, wenn nötig */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-wrapper table {
 /* min-width: 720px; /* je nach Spaltenanzahl anpassen */
  border-collapse: collapse;
}
.table-wrapper th,
.table-wrapper td {
  white-space: nowrap; /* verhindert Zeilenumbruch innerhalb der Zellen */
}

/* Media */
.media-toggle { margin-top: 10px; }
.media-grid {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
@media (max-width: 600px) { .media-grid { grid-template-columns: 1fr; } }

.media-card {
  position: relative;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: .5rem;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: .5rem;
}

/* Video unten */
.media-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* Originalformat beibehalten */
  background: #000;
}

/* Thumbnail oben drüber */
.media-thumb {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* gleiches Verhalten wie Video */
  background: #000;
  transition: opacity .25s ease;
  z-index: 2;
  cursor: pointer;
}
.media-thumb.is-hidden { opacity: 0; pointer-events: none; }

.media-thumb--placeholder,
.media-video--placeholder {
  width: 100%;
  background: rgba(255,255,255,0.06);
}

/* Play Button oben (zentriert) */
.play-button {
  position: absolute;
  z-index: 3;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none; cursor: pointer;
  display:flex; align-items:center; justify-content:center;
}
.play-button::before {
  content:""; display:block; width:0; height:0;
  border-left:20px solid #000; border-top:12px solid transparent; border-bottom:12px solid transparent;
}
.play-button.is-hidden { display:none; }

.media-body { 
  padding: .5rem .75rem; 
  display:flex; 
  align-items:center; 
  justify-content: space-between; 
  gap: .5rem; 
  width: 100%;
}
.media-type { font-size:.9rem; font-weight:600; color:#fff; }

/* Sonstiges / Icons */
.visit-box .svg-icon { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; }
.chevron { transition: transform .2s ease; }

/* Buttons */
.link-btn { display:inline-block; }

/* Mobile Feinschliff */
@media (max-width:600px){
  .container { padding: 8px; }
}
    

/* Medien allgemein */
img, video { max-width:100%; height:auto; display:block; }



.link-btn{
  background: rgba(var(--light-blue), 0.2);
  border:1px solid rgba(var(--light-blue), 0.5)
}
.link-btn:hover{
  background: rgba(var(--light-blue), 0.5);
  border:1px solid rgba(var(--light-blue), 0.5)
}







  /* Adventskalender – Eis-Optik */
    /* Adventskalender – Eingefrorene Eis-/Schnee-Box */
  .advent-box {
    position: relative;
    margin-top: 20px;
    background: linear-gradient(135deg, rgba(230,245,255,0.98), rgba(190,220,255,0.96));
    border: 1px solid rgba(180,210,255,0.9);
    box-shadow: 0 0 22px rgba(160,200,255,0.65);
    border-radius: 16px;
    overflow: hidden;
  }

  /* Frostige Glas-Schicht */
  .advent-box::before {
    content: "";
    position: absolute;
    inset: -5px;
    background:
      linear-gradient(135deg, rgba(255,255,255,0.45), rgba(200,230,255,0.15));
    box-shadow:
      inset 0 0 25px rgba(255,255,255,0.75),
      inset 0 0 60px rgba(180,210,255,0.55);
    opacity: 0.95;
    pointer-events: none;
  }

  /* Schneeflocken-Ebene */
  /* Adventskalender – Eingefrorene Eis-/Schnee-Box */
.advent-box {
  position: relative;
  margin-top: 20px;
  background: linear-gradient(135deg, rgba(180,205,235,0.95), rgba(150,185,220,0.94));
  border: 1px solid rgba(120,160,210,0.9);
  box-shadow: 0 0 22px rgba(120,160,210,0.6);
  border-radius: 16px;
  overflow: hidden;
}

/* Frostige Glas-Schicht */
.advent-box::before {
  content: "";
  position: absolute;
  inset: -5px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.25), rgba(210,230,255,0.1));
  box-shadow:
    inset 0 0 25px rgba(255,255,255,0.55),
    inset 0 0 60px rgba(180,210,255,0.35);
  opacity: 0.9;
  pointer-events: none;
}

/* ❄️ Emoji-Schneeflocken */
.advent-box {
  position: relative;
  margin-top: 20px;
  background: linear-gradient(
    135deg,
    rgba(90,140,205,0.97),
    rgba(20,45,90,0.96)
  ); /* deutlich stärkerer Verlauf */
  border: 1px solid rgba(110,160,220,0.95);
  box-shadow:
    0 0 22px rgba(110,160,220,0.7),
    inset 0 0 25px rgba(255,255,255,0.35);
  border-radius: 16px;
  overflow: hidden;
}

/* ❄ Kleine, dichte Schneeflocken – Ebene 1 */
.advent-box::before {
  content: "❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄";
  position: absolute;
  top: -60%;
  left: -20%;
  width: 200%;
  height: 200%;
  font-size: 14px;          /* kleinere Flocken */
  line-height: 28px;
  pointer-events: none;
  opacity: 0.8;
  animation: snow-fall-small 10s linear infinite;
  white-space: pre-wrap;
}

/* ❄ Größere Schneeflocken – Ebene 2 (andere Größe & Geschwindigkeit) */
/* Adventskalender – Eingefrorene Eis-/Schnee-Box */
.advent-box {
  position: relative;
  margin-top: 20px;

  /* Dunklerer Eis-Farbverlauf */
  background: linear-gradient(
    135deg,
    rgba(60,110,180,0.97),
    rgba(10,25,60,0.97)
  );

  border: 1px solid rgba(110,160,220,0.95);
  box-shadow:
    0 0 22px rgba(110,160,220,0.7),
    inset 0 0 25px rgba(255,255,255,0.35);
  border-radius: 16px;
  overflow: hidden;
}

/* Schneeflocken – Layer 1 (kleine Partikel) */
.advent-box::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  pointer-events: none;
  background-image: radial-gradient(white 50%, transparent 50%);
  background-size: 4px 4px;
  opacity: 0.65;
  animation: snow-small 12s linear infinite;
  filter: blur(0.5px);
}

/* Adventskalender – Eingefrorene Eis-/Schnee-Box */
.advent-box {
  position: relative;
  margin-top: 20px;
  background: linear-gradient(
    135deg,
    rgba(90,140,205,0.97),
    rgba(20,45,90,0.96)
  ); /* deutlicher, dunkler Eis-Verlauf */
  border: 1px solid rgba(110,160,220,0.95);
  box-shadow:
    0 0 22px rgba(110,160,220,0.7),
    inset 0 0 25px rgba(255,255,255,0.35);
  border-radius: 16px;
  overflow: hidden;
}

  /* Adventskalender – Eingefrorene Eis-/Schnee-Box */
  .advent-box {
    position: relative;
    margin-top: 20px;
    background: linear-gradient(135deg, rgba(230,245,255,0.98), rgba(190,220,255,0.96));
    border: 1px solid rgba(180,210,255,0.9);
    box-shadow: 0 0 22px rgba(160,200,255,0.65);
    border-radius: 16px;
    overflow: hidden;
  }

 /* Adventskalender – Eingefrorene Eis-/Schnee-Box */
.advent-box {
  position: relative;
  margin-top: 20px;
  background: linear-gradient(
    135deg,
    rgba(70,110,170,0.96),
    rgba(18,40,80,0.97)
  ); /* dunkler für bessere Kontraste */
  border: 1px solid rgba(110,160,220,0.95);
  box-shadow:
    0 0 25px rgba(110,160,220,0.7),
    inset 0 0 25px rgba(255,255,255,0.35);
  border-radius: 16px;
  overflow: hidden;
}

/* Frostglas – leichte Eisoberfläche */
.advent-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.40),
      rgba(200,230,255,0.12)
    );
  box-shadow:
    inset 0 0 25px rgba(255,255,255,0.75),
    inset 0 0 55px rgba(180,210,255,0.50);
  opacity: 0.92;
  pointer-events: none;
}

/* ❄ Dichtere Schneeschicht – mehrere Ebenen */
.advent-box::after {
  content: "";
  position: absolute;
  inset: 0;

  /* 3 Ebenen Schnee, dichter & mehr Variation */
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.90) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(255,255,255,0.75) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(255,255,255,0.85) 0 3px, transparent 4px),
    radial-gradient(circle, rgba(255,255,255,0.70) 0 1.5px, transparent 2.5px);

  background-size:
    120px 120px,
    160px 160px,
    200px 200px,
    100px 150px;

  opacity: 0.65;
  animation: advent-snow-fall 18s linear infinite;
  pointer-events: none;
}

@keyframes advent-snow-fall {
  0% {
    background-position:
      0 0,
      0 0,
      0 0,
      0 0;
  }
  100% {
    background-position:
      0 700px,
      0 550px,
      0 600px,
      0 500px;
  }
}

/* Text besser lesbar */
.advent-box .reward-info h3 {
  color: #dcefff; /* heller, aber definiert */
  text-shadow: 0 0 8px rgba(0,0,0,0.55);
}

.advent-box .reward-info p {
  color: #c9ddf3; /* dunkler, frostig */
  text-shadow: 0 0 6px rgba(0,0,0,0.55);
}

/* Adventskalender SVG rot/grün (beibehalten) */
.advent-box .reward-icon .svg-icon {
  color: #e74c3c;
  fill: #e74c3c;
  stroke: #27ae60;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.9));
}







  /* Eis-Button: "Einfrieren"-Effekt */
  .btn-freeze {
    position: relative;
    background: #3498db;
    border-color: #3498db;
    color: #ffffff !important;
    overflow: hidden;
    transition:
      transform 0.15s ease,
      box-shadow 0.15s ease,
      background 0.2s ease,
      color 0.2s ease;
    box-shadow: 0 0 0 rgba(160,200,255,0);
  }

  .btn-freeze::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.65), transparent 60%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .btn-freeze:hover,
  .btn-freeze:focus {
    transform: translateY(-1px);
    background: #5dade2;
    box-shadow: 0 0 14px rgba(160,200,255,0.9);
  }

  .btn-freeze:hover::before,
  .btn-freeze:focus::before {
    opacity: 1;
  }

  .btn-freeze:active {
    transform: scale(0.96);
    background: #2980b9;
    box-shadow: inset 0 0 14px rgba(0,0,0,0.3);
  }

  /* Golden Ticket – Box & Buttons */
  .golden-lottery-box {
    margin-top: 18px;
    border: 1px solid rgba(241,196,15,0.95);
    box-shadow: 0 0 20px rgba(241,196,15,0.45);
    background: #000000; /* HINTERGRUND JETZT SCHWARZ */
    color: #f9e79f;
  }

  .golden-lottery-box .reward-header {
    background: #000000;
    border-bottom: 1px solid rgba(241,196,15,0.6);
  }

  .golden-lottery-box .reward-info h3 {
    color: #f7dc6f;
  }

  .golden-lottery-box .reward-info p {
    color: #f9e79f;
  }

  .golden-lottery-box .lottery-summary h4 {
    color: #f7dc6f;
  }

  .golden-lottery-box .lottery-summary ul li {
    color: #fdf3c7;
  }

  /* SVG in der Golden Ticket Box komplett golden, Linien dunkleres Gold */
  .golden-lottery-box .reward-icon .svg-icon {
    color: #f1c40f;
    fill: #f1c40f;
    stroke: #d4ac0d;
  }

  /* Countdown-Styling speziell für Golden-Ticket-Box */
  .golden-lottery-box .countdown-segment {
    background: #f1c40f;
    color: #000000;
  }

  .golden-lottery-box .countdown-segment span,
  .golden-lottery-box .countdown-segment small {
    color: #000000;
  }

  /* Goldener Button – wird aktuell NICHT für Golden-Ticket-Buttons genutzt,
     da diese den gleichen Style wie die VIP-Verlosungs-Buttons haben sollen */
  .btn-golden {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    border-color: #f1c40f;
    color: #111111 !important;
    box-shadow: 0 0 12px rgba(241,196,15,0.45);
    transition:
      transform 0.15s ease,
      box-shadow 0.15s ease,
      background 0.2s ease;
    position: relative;
    overflow: hidden;
  }

  .btn-golden::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: linear-gradient(
      120deg,
      rgba(255,255,255,0.0) 0%,
      rgba(255,255,255,0.7) 45%,
      rgba(255,255,255,0.0) 100%
    );
    transform: translateX(-120%);
    pointer-events: none;
  }

  .btn-golden:hover,
  .btn-golden:focus {
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(241,196,15,0.8);
  }

  .btn-golden:hover::before,
  .btn-golden:focus::before {
    animation: golden-sheen 0.8s ease-out;
  }

  .btn-golden:active {
    transform: scale(0.97);
    box-shadow: inset 0 0 16px rgba(0,0,0,0.45);
    background: linear-gradient(135deg, #d4ac0d, #e67e22);
  }

  @keyframes golden-sheen {
    0% {
      transform: translateX(-120%);
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
    100% {
      transform: translateX(120%);
      opacity: 0;
    }
  }
