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

body {
  background-color: #000;
  color: #fff;
  font-family: 'Archivo Black', sans-serif;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px;
}

main {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

#logo {
  max-width: 320px;
  width: 100%;
}

#about {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
  color: #fff;
}

#player-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#player {
  cursor: pointer;
  background-color: #e7f23c;
  color: #000;
  padding: 18px 56px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  outline: none;
  transition: background-color 0.15s, opacity 0.2s;
  user-select: none;
}

#player:hover:not(.offline) {
  background-color: #fff;
}

#player.offline {
  opacity: 0.35;
  cursor: default;
}

#data-section {
  width: 100%;
  /* To be implemented later */
}
