a {
  color: var(--accent);
}

h1 a {
  text-decoration: none;
  color: var(--text);
  transition: color 0.3s ease;
}

h1 a:hover {
  color: var(--accent);
}

:root {
  --container-max: 850px;
  --button-w: 230px;
  --button-h: 140px;
  --button-img: 80px;
  --play-max: 600px;
  --play-min: 250px;
  --bg: #070b14;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.1);
  --text: #e7edf8;
  --muted: rgba(231, 237, 248, 0.75);
  --accent: #6ee7ff;
  --accent-strong: #22d3ee;
  --shadow: rgba(0, 0, 0, 0.45);
}

body {
  background: radial-gradient(1200px 600px at 50% -10%, rgba(34, 211, 238, 0.22), rgba(7, 11, 20, 0) 55%),
    radial-gradient(900px 500px at 20% 0%, rgba(110, 231, 255, 0.1), rgba(7, 11, 20, 0) 60%),
    var(--bg);
  color: var(--text);
  text-align: center;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  margin-top: 20px;
  position: relative;
}

.backup-container {
  position: absolute;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.backup-button {
  font-size: 11px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #061018;
  padding: 10px 10px;
  border-radius: 15px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0px 10px 22px var(--shadow);
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #061018;
  border-radius: 15px;
  text-decoration: none;
  box-shadow: 0px 10px 22px var(--shadow);
}

.home-button svg {
  width: 16px;
  height: 16px;
  display: block;
}

.home-button i {
  display: none;
}

.reddit-button {
  color: #ff4500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
}

.reddit-button svg {
  width: 24px;
  height: 24px;
  display: block;
}

.reddit-button span {
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
}

.reddit-button i {
  display: none;
}

.reddit-button:hover {
  color: #ff4500;
}

.container > div[style*="text-align: center"] a[style*="display: inline-block"][style*="padding: 10px 20px"] {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong)) !important;
  color: #061018 !important;
  box-shadow: 0px 10px 22px var(--shadow) !important;
}

.container > div[style*="text-align: center"] a[style*="display: inline-block"][style*="padding: 10px 20px"]:hover {
  filter: brightness(1.05) !important;
}

.container > div[style*="text-align: center"] a[style*="display: inline-block"][style*="padding: 10px 20px"]:active {
  filter: brightness(0.98) !important;
}

.title-container {
  text-align: center;
}

@media (max-width: 520px) {
  .header {
    flex-direction: column;
    gap: 10px;
    padding: 0 12px;
  }

  .backup-container {
    position: static;
    left: auto;
    width: 100%;
    justify-content: center;
  }

  .backup-button {
    padding: 8px 10px;
  }

  .home-button {
    width: 32px;
    height: 32px;
    border-radius: 14px;
  }

  .reddit-button svg {
    width: 22px;
    height: 22px;
  }

  .reddit-button span {
    font-size: 15px;
  }
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--button-w);
  height: var(--button-h);
  border: 1px solid rgba(110, 231, 255, 0.5);
  border-radius: 35px;
  text-decoration: none;
  color: var(--text);
  font-size: 16px;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  background: var(--surface);
  box-shadow: 0px 12px 30px var(--shadow);
}

.button:hover {
  background: var(--surface-2);
  color: var(--text);
  transform: translateY(-3px);
  border-color: rgba(110, 231, 255, 0.9);
  box-shadow: 0px 18px 44px var(--shadow);
}

.button img {
  width: var(--button-img);
  height: var(--button-img);
  margin-right: 10px;
}

.info-container {
  background: transparent;
  border-radius: 10px;
  box-shadow: 0px 14px 38px var(--shadow);
  font-size: 14px;
  font-weight: bold;
  color: var(--muted);
}

.info-container span {
  color: var(--accent);
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: var(--play-max);
}

.play-button {
  white-space: nowrap;
  text-decoration: none;
  background-color: var(--surface);
  color: var(--text);
  padding: 20px;
  min-width: var(--play-min);
  max-width: 100%;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  margin-top: 6px;
  margin-bottom: 6px;
  box-shadow: 0px 14px 32px var(--shadow);
}

.play-button i {
  display: none;
}

.play-button:hover {
  background-color: var(--surface-2);
  transform: translateY(-3px);
  border-color: rgba(110, 231, 255, 0.7);
}

.play-button:active {
  background-color: var(--surface-2);
  transform: translateY(0px);
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .play-button,
  h1 a {
    transition: none;
  }
}
