/* Snuffle TIME — shared styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; min-height: 100%; }

body {
  font-family: 'Nunito', sans-serif;
  background-color: #1A0A2E;
  color: #ffffff;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}

body.page-maintenance { align-items: center; overflow: hidden; }
body.page-links { align-items: flex-start; padding: 48px 24px 64px; }

/* Glow backgrounds — promoted to their own compositor layer so they don't
   repaint on scroll. */
body::before,
body::after {
  content: '';
  position: fixed;
  left: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform: translate(-50%, -50%) translateZ(0);
  backface-visibility: hidden;
}
body.page-maintenance::before { top: 50%; }
body.page-links::before { top: 40%; }
body::before {
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at center,
    rgba(123, 47, 190, 0.35) 0%,
    rgba(123, 47, 190, 0.13) 40%,
    transparent 70%);
}
body.page-maintenance::after { top: 50%; }
body.page-links::after { top: 40%; }
body::after {
  width: 1400px; height: 1000px;
  background: radial-gradient(ellipse at center,
    rgba(233, 30, 140, 0.07) 0%,
    transparent 60%);
}

/* Paw decorations — also promoted so scroll/animation doesn't repaint them. */
.paw-deco {
  position: fixed;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  line-height: 1;
  will-change: transform;
  backface-visibility: hidden;
}
.paw-deco.p1 { top: 8%;  left: 5%;  font-size: 60px; transform: rotate(-20deg); }
.paw-deco.p2 { bottom: 10%; right: 6%; font-size: 90px; transform: rotate(15deg); }
.paw-deco.p3 { top: 50%; left: 2%;  font-size: 50px; transform: rotate(5deg); }
.paw-deco.p4 { top: 15%; right: 4%; font-size: 70px; transform: rotate(-10deg); }
.paw-deco.p5 { bottom: 20%; left: 8%; font-size: 45px; transform: rotate(25deg); }
.paw-deco.p6 { bottom: 42%; right: 3%; font-size: 36px; transform: rotate(-8deg); }

/* Container */
.container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.page-maintenance .container { max-width: 720px; padding: 40px 24px; justify-content: center; }
.page-links .container { max-width: 560px; }

/* Logo */
.logo-wrapper {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-bottom: 40px;
}
.logo-wrapper::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(ellipse at center,
              rgba(233, 30, 140, 0.45) 0%,
              rgba(123, 47, 190, 0.25) 40%,
              transparent 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}
.page-links .logo-wrapper { max-width: 520px; margin-bottom: 28px; }
.logo-wrapper img { width: 100%; height: auto; display: block; position: relative; }

/* Divider */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #7B2FBE, #E91E8C);
  border-radius: 2px;
  margin-bottom: 32px;
  opacity: 0.9;
}
.page-links .divider { width: 64px; margin-bottom: 20px; }

/* Maintenance text */
.maintenance-message {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 600;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin-bottom: 44px;
  letter-spacing: 0.01em;
}
.maintenance-message .highlight { color: #E91E8C; font-weight: 700; }

/* Tagline */
.tagline {
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.03em;
  margin-bottom: 36px;
}

/* CTA button (maintenance) */
.cta-button {
  display: inline-block;
  background: #E91E8C;
  color: #ffffff;
  font: 800 clamp(15px, 1.1vw, 18px) 'Nunito', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 52px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(233, 30, 140, 0.45), 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}
.cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  border-radius: 50px;
  pointer-events: none;
}
.cta-button:hover {
  transform: translateY(-3px) scale(1.03);
  background-color: #f72da0;
  box-shadow: 0 8px 32px rgba(233, 30, 140, 0.65), 0 4px 12px rgba(0, 0, 0, 0.35);
}
.cta-button:active { transform: translateY(-1px) scale(1.01); }
.cta-button:focus { outline: 3px solid rgba(233, 30, 140, 0.6); outline-offset: 3px; }

/* Link sections */
.link-sections { display: flex; flex-direction: column; gap: 32px; width: 100%; }
.link-section {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; width: 100%;
}
.section-label {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(167, 120, 230, 0.75);
  margin-bottom: 2px;
  align-self: flex-start;
  padding-left: 4px;
}

.link-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; width: 100%;
  padding: 17px 36px;
  border-radius: 50px;
  border: none;
  font: 800 clamp(15px, 1.05vw, 17px) 'Nunito', sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}
.link-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, transparent 55%);
  border-radius: 50px;
  pointer-events: none;
}
.link-btn i { font-size: 17px; flex-shrink: 0; }
.link-btn:hover { transform: translateY(-3px) scale(1.02); }
.link-btn:active { transform: translateY(-1px) scale(1.005); }
.link-btn:focus { outline: 3px solid rgba(233, 30, 140, 0.55); outline-offset: 3px; }

.btn-social {
  background: #2D1052;
  color: #ffffff;
  border: 1px solid rgba(123, 47, 190, 0.4);
  border-left: 4px solid #E91E8C;
  box-shadow: 0 4px 18px rgba(123, 47, 190, 0.25), 0 2px 6px rgba(0, 0, 0, 0.35);
}
.btn-social:hover {
  background: #38136a;
  box-shadow: 0 8px 28px rgba(123, 47, 190, 0.45), 0 4px 12px rgba(0, 0, 0, 0.4),
              inset 0 0 0 1px rgba(233, 30, 140, 0.3);
}
.btn-facebook:hover  { box-shadow: 0 8px 28px rgba(123, 47, 190, 0.45), 0 0 20px rgba(24, 119, 242, 0.2),  0 4px 12px rgba(0, 0, 0, 0.4); }
.btn-instagram:hover { box-shadow: 0 8px 28px rgba(123, 47, 190, 0.45), 0 0 20px rgba(225, 48, 108, 0.2),  0 4px 12px rgba(0, 0, 0, 0.4); }
.btn-tiktok:hover    { box-shadow: 0 8px 28px rgba(123, 47, 190, 0.45), 0 0 20px rgba(105, 201, 208, 0.15), 0 4px 12px rgba(0, 0, 0, 0.4); }

.btn-action {
  background: #E91E8C;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(233, 30, 140, 0.45), 0 2px 8px rgba(0, 0, 0, 0.3);
}
.btn-action:hover {
  background-color: #f72da0;
  box-shadow: 0 8px 32px rgba(233, 30, 140, 0.65), 0 4px 14px rgba(0, 0, 0, 0.35);
}

.icon-wrap {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.btn-action .icon-wrap { background: rgba(255, 255, 255, 0.18); }

.footer {
  margin-top: 44px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 768px) {
  .logo-wrapper { max-width: 400px; }
  .maintenance-message { font-size: 16px; }
  .cta-button { padding: 14px 40px; font-size: 15px; }
}
@media (max-width: 640px) {
  body.page-links { padding: 36px 18px 52px; }
  .tagline { font-size: 17px; }
  .link-btn { padding: 15px 28px; font-size: 15px; }
}
@media (max-width: 480px) {
  .logo-wrapper { max-width: 320px; }
  .page-maintenance .container { padding: 32px 20px; }
}
