@font-face {
  font-family: 'BitcountGrid';
  src: url('/assets/fonts/BitcountGridSingle-VariableFont_CRSV,ELSH,ELXP,slnt,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}

/* === Grundfarben === */
:root {
  --accent: #ea7216;
  --bg-dark: #0e1621;
  --bg-card: #16202f;
  --text-light: #ccc;
  --text-white: #fff;
}

/* === Allgemein === */
body {
  margin: 0;
  background: var(--bg-dark);
  color: var(--text-white);
  font-family: 'BitcountGrid', sans-serif;
}

.partner-page {
  padding: 40px 20px;
}

.partner-title {
  font-size: 2.8rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.partner-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* === ORGA-KARTEN === */
.orgas-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.orga-card {
  background: var(--bg-card);
  border-radius: 15px;
  overflow: hidden;
  width: 450px;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
  border: 2px solid transparent;
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

.orga-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 0 25px rgba(234,114,22,0.4);
}

.orga-banner img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.orga-name {
  background: #0c121b;
  text-align: center;
  padding: 15px;
  color: var(--accent);
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

/* === STREAMER (3-SPALTIGES GRID) === */
.player-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-items: center;
  margin-top: 40px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.player-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-card);
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  position: relative;
  width: 100%;
  max-width: 360px;
  min-height: 380px;
}

.player-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(234,114,22,0.4);
}

.player-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid var(--accent);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.player-card:hover .player-img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.player-info {
  padding: 18px;
  padding-bottom: 60px; /* sorgt für Abstand zum Game-Icon */
}

.player-info h3 {
  margin: 0 0 8px 0;
  color: var(--accent);
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.player-info p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.4;
}

.player-socials {
  margin-top: 10px;
  font-size: 1.2rem;
  color: var(--accent);
}

.player-socials i {
  margin-right: 10px;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.player-socials i:hover {
  color: #ff9440;
  transform: scale(1.15);
}

/* === SPIEL-LOGO (Glow-Effekt) === */
.player-game {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 1;
}

.player-game img {
  width: 46px;
  filter: drop-shadow(0 0 6px rgba(234,114,22,0.7));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.player-card:hover .player-game img {
  transform: scale(1.1);
  filter: drop-shadow(0 0 14px rgba(234,114,22,0.95));
}

/* === RESPONSIVE === */
@media (max-width: 1000px) {
  .orga-card {
    width: 90%;
  }
}

@media (max-width: 900px) {
  .player-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .player-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .partner-title {
    font-size: 2rem;
  }

  .partner-subtitle {
    font-size: 0.9rem;
  }

  .player-info h3 {
    font-size: 1.2rem;
  }

  .player-info p {
    font-size: 0.85rem;
  }
}

/* === LINKS: Kein Blau, keine Unterstreichung === */
a,
a:link,
a:visited,
a:hover,
a:focus,
a:active {
  color: inherit;
  text-decoration: none;
  outline: none;
}
