@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Poppins:wght@300;400&display=swap');

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

html, body {
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a14;
  font-family: 'Poppins', sans-serif;
  padding: 2rem;
}

.container {
  text-align: center;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

/* Large neon word RAI */
.rai {
  font-family: 'Audiowide', sans-serif;
  font-size: clamp(4rem, 18vw, 9rem);
  letter-spacing: 0.08em;
  color: #fff;
  text-shadow:
    0 0 6px #fff,
    0 0 14px #ff2db8,
    0 0 28px #ff2db8,
    0 0 48px #ff2db8,
    0 0 80px #c81d92;
  animation: flicker 3.5s infinite alternate;
}

/* The 'i' with double dots */
.i-letter {
  position: relative;
  display: inline-block;
}

.umlaut {
  position: absolute;
  top: -0.04em;
  left: 50%;
  transform: translateX(-60%);
  display: flex;
  gap: 0.12em;
}

.umlaut::before,
.umlaut::after {
  content: "";
  width: 0.14em;
  height: 0.14em;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 6px #fff,
    0 0 14px #ff2db8,
    0 0 28px #ff2db8;
}

/* events word */
.events {
  font-family: 'Audiowide', sans-serif;
  font-size: clamp(1.6rem, 7vw, 3.2rem);
  letter-spacing: 0.35em;
  margin-top: 0.4rem;
  padding-left: 0.35em;
  color: #fff;
  text-shadow:
    0 0 6px #fff,
    0 0 14px #2dd4ff,
    0 0 28px #2dd4ff,
    0 0 48px #1aa3c8;
  animation: flicker 4.2s infinite alternate;
}

.donations {
  margin-top: 3.5rem;
  color: #d7d7e8;
  font-size: clamp(0.85rem, 3.5vw, 1.05rem);
  font-weight: 300;
}

.donations p {
  margin: 0.5rem 0;
  word-break: break-all;
}

.don-title {
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 0.9rem !important;
  text-shadow: 0 0 8px #2dd4ff;
}

.donations a {
  color: #66e0ff;
  text-decoration: none;
  transition: text-shadow 0.2s ease;
}

.donations a:hover {
  text-shadow: 0 0 10px #2dd4ff, 0 0 20px #2dd4ff;
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.78;
  }
}
