/* =========================================================
   Minecraft Avatar Creator — page-specific styles.
   Shared builder/world styles live in css/character-system.css.
   All artwork here is original (the site's own blocky-avatar SVG rig),
   not Minecraft's actual textures or characters.
   ========================================================= */

.mc-block-strip {
  height: 16px;
  background-image: repeating-linear-gradient(
    90deg,
    #5a8f3a 0px, #5a8f3a 24px,
    #7a5c3a 24px, #7a5c3a 48px,
    #8a8a8a 48px, #8a8a8a 72px,
    #5a8f3a 72px, #5a8f3a 96px
  );
  border-bottom: 3px solid #05060a;
}

.mc-hero {
  max-width: 900px;
}

.mc-mascot-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}

@media (max-width: 680px) {
  .mc-mascot-row {
    flex-direction: column;
    text-align: center;
  }
}

.mc-mascot {
  flex: 0 0 auto;
  width: 120px;
  filter: drop-shadow(0 0 18px rgba(255, 158, 44, 0.5));
}

.mc-mascot svg {
  width: 100%;
  height: auto;
  display: block;
}

.mc-title {
  font-family: 'Press Start 2P', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  margin: 0.5rem 0 0.75rem;
  background: linear-gradient(180deg, #ffe066 0%, #ff9e2c 45%, #e34848 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(255, 158, 44, 0.55);
}

@media (max-width: 680px) {
  .mc-title {
    font-size: 0.95rem;
  }
}
