.app-container {
  width: 100%;
  min-height: 100vh;
}

/* Splash Screen */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--lpu-black, #111);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-out;
}

.splash-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.splash-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  background: transparent;
  border-radius: 50%;
  animation: singleRotate 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes singleRotate {
  0% { transform: rotate(0deg); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: rotate(360deg); opacity: 1; }
}

.splash-miu-blocks {
  display: flex;
  gap: 15px;
  animation: slideUpFade 0.6s ease-out forwards;
  opacity: 0;
  animation-delay: 0.3s;
}

.splash-miu-blocks span {
  width: 60px;
  height: 60px;
  background-color: var(--lpu-orange, #f7ca18);
  color: var(--lpu-black, #111);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-heading, Arial, sans-serif);
  font-size: 38px;
  font-weight: 900;
  border-radius: 4px;
}

@keyframes slideUpFade {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Page fade in */
.app-container.page-fade-in {
  animation: pageFadeIn 2s ease-out;
}

@keyframes pageFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Page transitions */
.page-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Global Mobile Overrides */
@media (max-width: 768px) {
  .sticky-ribbon {
    display: none !important;
  }

  .app-container {
    padding-bottom: 100px;
  }

  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .section-padding {
    padding: 50px 0 !important;
  }
}

/* ── Shared Page Hero Banner ── */
.page-hero-banner {
  position: relative;
  padding: clamp(100px, 15vw, 160px) 0 60px;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.65) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
}

.page-hero-breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.page-hero-breadcrumb a:hover { color: white; }
.page-hero-breadcrumb span { color: rgba(255,255,255,0.4); }

.page-hero-content h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 10px;
}

.page-hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 600px;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
}
