* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: #08070c;
  color: #f5f3fb;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

button,
a,
input,
textarea {
  font: inherit;
}

button,
a {
  cursor: pointer;
}


/* =========================
   APP
========================= */

.app {
  display: flex;
  min-height: 100vh;

  background:
    radial-gradient(
      circle at 80% 10%,
      #321052 0,
      #110b18 32%,
      #08070c 70%
    );
}


/* =========================
   SIDEBAR
========================= */

.sidebar {
  width: 250px;
  flex: none;

  padding: 28px 18px;

  border-right: 1px solid #2b2136;

  background: rgba(8, 7, 12, 0.94);

  display: flex;
  flex-direction: column;
}

.brand {
  text-align: center;
  margin-bottom: 30px;
}

.crown {
  font-size: 25px;
  color: #c56cff;
}

.sunny {
  font-size: 31px;
  font-weight: 800;
  font-style: italic;
}

.shine {
  font-size: 34px;
  font-weight: 900;
  color: #b85cff;
  font-style: italic;
  line-height: 0.85;
}

.brand small {
  color: #9a8da7;
  letter-spacing: 2px;
  font-size: 10px;
}


/* =========================
   NAVIGATION
========================= */

.nav {
  display: flex;
  gap: 14px;
  align-items: center;

  width: 100%;

  border: 0;
  background: transparent;

  color: #aaa1b5;

  padding: 14px 16px;

  border-radius: 12px;

  margin: 4px 0;

  text-decoration: none;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.nav:hover {
  background: #251333;
  color: white;
  transform: translateX(2px);
}

.nav.active {
  background: #7d2bd4;
  color: white;

  box-shadow:
    0 8px 25px rgba(125, 43, 212, 0.25);
}

.nav-icon {
  width: 22px;
  text-align: center;
  font-size: 17px;
}

.live-icon {
  color: #ff5870;
}


/* =========================
   USER
========================= */

.side-bottom {
  margin-top: auto;
}

.user {
  display: flex;
  gap: 10px;
  align-items: center;

  padding: 12px;

  border: 1px solid #29212f;
  border-radius: 14px;

  background: #100d16;
}

.avatar {
  width: 38px;
  height: 38px;

  border-radius: 50%;

  display: grid;
  place-items: center;

  background: #7d2bd4;

  font-weight: 800;

  box-shadow:
    0 0 18px rgba(125, 43, 212, 0.35);
}

.user b {
  font-size: 13px;
}

.user small {
  display: block;

  color: #8e8498;

  margin-top: 3px;
}

.side-bottom > small {
  display: block;

  color: #62586b;

  text-align: center;

  margin-top: 16px;
}


/* =========================
   MAIN
========================= */

.main {
  flex: 1;

  padding: 34px;

  max-width: 1500px;

  margin: auto;

  width: 100%;
}


/* =========================
   HEADER
========================= */

header {
  display: flex;

  justify-content: space-between;
  align-items: flex-start;

  gap: 20px;

  margin-bottom: 28px;
}

.eyebrow {
  font-size: 11px;

  letter-spacing: 2px;

  color: #a968dc;

  font-weight: 800;
}

h1 {
  font-size: 38px;

  margin: 6px 0;
}

header p {
  color: #9e96a7;

  margin: 0;
}

.discord-btn {
  background: #7d2bd4;

  color: white;

  border: 0;

  border-radius: 11px;

  padding: 12px 18px;

  text-decoration: none;

  font-weight: 700;

  box-shadow:
    0 8px 25px rgba(125, 43, 212, 0.18);

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.discord-btn:hover {
  background: #9144e8;

  transform: translateY(-2px);
}


/* =========================
   HERO
========================= */

.hero {
  position: relative;

  overflow: hidden;

  border: 1px solid #352542;

  border-radius: 18px;

  padding: 26px;

  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(125, 43, 212, 0.18),
      transparent 45%
    ),
    linear-gradient(
      110deg,
      #190d25,
      #100d16
    );

  margin-bottom: 20px;

  min-height: 190px;
}

.hero-loading {
  color: #8f8595;

  display: flex;

  align-items: center;

  min-height: 130px;
}


/* LIVE HERO */

.live-hero {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 25px;
}

.live-hero-content {
  flex: 1;
}

.live-status {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 7px 11px;

  border-radius: 8px;

  background: rgba(255, 55, 82, 0.12);

  border: 1px solid rgba(255, 55, 82, 0.22);

  color: #ff6077;

  font-size: 12px;

  font-weight: 900;

  letter-spacing: 0.8px;
}

.live-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #ff4d68;

  box-shadow:
    0 0 12px rgba(255, 77, 104, 0.8);
}

