* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #0f172a;
  color: #f8fafc;
  line-height: 1.6;
}

header {
  background: linear-gradient(135deg, #111827, #1e293b);
  text-align: center;
  padding: 50px 20px 35px;
  border-bottom: 1px solid #334155;
}

header h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: 1px;
}

header p {
  margin: 10px auto 0;
  max-width: 650px;
  color: #cbd5e1;
  font-size: 1.1rem;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 100vh;
  background: #111827;
  border-right: 1px solid #334155;
  padding: 30px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar a {
  color: #facc15;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 14px;
  border-radius: 10px;
}

.sidebar a:hover {
  background: #facc15;
  color: #111827;
}

.sidebar a.active {
  background: #facc15;
  color: #111827;
}

.member-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111827;
  background: linear-gradient(180deg, #fde047, #f59e0b);
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 12px;
  margin-bottom: 4px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.page-content {
  margin-left: 220px;
  min-height: 100vh;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
}

.hero {
  text-align: center;
  margin-bottom: 45px;
  padding: 35px 25px;
  background: #111827;
  border: 1px solid #334155;
  border-radius: 18px;
}

.hero h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.hero p {
  color: #cbd5e1;
  font-size: 1.1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: #1e293b;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid #334155;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.card h3 {
  margin-top: 0;
  color: #facc15;
  font-size: 1.35rem;
}

.card p {
  color: #cbd5e1;
}

footer {
  text-align: center;
  padding: 25px 20px;
  color: #94a3b8;
  border-top: 1px solid #334155;
  background: #111827;
}

.button-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 18px;
  border-radius: 10px;
  background: #facc15;
  color: #111827;
  font-weight: bold;
  text-decoration: none;
  transition: 0.2s ease;
}

.button-link:hover {
  background: #fde047;
  transform: translateY(-2px);
}

@media (max-width: 800px) {
  .sidebar {
    position: static;
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid #334155;
  }

  .page-content {
    margin-left: 0;
  }

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

  header {
    padding-top: 38px;
  }

  main {
    padding-top: 35px;
  }
}
.tool-box {
  background: #111827;
  border: 1px solid #334155;
  border-radius: 18px;
  padding: 30px;
}

.tool-box h2,
.tool-box h3 {
  color: #facc15;
}

.tool-controls {
  display: grid;
  grid-template-columns: 2fr 1.5fr 0.9fr;
  gap: 14px;
  margin: 25px 0;
  align-items: center;
}

.tool-controls input,
.tool-controls select {
  width: 100%;
  min-width: 0;
  padding: 14px 12px;
  border-radius: 10px;
  border: 1px solid #475569;
  background: rgba(15, 23, 42, 0.85);
  color: #f8fafc;
}

.tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.tool-actions button {
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: #facc15;
  color: #111827;
  font-weight: bold;
  cursor: pointer;
}

.tool-actions button:hover {
  background: #fde047;
}

.result-box {
  margin: 25px 0;
  padding: 20px;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 14px;
}

#pickedGame {
  font-size: 1.4rem;
  font-weight: bold;
}

#gameList {
  padding-left: 20px;
}

#gameList li {
  margin-bottom: 8px;
  color: #cbd5e1;
}
.small-remove-btn {
  margin-left: 12px;
  padding: 5px 9px;
  border: none;
  border-radius: 8px;
  background: #334155;
  color: #f8fafc;
  cursor: pointer;
}

.small-remove-btn:hover {
  background: #475569;
}

.button-link {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 10px;
  background: #facc15;
  color: #111827;
  font-weight: bold;
  text-decoration: none;
}

.button-link:hover {
  background: #fde047;
}

.coming-soon {
  color: #94a3b8;
  font-style: italic;
}

.small-link {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  background: #334155;
  color: #f8fafc;
  text-decoration: none;
  font-size: 0.9rem;
  margin-left: 8px;
}

.small-link:hover {
  background: #475569;
}

.second-row {
  margin-top: 24px;
}

.social-links {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.social-links a {
  color: #facc15;
  text-decoration: none;
  font-weight: bold;
}

.social-links a:hover {
  color: #fde047;
}

.stream-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
}

.hero-logo {
  width: 100%;
  max-width: 500px;
  margin-bottom: 20px;
}
body {
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.28), transparent 34%),
    linear-gradient(135deg, #020617 0%, #111827 45%, #2e1065 100%);
}

.sidebar-logo {
  width: 100%;
  max-width: 190px;
  margin: 0 auto 28px;
  display: block;
}

.sidebar-divider {
  height: 1px;
  background: #334155;
  margin: 10px 0;
}

.sidebar-label {
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  margin: 0 0 4px;
}

.home-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(2, 6, 23, 0.35), rgba(2, 6, 23, 0.65)),
    url("../images/wallpaper-hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.landing-hero {
  min-height: calc(100vh - 76px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 30px;
}

.landing-logo {
  width: min(720px, 90%);
  max-height: 380px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.65));
  background: transparent;
}

