﻿/* Page base */
#landing-page {
  background: #2d2d2c;
  padding: 0; /* strips will handle spacing */
}

/* Full-width vertical strips */
.landing-strip {
  width: 100%;
  padding: 18px 20px;
  box-sizing: border-box;
}

/* Shared inner wrapping for text blocks (intro + long text) */
.landing-long-inner {
  width: 100%;
  margin: 0;
  color: #eaeaea;
  font-size: 16px;
  line-height: 1.6;
  padding: 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset;
}

/* Logo strip */
.landing-logo {
  text-align: center;
  padding-top: 24px;
  padding-bottom: 10px;
}

/* Make logo bigger / stop shrinking */
.landing-logo-img {
  display: inline-block;
  height: auto;
  width: auto;
  max-height: 240px;   /* increase cap (or remove if you prefer) */
  max-width: 100%;     /* keep responsive */
}

/* Mini battle strip */
.landing-animation {
  padding-top: 10px;
  padding-bottom: 22px;
}

/* Mini battle arena card centered */
#mini-battle {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto;

  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset;
}

/* Characters */
.mb-char {
  position: absolute;
  width: 60px;
  height: 60px;
  user-select: none;
  -webkit-user-drag: none;
}

.mb-char.tl { left: 10px; top: 10px; }
.mb-char.tr { right: 10px; top: 10px; }
.mb-char.bl { left: 10px; bottom: 10px; }
.mb-char.br { right: 10px; bottom: 10px; }

/* Flip Agatha + Oprix horizontally */
#mb-agatha,
#mb-oprix {
  transform: scaleX(-1);
}

/* Projectile */
.mb-proj {
  position: absolute;
  width: 44px;
  height: 44px;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate(-9999px, -9999px);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.55));
}
