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;
  background-color: #2864d4;
  color: white;
  padding: 8px 12px;
  margin: 10px auto;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  max-width: 100%;
  width: 100%;
  transition: background 0.3s;
}

.link:hover {
  background-color: #2596be;
}

.link img {
  height: 34px;
  margin-right: 6px;
  border-radius: 6px;
}

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

.section-title {
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #ccc;
  text-transform: uppercase;
  font-size: 1.2em;
}

.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: 420px;
  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);
}
/* === AngeloPab Gradient Background + Layout Restore === */

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;
}

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

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

/* Link buttons – premium blue theme */
.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: 100%;
  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;
}

/* Wider layout on larger screens so schedule text fits better */
@media (min-width: 768px) {
  .container {
    max-width: 480px;  /* you can try 500 if you want even wider */
  }
}

/* Footer */
.site-footer {
  margin-top: 10px;
  padding-top: 16px;
  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;
}


/* Footer spacing tweaks */
.site-footer {
  margin-top: 26px;
  padding-top: 18px;
}

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

/* Header polish to match neon/glass theme */
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);
}