
@tailwind base;
@tailwind components;
@tailwind utilities;

body {
  margin: 0;
  height: 100vh;
  padding: 0;
  background: linear-gradient(135deg, #1a0033, #330066, #ff00cc, #6600ff, #1a0033);
  background-size: 400% 400%;
  animation: gradientFlow 20s ease infinite;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  overflow-x:hidden;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
                    linear-gradient(to right, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridScroll 10s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes gridScroll {
  0% { background-position: 0 0; }
  100% { background-position: 0 40px; }
}


.glow {
  text-shadow: 0 0 10px #ff00cc, 0 0 20px #ff00cc, 0 0 40px #ff00cc;
  font-weight: bold;
}

.container {
    padding: 0 3rem;
}

h2 {
    font-size: 6rem;
   
}

h1.hero-title {
  font-size: 6rem;
  text-align: center;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
    margin-top: 20px;
    margin-bottom: 10px;

  text-shadow:
    0 0 5px #ff00ff,
    0 0 10px #ff00ff,
    0 0 20px #ff00ff;

  animation: subtleNeonGlow 4s ease-in-out infinite;
}

@keyframes subtleNeonGlow {
  0% {
    text-shadow:
      0 0 5px #ff00ff,
      0 0 10px #ff00ff,
      0 0 20px #ff00ff;
  }
  25% {
    text-shadow:
      0 0 6px #ff66ff,
      0 0 12px #ff66ff,
      0 0 24px #ff66ff;
  }
  50% {
    text-shadow:
      0 0 7px #cc66ff,
      0 0 14px #cc66ff,
      0 0 28px #cc66ff;
  }
  75% {
    text-shadow:
      0 0 6px #ff33cc,
      0 0 12px #ff33cc,
      0 0 24px #ff33cc;
  }
  100% {
    text-shadow:
      0 0 5px #ff00ff,
      0 0 10px #ff00ff,
      0 0 20px #ff00ff;
  }
}

.title {
    font-size: 2rem;
}

.sidebar {
  position: fixed;
  width: 200px;
  height: 100vh;
  color: white;
}
.bannerbar {
  position: fixed;
  right: 0;
  top: 20%;
  width: 150px;
  height: 100vh;
  color: white;
}
.sidebar-promo {
    position: absolute;
    bottom: 0rem;
    left: 1.5rem;
}


.content {
  margin-left: 200px;
  margin-right: 150px;
  width: auto;
  position: relative;
  overflow: auto;
  z-index: 1;
  padding: 0 4rem;
  text-align: center;
}

a, u {
  text-decoration: none;
}

.info {
  width: 1440px;
  height: 300px;
  position: relative;
  background: #f55;
}
.avatar {
    text-align: center;
    margin-top: 0;
    font-size: 2.5rem;
}
.navlist {
    text-align: center;
    padding:0;
    margin:0;
    text-decoration-style: none;
    list-style-type: none;
}
.navlist li {
    padding: 10px 0;
}
.navlist li a {
    color: white;
    font-size: 1.5rem;
}

.infobox {
  background: linear-gradient(145deg, #1a001a, #330033);
  border-top: 2px solid rgba(255, 0, 255, 0.2);
  border-bottom: 2px solid rgba(255, 0, 255, 0.2);
  border-radius: 15px;
  color: white;
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
a, a:link, a:hover, a:visited, a:active{
  color: white;
}

.glass {
  
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  
}

.float-left > *{
  float: left;
}

.teaser-span {
  background: linear-gradient(145deg, #1a001a, #330033);
  border-top: 2px solid rgba(255, 0, 255, 0.2);
  border-bottom: 2px solid rgba(255, 0, 255, 0.2);
  border-radius: 15px;
  padding: 1rem 2rem;
  font-weight: 900;
  margin-top: 2rem;
  display: inline-block;
  font-size: 1.3rem;
}

.stream-schedule, .stream-table {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 3rem auto;
  padding: 3rem 2rem;
  background: linear-gradient(145deg, #1a001a, #330033);
  border-top: 2px solid rgba(255, 0, 255, 0.2);
  border-bottom: 2px solid rgba(255, 0, 255, 0.2);
  border-radius: 15px;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.2);
  transition: transform 0.2s ease;
}

.info-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

.info-title {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.site-footer {
  padding: 1rem 1rem 0 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
    clear: both;
    position: relative;
    height: 67px;
    margin-top: -48px;
    width: 100%;
}

.author-glow {
  color: #ff00ff;
  text-shadow: 0 0 8px #ff00ff;
  font-weight: bold;
}

.discord-link {
  color: #00ffff;
  margin-left: 6px;
  text-decoration: none;
  text-shadow: 0 0 6px #00ffff;
}

.discord-link:hover {
  text-decoration: underline;
}

main.container {
  padding-bottom: 100px;
  min-height: calc(100vh - 117px);
  
}


/** REVIEWS ***/
.review-section {
  padding: 3rem 1rem;
  /*background: linear-gradient(145deg, #1a001a, #330033);
  border-top: 2px solid rgba(255, 0, 255, 0.2);
  border-bottom: 2px solid rgba(255, 0, 255, 0.2); */
}

.review-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 0, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.1);
  backdrop-filter: blur(10px);
}

.review-avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #ff00ff;
  box-shadow: 0 0 12px #ff00ff;
  margin-bottom: 1rem;
}

.review-content h2 {
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 5px #ff00ff;
  margin-bottom: 1rem;
}

.review-content .highlight {
  color: #ff66ff;
  text-shadow: 0 0 10px #ff66ff;
}

.review-content p {
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 1rem;

}

.signature {
  font-style: italic;
  color: #ffccff;
  text-align: right;
  margin-top: 1rem;
}


/** LEADERBOARD **/
    .leaderboard {
        max-width: 720px;
        margin: 40px auto;
        border: 2px solid #ff00ff;
        border-radius: 15px;
        padding: 20px;
        background: rgba(0, 0, 0, 0.5);
        box-shadow: 0 0 20px #ff00ff;
    }

    .entry {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        margin: 8px 0;
        border-radius: 10px;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }

    .entry:nth-child(1) { background: rgba(255, 215, 0, 0.2); animation-delay: 0.2s; }
    .entry:nth-child(2) { background: rgba(192, 192, 192, 0.2); animation-delay: 0.4s; }
    .entry:nth-child(3) { background: rgba(205, 127, 50, 0.2); animation-delay: 0.6s; }
    .entry:nth-child(4) { background: rgba(0, 255, 255, 0.2); animation-delay: 0.8s; }
    .entry:nth-child(n+5) { background: rgba(255, 0, 255, 0.1); }
    .entry:nth-child(5) { animation-delay: 1.0s; }
    .entry:nth-child(6) { animation-delay: 1.2s; }
    .entry:nth-child(7) { animation-delay: 1.4s; }
    .entry:nth-child(8) { animation-delay: 1.6s; }
    .entry:nth-child(9) { animation-delay: 1.8s; }
    .entry:nth-child(10){ animation-delay: 2.0s; }

    .place {
        font-size: 1.2em;
        font-weight: bold;
        color: #ff00ff;
        text-shadow: 0 0 5px #ff00ff;
    }

    .name {
        flex-grow: 1;
        text-align: left;
        margin-left: 15px;
    }

    .prize {
        color: #FFF;
    text-shadow: 0 0 5px #ff00ff;
    font-weight: bold;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    /** REWARDS ***/

/* Page layout */
.page{max-width:1100px;margin:0 auto}
.hero{ text-align:center; margin-bottom:24px }
.hero-title{
  font-size:2rem;
  color: #fff;
  text-shadow: 0 0 8px var(--accent), 0 0 16px rgba(170,0,255,0.25);
  margin:0 0 8px;
}
.hero-sub{opacity:0.9}

/* glass card */
.glass{
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 18px;
  border-radius:12px;
  backdrop-filter: blur(8px);
  margin-bottom:20px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.5), 0 0 20px rgba(170,0,255,0.04) inset;
}

/* Tiers list */
.tier-list{display:flex;flex-direction:column;gap:12px}
.tier{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px;
  border-radius:10px;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(0,0,0,0.04));
  border: 1px solid rgba(255,255,255,0.03);
}

/* highlight special tiers */
.tier.vip{border-left:6px solid #ffd166}
.tier.vipplus{border-left:6px solid #7ae7ff}
.tier.bigdvip{border-left:6px solid #ff9ad6}

/* left / right columns inside tier */
.tier-left{min-width:160px}
.tier-rank{font-weight:700;color:var(--accent);text-shadow:0 0 6px rgba(255,0,200,0.2)}
.tier-goal{font-size:0.95rem;color:#ddd;margin-top:4px}

/* right */
.tier-right{text-align:right;min-width:220px}
.tier-reward{font-weight:700;color:var(--accent-2);margin-bottom:8px}
.progress-wrap{
  width:100%;
  height:10px;
  background:rgba(255,255,255,0.04);
  border-radius:6px;
  overflow:hidden;
  margin-bottom:6px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}
.progress{
  height:100%;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, rgba(255,0,200,0.9), rgba(0,255,238,0.9));
  transition: width 1s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 0 10px rgba(255,0,200,0.12);
}

/* progress text */
.progress-text{font-size:0.9rem;color:#ddd}

/* perks & CTA */
.perks ul{margin:8px 0 0 18px}
.cta .buttons{display:flex;gap:12px;flex-wrap:wrap;margin-top:12px}
.btn-primary{
  display:inline-block;padding:10px 16px;border-radius:10px;background:linear-gradient(90deg,#ff00cc,#ff66cc);
  color:#111;font-weight:700;text-decoration:none;box-shadow:0 8px 20px rgba(255,0,200,0.12);
}
.btn-ghost{
  display:inline-block;padding:10px 16px;border-radius:10px;background:transparent;border:1px solid rgba(255,255,255,0.06);
  color:#fff;text-decoration:none;
}


/* responsive */
@media (max-width:720px){
  .tier{flex-direction:column;align-items:flex-start}
  .tier-right{text-align:left;width:100%}
}


.reward-tier:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(255,255,255,0.5);
}

.reward-tier h2 {
  font-size: 1.8rem;
}

.reward-tier p {
  font-size: 1.1rem;
}

.perks {
  margin-top: 10px;
  padding: 10px;
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
}

.perks h3 {
  margin-bottom: 5px;
}

.perks ul {
  list-style: none;
  padding: 0;
}

.perks li {
  margin: 5px 0;
}

/* Farben für jede Stufe */
.bronze { background: linear-gradient(135deg, #cd7f32, #8b5a2b); }
.silver { background: linear-gradient(135deg, #c0c0c0, #808080); }
.vip { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.vip-plus { background: linear-gradient(135deg, #ff512f, #dd2476); }
.big-d-vip { background: linear-gradient(135deg, #ffb347, #ffcc33); }


 /** REWARDS  */
.rewards {
  display:flex;
  flex-direction: row;
  flex-wrap:wrap;
  gap:20px;
  justify-content:space-evenly;
  margin-top:20px;
}

.reward-tier {
  width: 260px;
  min-width:200px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.06));
  border:1px solid rgba(255,255,255,0.04);
  border-radius:12px;
  padding:18px;
  color:#fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6), 0 0 10px rgba(255,0,255,0.04) inset;
  transform: translateY(18px);
  opacity: 0;

  /* animation will run on load */
  animation: fadeInUp 0.6s ease forwards;
}

.reward-tier h2 { margin:0 0 8px; font-size:1.15rem; }
.reward-tier .perks { margin-top:10px; background: rgba(0,0,0,0.15); padding:8px; border-radius:8px; font-size:0.95rem; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* staggered delays so they appear one-after-another */
.rewards .reward-tier:nth-child(1) { animation-delay: 0.12s; }
.rewards .reward-tier:nth-child(2) { animation-delay: 0.28s; }
.rewards .reward-tier:nth-child(3) { animation-delay: 0.44s; }
.rewards .reward-tier:nth-child(4) { animation-delay: 0.60s; }
.rewards .reward-tier:nth-child(5) { animation-delay: 0.76s; }

/* fallback: if more than 5 boxes, keep increasing delay */
.rewards .reward-tier:nth-child(6) { animation-delay: 0.92s; }


.stream-times-list{
  list-style-type: none;
}

.mobile-nav {
  display: none;
}



/*** MOBILE ****/

/* Mobile Anpassung */
@media (max-width: 768px) {


html, body, .content, .main {
  width: 100%;
  margin: 0;
  padding: 0;

}

iframe {
  width: 700px;
  height: 350px;
}

  .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.8);
  padding: 10px 20px;
}

.nav-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-menu li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}
  .content {
    margin-left: 0;
    margin-right: 0;
  }
  .mobile-nav {
    display: block;
  }
  .bannerbar {
    display: none;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    background: rgba(0,0,0,0.95);
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 10px;
  }

  .nav-menu.active {
    display: flex;
    z-index: 101;
  }

  .nav-toggle {
    display: block;
  }
}