/* PalPanel Command Center — hero edge/seam fix v1.3
   The visible lines were not a CSS border; they were sub-pixel seams from
   the rounded, clipped background over the patterned page background. */

.world-card{
  border:0!important;
  outline:0!important;
  border-radius:24px!important;
  overflow:hidden!important;
  isolation:isolate!important;
  transform:translateZ(0)!important;
  backface-visibility:hidden!important;
  background-color:#050c18!important;
  background-clip:border-box!important;
  clip-path:inset(0 round 24px)!important;

  /* Dark inner caps hide the 1px anti-alias seam at top and bottom. */
  box-shadow:
    inset 0 2px 0 rgba(2,7,17,.96),
    inset 0 -2px 0 rgba(2,7,17,.96),
    0 30px 90px rgba(0,0,0,.50)!important;
}

/* Keep the image/overlay fully inside the clipped surface. */
.world-card::before{
  inset:1px 0!important;
  border:0!important;
  outline:0!important;
  border-radius:23px!important;
  box-shadow:none!important;
}

/* Do not allow inherited panel highlight strips on the hero. */
.server-hero .world-card.panel::before,
.server-hero .world-card.glass::before,
.server-hero .world-card.card::before{
  top:1px!important;
  bottom:1px!important;
  height:auto!important;
}

/* Last-resort cover for browser-specific 1px compositing seams. */
.world-card{
  -webkit-mask-image:-webkit-radial-gradient(white,black)!important;
}