.offline-status {
  background: rgba(140, 130, 150, 0.08);

  border-color: #302839;

  color: #948a9f;
}

.offline-status .live-dot {
  background: #716978;

  box-shadow: none;
}

.live-hero h2 {
  margin: 13px 0 7px;

  font-size: 25px;

  line-height: 1.25;
}

.live-details {
  color: #aaa1b0;

  margin: 0;

  font-size: 14px;
}

.live-actions {
  display: flex;

  gap: 10px;

  flex-wrap: wrap;
}

.primary-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  background: #7d2bd4;

  color: white;

  padding: 12px 17px;

  border-radius: 10px;

  text-decoration: none;

  font-weight: 700;

  border: 0;

  box-shadow:
    0 8px 25px rgba(125, 43, 212, 0.2);
}

.primary-btn:hover {
  background: #9144e8;
}

.secondary-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  background: #17111d;

  color: #d9d0e1;

  padding: 12px 17px;

  border-radius: 10px;

  text-decoration: none;

  font-weight: 700;

  border: 1px solid #3b2d48;
}

.secondary-btn:hover {
  background: #21162a;
}


/* =========================
   GRID
========================= */

.grid {
  display: grid;

  grid-template-columns: 1.2fr 0.8fr;

  gap: 20px;
}


/* =========================
   PANELS
========================= */

.panel {
  background: rgba(16, 13, 22, 0.92);

  border: 1px solid #2b2136;

  border-radius: 16px;

  padding: 20px;
}

.panel-title {
  display: flex;

  justify-content: space-between;

  align-items: center;

  font-weight: 800;

  margin-bottom: 14px;
}

.panel-title button {
  background: none;

  border: 0;

  color: #b86cff;
}

.panel-title button:hover {
  color: #d09aff;
}


/* =========================
   ITEMS
========================= */

.item {
  padding: 15px 0;

  border-bottom: 1px solid #29212f;
}

.item:last-child {
  border-bottom: 0;
}

.item h3 {
  margin: 0 0 5px;

  font-size: 16px;
}

.item p {
  margin: 0;

  color: #a39aa9;

  line-height: 1.5;
}

.news-image {
  display: block;

  width: 100%;
  max-height: 360px;

  object-fit: cover;

  margin-bottom: 15px;

  border: 1px solid #392847;
  border-radius: 14px;

  background: #0b0910;
}

.news-image-dashboard {
  max-height: 180px;
}

.meta {
  color: #817788;

  font-size: 12px;

  margin-top: 8px;
}

.empty {
  color: #8f8595;

  padding: 25px 0;
}


/* =========================
   VIEWS
========================= */

.view {
  display: none;
}

.view.active {
  display: block;
}


/* =========================
   LIVE PAGE
========================= */

.live-page-header {
  margin-bottom: 18px;
}

.live-page-header h2 {
  margin: 8px 0;
}

.live-page-header p {
  color: #aaa1b0;
}

.twitch-player {
  position: relative;

  width: 100%;

  aspect-ratio: 16 / 9;

  overflow: hidden;

  border-radius: 14px;

  background: #050407;

  border: 1px solid #30233c;
}

.twitch-player iframe {
  width: 100%;

  height: 100%;

  border: 0;

  display: block;
}

