/* === LOCAL FONTS === */
@font-face {
  font-family: 'Noto Sans';
  src: url('/fonts/NotoSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('/fonts/NotoSans-ExtraBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('/fonts/NotoSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Reset & base */
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family: 'Noto Sans', Arial, sans-serif;
  color:#fff;
  height:100vh;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background-color:#000;
  position:relative;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Background layers */
.xhmzfubr{
  position:fixed;
  inset:0;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  will-change:opacity, transform;
  transition:opacity 900ms ease, transform 900ms ease;
  z-index:-3;
  opacity:0;
  transform:scale(1.02);
}

.xhmzfubr.mztujhqr{opacity:1; transform:scale(1);}

.ocfkzozq{
  position:fixed;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
  z-index:-2;
  backdrop-filter: blur(3px);
}

.hgchqsgr{
  position:relative;
  z-index:2;
  width:100%;
  max-width:460px;
  padding:26px;
  text-align:center;
}

/* headline */
h1{
    font-size: 2.05rem;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: none;
    background: none;
    padding: 10px 10px;
    border-radius: 8px;
    display: inline-block;
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.28);
}

.wsivleix{
  width:56px;
  height:4px;
  margin:10px auto 18px;
  border-radius:999px;
  background:linear-gradient(90deg,#ff4d8a,#ff9acb);
  box-shadow:0 6px 20px rgba(255,70,150,0.18);
  opacity:0;
  animation:fadeUp .7s ease .12s forwards;
}

.joqcnlcj{display:flex;flex-direction:column;gap:12px;align-items:center;justify-content:center;margin-top:4px}

.btn {
  width: 80%;
  background: linear-gradient(45deg, #ff2e63, #ff6a88);
  color: white;
  font-size: 1.15em;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: all 0.25s ease;
  animation: pulseBtn 4s infinite ease-in-out;
  box-shadow: 0 6px 18px rgba(255, 50, 100, 0.35);
}

.btn:hover {
  transform: scale(1.07);
  background: linear-gradient(45deg, #ff6a88, #ff2e63);
  box-shadow: 0 8px 25px rgba(255, 50, 100, 0.55);
}

.btn.pulse{ animation:btnPulse 1.9s infinite cubic-bezier(.4,.0,.6,1); }
@keyframes btnPulse {
  0%{transform:scale(1)}
  50%{transform:scale(1.06)}
  100%{transform:scale(1)}
}

#footer-text {
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: fixed;
  bottom: 12px;
  width: 100%;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.86);
  opacity: 0.95;
  z-index: 2;
}

@media (max-width:520px){
  h1{font-size:1.45rem}
  .btn{min-width:200px;padding:12px 20px;font-size:1rem}
  .hgchqsgr{padding:18px}
}

@keyframes fadeUp{
  from {opacity:0; transform:translateY(8px)}
  to {opacity:1; transform:translateY(0)}
}