body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: white;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 420px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
}

h1 {
  margin: 0;
  font-size: 1.8em;
}

.tagline {
  margin-bottom: 10px;
  color: #aaa;
}

.icons {
  margin: 15px 0 25px;
}

.icons a {
  margin: 0 8px;
  display: inline-block;
}

.icons img {
  width: 28px;
  height: 28px;
}

.link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;

  background-color: #2864d4;
  color: white;
  padding: 10px 14px;
  margin: 10px auto;
  border-radius: 14px;
  text-decoration: none;
  font-weight: bold;
  max-width: 380px;       /* match schedule card */
  width: 100%;

  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.45);
  transform: translateY(0);
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left,
      rgba(255, 255, 255, 0.16),
      transparent 55%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.link:hover {
  background-color: #2f73ff;
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.6);
}

.link:hover::after {
  opacity: 1;
}

.link img {
  width: 36px;
  height: 36px;
  margin-right: 10px;
  border-radius: 6px;
}

.link span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.section-title {
  margin-top: 32px;
  margin-bottom: 16px;
  font-weight: bold;
  color: #ccc;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.email {
  margin-top: 30px;
  font-size: 0.9em;
  color: #e8e8e8;
}

.email a {
  color: #4ea1ff;
  text-decoration: none;
}

.email a:hover {
  text-decoration: underline;
}

/* Bio text under tagline */
.bio {
  max-width: 360px;
  margin: 10px auto 22px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #d0d0d0;
}

/* Live status line under bio */
.live-status-line {
  margin-top: 4px;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ff8aa5;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  min-height: 0.9rem;
}

.live-status-line--visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Gradient background === */

body {
  font-family: 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top, #1c1c22 0%, #050508 55%, #000000 100%);
  color: #ffffff;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 420px;
  margin: 0 auto;
  padding: 48px 20px 40px;
  text-align: center;
}

/* Wider layout on larger screens so schedule text fits better */
@media (min-width: 768px) {
  .container {
    max-width: 480px;
  }
}

/* Footer */
.site-footer {
  margin-top: 26px;
  padding-top: 18px;
  font-size: 0.85em;
  color: #e8e8e8;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.site-footer__main {
  margin-bottom: 4px;
}

.site-footer__contact a {
  color: #4ea1ff;
  text-decoration: none;
}

.site-footer__contact a:hover {
  text-decoration: underline;
}

/* Header polish */
h1 {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.tagline {
  color: #b8b8b8;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.live-status-line {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* === Platform glow in schedule row === */
.ap-platforms {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.ap-platforms img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #000;
}

/* Twitch: purple glow */
.ap-platforms img[alt="Twitch"] {
  border: 2px solid #9146ff;
  box-shadow:
    0 0 12px rgba(145, 70, 255, 0.9),
    0 0 24px rgba(145, 70, 255, 0.5);
  animation: ap-twitch-pulse 3s ease-in-out infinite;
}

/* Kick: green glow */
.ap-platforms img[alt="Kick"] {
  border: 2px solid #53fc18;
  box-shadow:
    0 0 12px rgba(83, 252, 24, 0.9),
    0 0 24px rgba(83, 252, 24, 0.5);
  animation: ap-kick-pulse 3s ease-in-out infinite;
}

@keyframes ap-twitch-pulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow:
      0 0 10px rgba(145, 70, 255, 0.9),
      0 0 20px rgba(145, 70, 255, 0.4);
  }
  50% {
    transform: translateY(-1px);
    box-shadow:
      0 0 16px rgba(145, 70, 255, 1),
      0 0 32px rgba(145, 70, 255, 0.7);
  }
}

@keyframes ap-kick-pulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow:
      0 0 10px rgba(83, 252, 24, 0.9),
      0 0 20px rgba(83, 252, 24, 0.4);
  }
  50% {
    transform: translateY(-1px);
    box-shadow:
      0 0 16px rgba(83, 252, 24, 1),
      0 0 32px rgba(83, 252, 24, 0.7);
  }
}

/* === Platform-colored hover glows for social panels === */

.link--discord:hover {
  box-shadow:
    0 0 14px rgba(88, 101, 242, 0.9),
    0 0 32px rgba(88, 101, 242, 0.7);
}

.link--twitch:hover {
  box-shadow:
    0 0 14px rgba(145, 70, 255, 0.9),
    0 0 32px rgba(145, 70, 255, 0.7);
}

.link--youtube:hover {
  box-shadow:
    0 0 14px rgba(255, 0, 0, 0.9),
    0 0 32px rgba(255, 0, 0, 0.7);
}

.link--tiktok:hover {
  box-shadow:
    0 0 14px rgba(255, 0, 80, 0.9),
    0 0 32px rgba(0, 242, 234, 0.7);
}

.link--kick:hover {
  box-shadow:
    0 0 14px rgba(83, 252, 24, 0.9),
    0 0 32px rgba(83, 252, 24, 0.7);
}

/* === Platform highlight for top icons === */
.icons a img {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: 12px;
}

/* Email - blue */
.icons a img[alt="Email"]:hover {
  box-shadow: 0 0 12px rgba(0, 170, 255, 0.9);
  transform: translateY(-3px);
}

/* Instagram - pink/orange */
.icons a img[alt="Instagram"]:hover {
  box-shadow: 0 0 14px rgba(255, 70, 150, 0.9),
              0 0 22px rgba(255, 200, 0, 0.7);
  transform: translateY(-3px);
}

/* YouTube - red */
.icons a img[alt="YouTube"]:hover {
  box-shadow: 0 0 14px rgba(255, 0, 0, 0.9),
              0 0 26px rgba(255, 0, 0, 0.5);
  transform: translateY(-3px);
}

/* TikTok - cyan/pink */
.icons a img[alt="TikTok"]:hover {
  box-shadow: 
    0 0 12px rgba(0, 242, 234, 0.9),
    0 0 22px rgba(255, 0, 80, 0.9);
  transform: translateY(-3px);
}

/* Twitch - purple */
.icons a img[alt="Twitch"]:hover {
  box-shadow: 0 0 14px rgba(145, 70, 255, 0.9),
              0 0 26px rgba(145, 70, 255, 0.5);
  transform: translateY(-3px);
}

/* Kick - neon green */
.icons a img[alt="Kick"]:hover {
  box-shadow: 0 0 14px rgba(83, 252, 24, 0.95),
              0 0 26px rgba(83, 252, 24, 0.6);
  transform: translateY(-3px);
}

/* === Spotify link styling === */

/* Dark backing for transparent Spotify logo */
.link--spotify img {
  background: #000;
  padding: 6px;
  border-radius: 50%;
}

/* Spotify hover glow (match other socials) */
.link--spotify:hover {
  background-color: #1db954;
  box-shadow:
    0 0 14px rgba(29, 185, 84, 0.9),
    0 0 32px rgba(29, 185, 84, 0.7);
}

/* Subtle icon pop on hover */
.link--spotify:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(29, 185, 84, 0.9);
}
