.overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url('hereat.png') center / cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 9999;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  font-family: Helvetica, Arial, sans-serif;
  color: #fff;
}

body {
  background-color: #000;
  image-rendering: pixelated;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

.top-bar {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  padding-bottom: 0.75rem;
}

.top-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: #0ff;
  cursor: pointer;
  text-decoration: none;
}

.top-btn:hover {
  color: #3ff;
}

.hottest-ring-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #fff;
  font-size: 0.9rem;
}

.hottest-ring-link {
  color: #0ff;
  text-decoration: none;
}

.hottest-ring-link:hover {
  color: #3ff;
  text-decoration: underline;
}

.hottest-ring-title {
  color: #f0f;
  text-decoration: none;
  font-weight: bold;
}

.hottest-ring-title:hover {
  color: #f3f;
  text-decoration: underline;
}

.contact-list {
  list-style: none;
}

.contact-list li {
  margin-bottom: 0.75rem;
}

.contact-list li:last-child {
  margin-bottom: 0;
}

.contact-list .label {
  color: #888;
  display: inline-block;
  width: 5rem;
}

.buttons-thing {
  max-width: 640px;
  width: 100%;
  padding: 1.5rem;
  text-align: center;
  line-height: 0;
}

.buttons-thing iframe {
  display: block;
}

.button-thing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}

.button-thing-grid a {
  line-height: 0;
}

.button-grid img {
  width: 88px;
  height: 31px;
  image-rendering: pixelated;
}

/* credit to enjarai.dev for the hover effect */
.button-thing-grid a img {
  transition: transform 0.3s;
  position: relative;
}

.button-thing-grid a img:hover {
  transform: scale(2);
  z-index: 2;
}

.center-card {
  max-width: 640px;
  width: 100%;
  padding: 1.5rem;
  line-height: 1.6;
  font-size: 1rem;
}

.center-card p {
  margin-bottom: 1rem;
}

.center-card p:last-child {
  margin-bottom: 0;
}

.center-card a {
  color: #0ff;
  word-break: break-word;
}

.center-card a:visited {
  color: #0cc;
}

.center-card .play-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: #0ff;
  cursor: pointer;
  text-decoration: underline;
}

.center-card .play-btn:hover {
  color: #3ff;
}

.center-card h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  body {
    justify-content: center;
    padding: 0;
  }

  .center-card {
    padding: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
  }

  .center-card h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .buttons-section {
    padding: 2.5rem;
  }
}

.media-frame {
  width: 100%;
  height: 70vh;
  min-height: 400px;
  border: 1px solid #333;
  background: #fff;
  color: #000;
}

.center-card p.desc {
  margin-bottom: 1rem;
  color: #888;
}

@media (min-width: 640px) {
  .media-frame {
    height: 60vh;
  }
}
