:root {
  --bg-main: #0a0a0c;
  --bg-panel: rgba(255,255,255,0.04);
  --gold: #d4af37;
  --gold-glow: rgba(212,175,55,0.4);
  --text-main: #f4f4f4;
  --text-muted: #a9a9a9;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;

  --shadow-lg: 0 25px 60px rgba(0,0,0,0.55);
}

body {
  background: radial-gradient(circle at top, #121218, var(--bg-main));
  color: var(--text-main);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.65;
}
h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
}
.pp-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.88)
    ),
    url("https://images.unsplash.com/photo-1515169067865-5387ec356754");

  background-size: cover;
  background-position: center 35%;
}

@media (max-width: 768px) {
  .pp-hero {
    min-height: 72vh;
    background-position: center 20%;
  }
}
.pp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255,255,255,0.04),
    transparent 60%
  );
}


.pp-hero-content {
  max-width: 720px;
  padding: 40px;
}

.pp-cta {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 38px;
  background: linear-gradient(135deg, var(--gold), #f1d87a);
  color: #000;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 0 40px var(--gold-glow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pp-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px var(--gold-glow);
}
.WaGadget {
  background: var(--bg-panel);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  margin-bottom: 40px;
}
.WaGadgetUpcomingEvents .noEvents {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
  font-style: italic;
}

.WaGadgetUpcomingEvents .noEvents::after {
  content: "New experiences launching soon. Stay ready.";
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 600;
}
button,
input[type="submit"] {
  background: linear-gradient(135deg, var(--gold), #f2db85);
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 30px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover,
input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px var(--gold-glow);
}

input,
select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 12px;
  color: var(--text-main);
}
.WaGadgetMenuHorizontal ul li a {
  color: var(--text-main);
  font-weight: 500;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.WaGadgetMenuHorizontal ul li a:hover {
  background: rgba(212,175,55,0.15);
}
.WaGadget,
.pp-hero-content {
  animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .pp-hero {
    min-height: 70vh;
  }

  .pp-hero-content {
    padding: 20px;
  }

  h1 {
    font-size: 2.2rem;
  }
}
/* Footer powered bywa */

#idFooterPoweredByWA{

display:none;

}   
