body {
  margin: 0;
  font-family: 'Tahoma', sans-serif;
  font-weight: bold; /* or 700 */
  background-color: #111;
  color: #fff;
}

a {
  color: #fff;
  text-decoration: none;
}

header.hero {
  background: url('background.png') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

header .overlay {
  /*background: #1e1e1e;*/
  text-align: center;
  padding: 2rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #0ECBF6;
  color: white;
  border-radius: 10px;
  margin-top: 1rem;
  font-weight: bold;
}

section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

h2 {
  color: #0ECBF6;
  border-bottom: 2px solid #0ECBF6;
  display: inline-block;
  margin-bottom: 1rem;
}

.vods {
  padding: 4rem 2rem;
  background-color: #111;
  text-align: center;
  color: #ffffff;
}

.vods h2 {
  color: #0ECBF6;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.vods p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.vod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.clip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.social-icons a {
  margin-right: 1rem;
  font-size: 1.2rem;
}

.merch {
  /*background: #1e1e1e;*/
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.merch-preview {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.merch-preview img {
  width: 200px;
  border-radius: 10px;
  /*box-shadow: 0 5px 15px rgba(0,0,0,0.3);*/
  transition: transform 0.3s ease;
}

.merch-preview img:hover {
  transform: scale(1.05);
}

.btn-primary {
  background: #0ECBF6;
  color: white;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #ff8833;
}

.discord {
  /*background-color: #23272A;*/
  /*color: #ffffff;*/
  padding: 4rem 2rem;
  text-align: center;
}

.discord h2 {
  font-size: 1.2rem;
  color: #0ECBF6; /* Discord blurple */
}

.discord p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.discord-widget {
  display: flex;
  justify-content: center;
}


footer {
  background: #222;
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
}