.twitch-placeholder {
  min-height: 300px;

  display: grid;

  place-items: center;

  text-align: center;

  padding: 30px;

  background:
    radial-gradient(
      circle at center,
      #21102e,
      #050407 65%
    );
}

.twitch-placeholder h3 {
  margin: 0 0 8px;
}

.twitch-placeholder p {
  color: #9e96a7;
}


/* =========================
   ADMIN
========================= */

.admin-shell {
  display: flex;

  min-height: 100vh;
}

.admin-side {
  width: 250px;

  padding: 28px 18px;

  background: #0b0910;

  border-right: 1px solid #2b2136;
}

.admin-menu button,
.admin-menu a {
  display: block;

  width: 100%;

  padding: 13px 15px;

  margin: 5px 0;

  border: 0;

  border-radius: 10px;

  background: transparent;

  color: #aaa1b5;

  text-align: left;

  text-decoration: none;
}

.admin-menu button:hover,
.admin-menu a:hover {
  background: #7d2bd4;

  color: white;
}

.admin-main {
  flex: 1;

  padding: 34px;

  max-width: 1200px;
}

.admin-card {
  background: rgba(16, 13, 22, 0.92);

  border: 1px solid #2b2136;

  border-radius: 16px;

  padding: 20px;

  margin-bottom: 18px;
}

.admin-card input,
.admin-card textarea {
  width: 100%;

  background: #0b0910;

  border: 1px solid #352942;

  color: white;

  padding: 12px;

  border-radius: 10px;

  margin: 7px 0;
}

.admin-card textarea {
  min-height: 130px;

  resize: vertical;
}

.row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 10px;
}

.stats {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 15px;
}

.stats div {
  background: #100d16;

  border: 1px solid #2b2136;

  border-radius: 14px;

  padding: 22px;
}

.stats b {
  display: block;

  font-size: 30px;
}

.stats span {
  color: #9a91a3;
}

.hidden {
  display: none !important;
}

.ghost {
  background: transparent;

  border: 1px solid #493653;

  color: #ddd;

  padding: 10px 15px;

  border-radius: 10px;
}

.small-btn {
  background: #25182e;

  color: #ddd;

  border: 1px solid #493653;

  border-radius: 8px;

  padding: 7px 10px;

  margin-left: 6px;
}

.news-image-upload {
  margin: 12px 0;

  padding: 14px;

  border: 1px dashed #493653;
  border-radius: 12px;

  background: #0d0a12;
}

.news-image-upload > label {
  display: block;

  font-weight: 700;

  margin-bottom: 4px;
}

.news-image-upload > small {
  display: block;

  color: #8f8595;

  margin-top: 4px;
}

.news-image-preview {
  margin-top: 14px;
}

.news-image-preview img {
  display: block;

  width: min(100%, 560px);
  max-height: 300px;

  object-fit: cover;

  margin-bottom: 10px;

  border: 1px solid #493653;
  border-radius: 12px;
}

.news-admin-item {
  display: grid;

  grid-template-columns: 130px minmax(0, 1fr);

  gap: 16px;

  align-items: start;
}

.news-admin-thumb {
  display: block;

  width: 130px;
  height: 86px;

  object-fit: cover;

  border: 1px solid #392847;
  border-radius: 10px;

  background: #0b0910;
}

.news-admin-thumb-empty {
  display: grid;

  place-items: center;

  color: #756a7d;

  font-size: 12px;
}

.news-admin-content {
  min-width: 0;
}

.news-admin-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 12px;
}

.news-admin-actions .small-btn,
.news-image-preview .small-btn {
  margin-left: 0;
}

.news-file-button {
  display: inline-flex;

  align-items: center;

  cursor: pointer;
}

.news-file-button input {
  display: none;
}

.danger-btn {
  color: #ff9aaa;

  border-color: rgba(255, 90, 116, 0.35);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

  .grid {
    grid-template-columns: 1fr;
  }

  .live-hero {
    align-items: flex-start;

    flex-direction: column;
  }

}


