body {
  background-color: #0d0d0d;
  color: #c4b998;
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #2b1a13;
  text-align: center;
  color: #e0e0e0;
}

header h1 {
  margin: 0;
  font-size: 36px;
}

.header-logo {
  width: 100%;
  display: block;
}

/* Tab styles */
.tabs {
  display: flex;
  justify-content: center;
  background-color: #1c1c1c;
  margin: 0;
  top: 0; /* For Safari */
  position: sticky;
  z-index: 1000; /* Ensure the tabs stay above other content */
}

.tab {
  padding: 15px 30px;
  cursor: pointer;
  color: #e0e0e0;
  background-color: #1c1c1c;
  border: 1px solid #333;
  border-bottom: none;
}

.tab.active {
  background-color: #333;
  color: #d4af37;
}

.grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background-color: #1c1c1c;
  border: 2px solid #333;
  border-radius: 8px;
  padding: 20px;
  color: #f0f0f0;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  flex-basis: calc(33.333% - 40px); /* Three cards per row */
  min-width: 250px;
  max-width: 300px;
}

.card a {
  color: #d4af37;
  text-decoration: none;
  font-weight: bold;
  display: block;
}

.card a:hover {
  color: #f0c674;
}

/* Larger card for streamers */
.card.streamers {
  flex-basis: calc(66.666% - 40px); /* Take up two-thirds of the row */
  max-width: 800px;
}

.card iframe {
  width: 100%;
  height: 200px;
  border: none;
}

.twitchemberholder {
  display: block;
}

.twitch-embed {
  display: inline-block;
}

/* Media query for mobile view */
@media (max-width: 768px) {
  .card {
    flex-basis: calc(100% - 40px); /* Stack cards vertically */
  }
  .card.streamers {
    flex-basis: calc(100% - 40px); /* Span full width */
  }
}
/* Hide all tab contents by default */
.tab-content {
  display: none;
}

/* Show active tab content */
.tab-content.active {
  display: block;
}

.details-container a {
  display: block;
}

.details-content-pane {
  margin: 12px;
}

.tabs .detail {
  text-decoration: unset;
}/*# sourceMappingURL=site.css.map */