:root {
  --bg-color: #000000;
  --text-color: #e174ff;
  --text-shadow-color: #005d5d;
  --text-del-color: #ff2323;
  --arrow-stroke-color: #00ffff;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  padding: 1rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: monospace;
  font-size: 1rem;
}

header {
  text-align: center;
  margin-bottom: 3rem;
}

header h1 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  letter-spacing: 0.5rem;
  text-shadow: 0.3rem 0.05rem 0.2rem var(--text-shadow-color);
}

main {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

ul {
  list-style: none;
}

.alternatives {
  margin-bottom: 3rem;
}

.alternatives ul li {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  display: grid;
  grid-template-columns: minmax(120px, 160px) auto minmax(80px, 120px);
  justify-content: center;
  align-items: center;
  text-align: left;
}

.alternatives ul li svg {
  justify-self: center;
  margin: 0 1.5rem;
  width: clamp(1.5rem, 4vw, 2rem);
  height: auto;
  stroke: var(--arrow-stroke-color);
  fill: none;
}

.alternatives ul li del {
  text-align: right;
  font-weight: bold;
  color: var(--text-del-color);
  text-decoration-color: var(--arrow-stroke-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.alternatives ul li img {
  width: 1.25rem;
  height: 1.25rem;
}

.alternatives ul li a {
  text-decoration: dashed underline;
  text-decoration-color: var(--arrow-stroke-color);
  text-decoration-thickness: 0.1rem;
  text-underline-offset: 0.3rem;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.donations h2 {
  font-size: 1.25rem;
  letter-spacing: 0.25rem;
  text-shadow: 0.15rem 0.025rem 0.1rem var(--text-shadow-color);
  margin-bottom: 1rem;
}

.donations ul li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.donations ul li svg {
  stroke: var(--arrow-stroke-color);
  margin: 0 0.5rem;
  fill: none;
  width: clamp(1rem, 4vw, 1.5rem);
}

.donations ul li a {
  text-decoration: dashed underline;
  text-decoration-color: var(--arrow-stroke-color);
  text-decoration-thickness: 0.1rem;
  text-underline-offset: 0.3rem;
  color: var(--text-color);
}

@media (max-width: 480px) {
  .alternatives ul li {
    grid-template-columns: 1fr auto 1fr;
  }

  header {
    margin-bottom: 2rem; 
  }

  .alternatives {
    margin-bottom: 2rem;
  }

  body {
    padding: 0.5rem;
  }

  .alternatives ul li {
    font-size: 1rem;
    padding: 0.25rem;
  }

  header h1 {
    letter-spacing: 0.15rem;
  }

  .donations h2 {
    letter-spacing: 0.1rem;
  }
}