@media (max-width: 900px) {

  .sidebar {
    width: 75px;
  }

  .brand .sunny,
  .brand .shine,
  .brand small,
  .nav span:not(.nav-icon),
  .user div:not(.avatar),
  .side-bottom > small {
    display: none;
  }

  .main {
    padding: 20px;
  }

  header {
    align-items: flex-start;

    flex-direction: column;
  }

  .discord-btn {
    width: 100%;

    text-align: center;
  }

}


@media (max-width: 600px) {

  .sidebar {
    width: 64px;

    padding-left: 10px;
    padding-right: 10px;
  }

  .main {
    padding: 15px;
  }

  h1 {
    font-size: 30px;
  }

  .hero {
    padding: 18px;
  }

  .panel {
    padding: 16px;
  }

  .news-admin-item {
    grid-template-columns: 1fr;
  }

  .news-admin-thumb {
    width: 100%;
    height: 150px;
  }

}
/* =========================================================
   GAMESERVER DESIGN
========================================================= */

.gameserver-card {
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(125, 43, 212, 0.16),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      rgba(18, 13, 25, 0.98),
      rgba(10, 8, 14, 0.98)
    );

  border:
    1px solid
    rgba(137, 74, 199, 0.32);

  border-radius: 20px;

  padding: 24px;

  margin-bottom: 20px;

  box-shadow:
    0 18px 45px
    rgba(0, 0, 0, 0.25);

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}


.gameserver-card:hover {
  transform:
    translateY(-2px);

  border-color:
    rgba(174, 92, 255, 0.48);

  box-shadow:
    0 22px 55px
    rgba(0, 0, 0, 0.32),
    0 0 30px
    rgba(125, 43, 212, 0.08);
}


/* =========================================================
   GAMESERVER HEADER
========================================================= */

.gameserver-card-header {
  display: flex;

  align-items: center;

  gap: 16px;

  margin-bottom: 22px;
}


.gameserver-game-icon {
  width: 54px;
  height: 54px;

  flex: none;

  display: grid;

  place-items: center;

  border-radius: 15px;

  font-size: 24px;

  background:
    linear-gradient(
      145deg,
      #6f22bc,
      #3f146a
    );

  border:
    1px solid
    rgba(189, 114, 255, 0.3);

  box-shadow:
    0 10px 25px
    rgba(125, 43, 212, 0.22);
}


.gameserver-heading {
  flex: 1;

  min-width: 0;
}


.gameserver-game {
  color: #ad65ea;

  font-size: 11px;

  font-weight: 900;

  letter-spacing: 1.4px;

  text-transform: uppercase;

  margin-bottom: 4px;
}


.gameserver-heading h3 {
  margin: 0;

  font-size: 23px;

  color: #f8f5fb;
}


/* =========================================================
   ONLINE / OFFLINE STATUS
========================================================= */

.gameserver-status {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  flex: none;

  border-radius: 999px;

  padding: 8px 12px;

  font-size: 11px;

  font-weight: 900;

  letter-spacing: 0.8px;
}


.gameserver-status .status-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;
}


.status-online {
  color: #63e6a1;

  background:
    rgba(43, 200, 124, 0.1);

  border:
    1px solid
    rgba(43, 200, 124, 0.22);
}


.status-online .status-dot {
  background: #4ee397;

  box-shadow:
    0 0 13px
    rgba(78, 227, 151, 0.75);
}


.status-offline {
  color: #ff7184;

  background:
    rgba(255, 75, 100, 0.08);

  border:
    1px solid
    rgba(255, 75, 100, 0.2);
}


.status-offline .status-dot {
  background: #ff5c73;

  box-shadow:
    0 0 12px
    rgba(255, 92, 115, 0.55);
}


.status-disabled {
  color: #93899c;

  background:
    rgba(135, 125, 145, 0.06);

  border:
    1px solid #332b3a;
}


.status-disabled .status-dot {
  background: #706878;
}


