body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../images/pt.jpg") center/cover no-repeat;
  z-index: -2;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--bg-overlay);
  z-index: -1;
  pointer-events: none;
}
.under-construction {
  margin: 20px auto;
}
.under-construction img {
  height: 120px;
  width: auto;
  border: none;
  border-radius: 12px;
  margin-bottom: 30px;
}
.main-button {
  text-align: center;
  margin: 0;
  z-index: 10;
  margin-bottom: 0px;
}
.main-button a {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid var(--cyber-blue);
  border-radius: 12px;
  color: var(--cyber-blue);
  font-weight: 700;
  font-size: 1.1em;
  text-decoration: none;
  animation: cyberGlow 3s infinite ease-in-out;
  box-shadow: 0 0 10px var(--cyber-blue);
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

/* Bigger TikTok link text */
.tiktok-link {
  display: block;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.6px;
  color: #fff;
  text-decoration: none;
  margin: 10px 0;
  padding: 10px 18px;
  border-radius: 12px;
  background: linear-gradient(90deg,#ff7a00 0%, #ff3b00 100%);
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(255,90,30,0.14), 0 0 18px rgba(255,90,30,0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  margin-top: 85px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tiktok-link:hover,
.tiktok-link:focus {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 54px rgba(255,90,30,0.22), 0 0 28px rgba(255,90,30,0.09);
  filter: brightness(1.02);
  outline: none;
}
.tiktok-link:active {
  transform: translateY(-1px) scale(0.995);
}

/* pt page slogans styling */
.pt-slogan {
  font-family: 'Oswald', 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin: 6px 0;
  color: #ff6a00; /* energetic fitness orange */
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 2px 0 rgba(0,0,0,0.12);
  /* slightly stronger faded background for better contrast */
  background: rgba(15,23,42,0.30);
  padding: 10px 20px;
  border-radius: 10px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.pt-slogan2 {
  font-family: 'Oswald', 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin: 1px 0;
  color: #ff6a00; /* energetic fitness orange */
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 2px 0 rgba(0,0,0,0.12);
  margin-top: 1px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.pt-tagline {
  /* motivating display style */
  font-family: 'Bebas Neue', 'Montserrat', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  font-style: italic;
  letter-spacing: 2px;
  margin: 20px 0;
  color: #0f172a; /* deep navy for strong contrast */
  text-align: center;
 text-transform: lowercase !important;
  line-height: 1;
  margin-bottom: 35px;
}

/* Entrance + subtle glow animation for tagline */
@keyframes ptRiseIn {
  from { opacity: 0; transform: translateY(8px) scale(0.995); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes ptPulse {
  0% {
    transform: scale(1);
    text-shadow: 0 6px 10px rgba(15,23,42,0.10), 0 0 0 rgba(255,106,0,0);
    filter: drop-shadow(0 6px 8px rgba(15,23,42,0.06));
  }
  40% {
    transform: scale(1.03);
    text-shadow: 0 12px 30px rgba(15,23,42,0.20), 0 0 16px rgba(255,106,0,0.06);
    filter: drop-shadow(0 12px 18px rgba(15,23,42,0.12));
  }
  100% {
    transform: scale(1);
    text-shadow: 0 6px 10px rgba(15,23,42,0.10), 0 0 0 rgba(255,106,0,0);
    filter: drop-shadow(0 6px 8px rgba(15,23,42,0.06));
  }
}

.pt-tagline {
  text-transform: lowercase !important;
  animation: ptRiseIn 420ms cubic-bezier(.2,.8,.2,1) both,
             ptPulse 2.2s ease-in-out 320ms infinite;
}
.pt-tagline:hover {
  transform: translateY(-4px) scale(1.05);
  text-shadow: 0 18px 46px rgba(15,23,42,0.28), 0 0 24px rgba(255,106,0,0.08);
  transition: transform 160ms ease, text-shadow 160ms ease;
}
  html, body {
  height: 100%;
}
body {
  position: relative;
  overflow: hidden;
}
.main-button {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px 0;
  gap: 12px;
  margin-bottom: 1px;
}
.main-button a {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid var(--cyber-blue);
  border-radius: 12px;
  color: var(--cyber-blue);
  font-weight: 700;
  font-size: 1.1em;
  text-decoration: none;
  animation: cyberGlow 3s infinite ease-in-out;
  box-shadow: 0 0 10px var(--cyber-blue);
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}
