body {
  background-image: url('../images/misc/backround.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Coming Soon */
.coming-soon-container {
  text-align: center;
  padding: 120px 20px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.coming-soon-content {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(20, 20, 20, 0.9) 100%);
  padding: 80px 60px;
  border-radius: 20px;
  border: 2px solid var(--gold);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(212, 175, 55, 0.2);
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.coming-soon-title {
  color: var(--gold);
  font-size: 4em;
  font-weight: 700;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.9), 0 0 40px rgba(212,175,55,0.5);
  margin: 0 auto 25px auto;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #d4af37 0%, #f0d475 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.coming-soon-text {
  color: #fff;
  font-size: 1.4em;
  margin: 0;
  letter-spacing: 1px;
}

.no-content {
  text-align: center;
  color: #ccc;
  font-size: 1.3em;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(20, 20, 20, 0.6) 100%);
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.2);
}

/* Ränge Container */
.raenge-container {
  margin-top: 30px;
}

.raenge-section {
  margin-bottom: 60px;
}

.raenge-section-title {
  color: var(--gold);
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.9), 0 0 30px rgba(212,175,55,0.3);
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.raenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 220px));
  gap: 20px;
  margin-bottom: 40px;
  justify-content: center;
  align-items: start;
}

.rang-card {
  background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(20, 20, 20, 0.85) 50%,
    rgba(0, 0, 0, 0.75) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  padding: 20px 18px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(15px);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(212, 175, 55, 0.1) inset,
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
  width: 100%;
  max-width: 220px;
  min-width: 200px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  isolation: isolate;
}

.rang-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(212, 175, 55, 0.1),
    transparent);
  transition: left 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.rang-card:hover::before {
  left: 100%;
}

.rang-card:hover {
  border-color: var(--gold);
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.2) 0%,
    rgba(20, 20, 20, 0.9) 50%,
    rgba(212, 175, 55, 0.2) 100%);
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.7),
    0 0 25px rgba(212, 175, 55, 0.3),
    0 0 0 1px rgba(212, 175, 55, 0.4) inset;
}

.rang-content {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.rang-image {
  width: 33px;
  height: 33px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(0, 0, 0, 0.3);
  padding: 3px;
  transition: all 0.3s ease;
}

.rang-card:hover .rang-image {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  transform: scale(1.05);
}

.rang-name {
  color: #ffffff;
  font-size: 0.95em;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.8),
    0 0 15px rgba(212, 175, 55, 0.2);
  line-height: 1.3;
  margin: 0;
  padding: 0;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  flex: 1;
  min-width: 0;
}

.rang-card:hover .rang-name {
  color: var(--gold);
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(212, 175, 55, 0.5),
    0 0 30px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
  .raenge-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 180px));
    justify-content: center;
  }

  .rang-card {
    max-width: 100%;
    padding: 18px 15px;
  }

  .rang-content {
    gap: 10px;
  }

  .rang-image {
    width: 28px;
    height: 28px;
  }

  .rang-name {
    font-size: 1em;
  }

  .raenge-section-title {
    font-size: 1.8em;
  }
}