/* =========================================================
   BESCHREIBUNG
========================================================= */

.gameserver-description {
  color: #a79ead;

  line-height: 1.6;

  margin:
    -4px 0 22px;
}


/* =========================================================
   SERVER SEKTION
========================================================= */

.gameserver-section {
  margin-top: 20px;
}


.gameserver-section-title {
  color: #81768a;

  font-size: 10px;

  font-weight: 900;

  letter-spacing: 1.7px;

  text-transform: uppercase;

  margin-bottom: 9px;
}


.gameserver-address-row {
  display: flex;

  align-items: stretch;

  gap: 10px;
}


.gameserver-address {
  flex: 1;

  display: flex;

  align-items: center;

  min-height: 48px;

  padding: 0 15px;

  border-radius: 11px;

  background:
    rgba(6, 5, 9, 0.75);

  border:
    1px solid #34293f;

  color: #eee8f5;

  font-family:
    Consolas,
    "Courier New",
    monospace;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 0.2px;

  overflow-wrap: anywhere;
}


/* =========================================================
   KOPIER BUTTON
========================================================= */

.gameserver-copy-btn {
  flex: none;

  border: 0;

  border-radius: 11px;

  padding: 0 17px;

  min-height: 48px;

  background:
    linear-gradient(
      145deg,
      #7d2bd4,
      #6620b5
    );

  color: white;

  font-weight: 800;

  font-size: 13px;

  box-shadow:
    0 10px 25px
    rgba(125, 43, 212, 0.2);

  transition:
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}


.gameserver-copy-btn:hover {
  transform:
    translateY(-1px);

  background:
    linear-gradient(
      145deg,
      #9144e8,
      #7427c9
    );

  box-shadow:
    0 12px 30px
    rgba(125, 43, 212, 0.3);
}


.gameserver-copy-btn:active {
  transform:
    translateY(0);
}


/* =========================================================
   SPIELER
========================================================= */

.gameserver-player-count {
  color: white;

  font-size: 22px;

  font-weight: 900;

  margin-bottom: 10px;
}


.gameserver-playerbar {
  width: 100%;

  height: 8px;

  overflow: hidden;

  border-radius: 999px;

  background:
    #1b1521;

  border:
    1px solid
    #2f2537;
}


.gameserver-playerbar-fill {
  height: 100%;

  min-width: 0;

  border-radius: inherit;

  background:
    linear-gradient(
      90deg,
      #7930ca,
      #b45cff
    );

  box-shadow:
    0 0 16px
    rgba(180, 92, 255, 0.38);

  transition:
    width 0.45s ease;
}


.gameserver-update-info {
  margin-top: 8px;

  color: #6f6677;

  font-size: 11px;
}


/* =========================================================
   DASHBOARD MINI GAMESERVER
========================================================= */

.gameserver-mini {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 12px;

  padding: 13px 0;

  border-bottom:
    1px solid #29212f;
}


.gameserver-mini:last-child {
  border-bottom: 0;
}


.gameserver-mini-main {
  display: flex;

  align-items: center;

  gap: 11px;

  min-width: 0;
}


.gameserver-icon {
  width: 38px;
  height: 38px;

  flex: none;

  display: grid;

  place-items: center;

  border-radius: 10px;

  background:
    #261334;

  border:
    1px solid
    #3d2450;
}


/* =========================================================
   RESPONSIVE GAMESERVER
========================================================= */

@media (max-width: 750px) {

  .gameserver-card-header {
    align-items:
      flex-start;

    flex-wrap:
      wrap;
  }


  .gameserver-status {
    margin-left:
      70px;
  }


  .gameserver-address-row {
    flex-direction:
      column;
  }


  .gameserver-copy-btn {
    width:
      100%;

    min-height:
      45px;
  }
}


@media (max-width: 500px) {

  .gameserver-card {
    padding:
      18px;
  }


  .gameserver-game-icon {
    width:
      46px;

    height:
      46px;
  }


  .gameserver-heading h3 {
    font-size:
      19px;
  }


  .gameserver-status {
    margin-left:
      0;
  }
}

