:root {
  color-scheme: dark;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #070707;
  color: #f4f4f4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("https://images.pexels.com/photos/1666603/pexels-photo-1666603.jpeg") center/cover no-repeat;
  filter: brightness(0.35) saturate(0.7);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(7, 7, 7, 0.7);
  z-index: -1;
}

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.site-header,
.site-footer {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(6px);
  padding: 1.5rem 0;
}

.site-title {
  color: #fef3c7;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.site-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 3rem 0;
}

.columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.column {
  background: rgba(17, 17, 17, 0.75);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.media {
  display: flex;
  justify-content: center;
}

.video-wrapper {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.links h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: #fde68a;
}

.links h2 + .button-grid {
  margin-bottom: 1.5rem;
}

.button-grid {
  display: grid;
  gap: 0.75rem;
}

.link-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link-button:hover,
.link-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.link-button .icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
}

.link-button svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.link-button.youtube {
  background: #ff0033;
}

.link-button.reddit {
  background: #ff4500;
}

.link-button.twitch {
  background: #9146ff;
}

.link-button.discord {
  background: #5865f2;
}

.link-button.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.link-button.x {
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
}

.site-footer {
  text-align: center;
  font-size: 0.95rem;
  color: #e5e7eb;
}

@media (max-width: 720px) {
  .site-main {
    padding: 2rem 0 3rem;
  }

  .column {
    padding: 1.25rem;
  }
}