.gold-divider {
  width: 180px;
  height: 3px;
  margin: 8px auto 24px;
  background: linear-gradient(90deg, transparent, #facc15, transparent);
}

.landing-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.65);
}

.landing-hero p {
  max-width: 760px;
  color: #e2e8f0;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  margin: 24px auto 30px;
}

.hero-button {
  display: inline-block;
  padding: 16px 26px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fde047, #f59e0b);
  color: #111827;
  font-weight: 900;
  font-size: 1.15rem;
  text-decoration: none;
  border: 1px solid #facc15;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.hero-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #fef08a, #facc15);
}

.page-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 32px;
  padding: 20px;
}

.stream-hero {
  background: transparent;
}

.hero-panel {
  max-width: 820px;
  padding: 40px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid rgba(250, 204, 21, 0.25);
  backdrop-filter: blur(10px);
}

.hero-panel h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.65);
}

.hero-panel p {
  color: #e2e8f0;
  font-size: 1.15rem;
  max-width: 680px;
  margin: 18px auto 26px;
}

.login-note {
  margin-top: 18px;
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
}

.polished-grid {
  margin-top: 24px;
}

.glass-card {
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(250, 204, 21, 0.18);
  backdrop-filter: blur(8px);
}

.glass-card:hover {
  transform: translateY(-3px);
  border-color: rgba(250, 204, 21, 0.45);
}

.stream-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(rgba(2, 6, 23, 0.55), rgba(2, 6, 23, 0.85)),
    url("../images/wallpaper-hero.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.stream-page-content {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 30px 60px;
}

.stream-page footer {
  margin-top: auto;
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(10px);
}

.about-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(rgba(2, 6, 23, 0.58), rgba(2, 6, 23, 0.88)),
    url("../images/wallpaper-hero.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-page-content {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 30px 60px;
}

.about-hero {
  background: transparent;
}

.about-page footer {
  margin-top: auto;
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(10px);
}

.access-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(rgba(2, 6, 23, 0.58), rgba(2, 6, 23, 0.88)),
    url("../images/wallpaper-hero.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.access-page-content {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 30px 60px;
}

.access-hero {
  background: transparent;
}

.access-page footer {
  margin-top: auto;
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(10px);
}

.member-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(rgba(2, 6, 23, 0.58), rgba(2, 6, 23, 0.88)),
    url("../images/wallpaper-hero.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.member-page-content {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 30px 60px;
}

.member-hero {
  background: transparent;
}

.member-page footer {
  margin-top: auto;
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(10px);
}

.member-section {
  margin-top: 24px;
}

.server-card {
  margin-bottom: 22px;
}

.server-card h3 {
  color: #facc15;
  margin-top: 0;
}

.tool-panel {
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(250, 204, 21, 0.18);
  border-radius: 22px;
  padding: 30px;
  backdrop-filter: blur(8px);
}

@media (max-width: 800px) {

  .sidebar {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;
    height: auto;

    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;

    padding: 14px 10px;

    background: rgba(2, 6, 23, 0.92);
    backdrop-filter: blur(12px);

    border-right: none;
    border-bottom: 1px solid rgba(250, 204, 21, 0.15);
  }

  .sidebar a {
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.88rem;
  }

  .member-badge {
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }

  .sidebar-logo {
    display: none;
  }

  .sidebar-divider {
    display: none;
  }

  .sidebar-divider {
  display: none;
}

.sidebar a[href*="twitch"],
.sidebar a[href*="youtube"],
.sidebar a[href*="tiktok"],
.sidebar a[href*="discord"] {
  display: none;
}

  .sidebar-label {
  display: none;
  }

  .page-content {
    margin-left: 0;
  }

  .landing-hero {
    min-height: auto;
    padding: 45px 20px;
  }

  .landing-hero h1 {
  font-size: 3rem;
}

  .landing-hero p {
    font-size: 1.1rem;
    margin: 18px auto 24px;
  }

.landing-logo {
  max-height: 240px;
  width: 100%;
  object-fit: contain;
}
  .stream-page-content,
  .about-page-content,
  .access-page-content,
  .member-page-content {
    padding: 24px 16px 40px;
  }

  .page-hero {
    min-height: 300px;
    border-radius: 18px;
  }

  .hero-panel {
    padding: 28px 20px;
  }

  .stream-grid,
  .cards {
    grid-template-columns: 1fr;
  }

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

  .tool-actions {
    flex-direction: column;
  }

  .tool-actions button {
    width: 100%;
  }
}

.sidebar a i {
  width: 22px;
  margin-right: 10px;
}

.fa-twitch {
  color: #9146FF;
}

.fa-discord {
  color: #5865F2;
}

.fa-youtube {
  color: #FF0000;
}

.fa-tiktok {
  color: #ffffff;
}