/* =========================================================
   TOP ACTIONS
========================================================= */

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.refresh-btn {
  border: 1px solid rgba(145, 70, 255, 0.45);
  background: rgba(145, 70, 255, 0.12);
  color: #ffffff;

  border-radius: 10px;

  padding: 11px 16px;

  font-size: 14px;
  font-weight: 700;

  cursor: pointer;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.refresh-btn:hover {
  background: rgba(145, 70, 255, 0.22);
  border-color: rgba(145, 70, 255, 0.8);
  transform: translateY(-1px);
}

.refresh-btn:disabled {
  opacity: 0.65;
  cursor: default;
  transform: none;
}


/* =========================================================
   PARTNER
========================================================= */

.partner-page-header {
  margin-bottom: 22px;
}

.partner-page-header h2 {
  margin: 6px 0 8px;
  font-size: 30px;
}

.partner-page-header p {
  margin: 0;
  color: #9e96a7;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
}

.partner-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid #332640;
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 0%, rgba(125, 43, 212, 0.13), transparent 40%),
    rgba(16, 13, 22, 0.95);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  border-color: #69418d;
}

.partner-card-live {
  border-color: rgba(190, 85, 255, 0.72);
  box-shadow: 0 0 0 1px rgba(155, 70, 255, 0.12), 0 14px 38px rgba(104, 34, 160, 0.24);
}

.partner-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.partner-avatar-wrap {
  position: relative;
  flex: none;
}

.partner-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #6e3b91;
  background: #24142e;
}

.partner-avatar-fallback {
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
  color: white;
  background: linear-gradient(145deg, #7d2bd4, #43115f);
}

.partner-status-dot {
  position: absolute;
  right: 1px;
  bottom: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid #100d16;
}

.partner-status-dot.is-live {
  background: #ff4d68;
  box-shadow: 0 0 12px rgba(255, 77, 104, 0.8);
}

.partner-status-dot.is-offline {
  background: #68606f;
}

.partner-identity {
  min-width: 0;
  flex: 1;
}

.partner-identity h3 {
  margin: 0 0 5px;
  font-size: 19px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.partner-handle {
  color: #9c8ca9;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.partner-live-badge {
  flex: none;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.7px;
}

.partner-live-badge.live {
  color: #ff7185;
  border: 1px solid rgba(255, 81, 108, 0.35);
  background: rgba(255, 81, 108, 0.1);
}

.partner-live-badge.offline {
  color: #93899c;
  border: 1px solid #312839;
  background: #17121c;
}

.partner-comment {
  margin: 18px 0;
  color: #d1c8d9;
  line-height: 1.55;
  white-space: pre-wrap;
}

.partner-stream-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 16px 0;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #34263e;
  background: rgba(125, 43, 212, 0.08);
}

.partner-stream-info b {
  color: #c888ff;
  font-size: 12px;
}

.partner-stream-info span {
  color: #aaa0b1;
  font-size: 13px;
  line-height: 1.35;
}

.partner-open-btn {
  width: 100%;
  margin-top: 4px;
}

.partner-empty {
  grid-column: 1 / -1;
}

.partner-char-count {
  display: block;
  text-align: right;
  color: #776d80;
  margin-top: -8px;
  margin-bottom: 12px;
}

.partner-admin-item {
  display: block;
  margin-bottom: 16px;
}

.partner-admin-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.partner-admin-avatar {
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #6e3b91;
}

.partner-admin-avatar-fallback {
  display: grid;
  place-items: center;
  font-weight: 900;
  background: #57227d;
}

.partner-admin-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.partner-admin-title span {
  color: #9d8ba9;
  font-size: 12px;
}

.partner-admin-item input,
.partner-admin-item textarea {
  width: 100%;
}

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

  .partner-card-top {
    flex-wrap: wrap;
  }

  .partner-live-badge {
    margin-left: 78px;
  }
}
