:root{
  --outsideBg: rgba(27,38,59,1);
  --canvasBgTop: rgba(27,38,59,1);
  --canvasBgBottom: rgba(13, 27, 42, 1);
  --textPrimary: rgba(224,225,221,1);
  --textMuted: rgba(155,162,176,1);
  --ctaBg: rgba(194, 160, 89, 1);
  --ctaText: rgba(13, 27, 42, 1);
  --shadow: 0 18px 40px rgba(0,0,0,0.55);
}

@font-face{
  font-family: "ImpactCustom";
  src: url("../assets/fonts/impact.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  font-family: "ImpactCustom", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;  background: var(--outsideBg);
  color: var(--textPrimary);
}

.outsideFrame{
  min-height: 100%;
  display: grid;
  place-items: start center;
  padding: 10px 0;
}

.pageCanvas{
  width: 360px;
  max-width: 360px;
  background: linear-gradient(180deg, var(--canvasBgTop), var(--canvasBgBottom));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.section{
  padding: 10px 15px 10px 15px;
  position: relative;
}

.title{
  margin: 0;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 0.98;
  font-size: 40px;
  text-transform: none;
}

.subtitle{
  margin: 15px 0px 0px 0px;
  color: var(--textMuted);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
}

.ctaRow{
  margin-top: 14px;
}

.btn{
  display: inline-block;
  padding: 2px 4px;
  background: var(--ctaBg);
  color: var(--ctaText);
  font-weight: 400;
  text-decoration: none;
  border-radius: 7px;
  font-size: 16px;
  box-shadow: 0 4px 0 rgba(0,0,0,0.75);
}

.brandWatermark{
  position: absolute;
  right: -10px;
  top: 290px;
  font-weight: 400;
  font-size: 55px;
  letter-spacing: 2px;
  opacity: 0.1;
  transform: rotate(90deg);
  transform-origin: top right;
  pointer-events: none;
  user-select: none;
}

.cardTrio{
  height: 194px;
  /*margin-top: 12px;*/
  position: relative;
  /*background: rgba(117, 237, 129, 0.75);*/
}

.showcaseCard{
  position: absolute;
  width: 122px;
  height: 170px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 14px 24px rgba(0,0,0,0.55);
  border: 2px solid rgba(0,0,0,0.75);
  background: rgba(255,255,255,0.06);
}
.showcaseCard.isLeft{ left: 2px; top: 14px; transform: rotate(-13deg); }
.showcaseCard.isMid{ left: 105px; top: 0px; transform: rotate(0deg); }
.showcaseCard.isRight{ right: 2px; top: 18px; transform: rotate(12deg); }

/*.dividerBand{
  height: 15px;
  background: rgba(0,255,0,0.75);
}*/

.sectionTitle{
  margin: 0px;
  padding: 15px 0px 0px 0px;
  font-size: 40px;
  font-weight: 400;
  line-height: 0.95;
}
.sectionBody{
  margin: 15px 0px 0px 0px;
  color: var(--textMuted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.promo{
  padding: 10px 20px 10px 20px;
  background: rgba(7, 19, 35, 0.55);
  /*border-top: 1px solid rgba(255,255,255,0.06);*/
  position: relative;
}

.promoIconRow{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /*gap: 14px;*/
  opacity: 0.22;
  margin-top: 6px;
}
.promoIcon{
  width: 100%;
  height: 86px;
  object-fit: contain;
}
.promoTitle{
  margin: 10px 0 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 0.95;
  opacity: 0.22;
}
.promoBody{
  margin: 10px 0 0;
  /* color: var(--textMuted);*/
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  opacity: 0.22;
}
.promoCtaRow{
  margin-top: 12px;
  opacity: 0.22;
}
/*.btnSecondary{
  background: rgba(202, 162, 74, 0.15);
  color: rgba(194, 160, 89, 1);
  border: 1px solid rgba(202, 162, 74, 0.45);
  box-shadow: none;
}*/

.stamp{
  position: absolute;
  left: 85px;
  bottom: 45px;
  transform: rotate(-33deg);
  transform-origin: left bottom;
  font-weight: 400;
  font-size: 50px;
  letter-spacing: 0.95px;
  color: rgba(194, 160, 89, 1);
  text-shadow: 0 4px 0 rgba(0,0,0,0.45);
  -webkit-text-stroke: 2px rgba(0,0,0,1);
  pointer-events: none;
  user-select: none;
}

.hidden{ display: none !important; }

