/* ── STICKER SECTION STYLES (scoped with #gvm-stickers prefix) ── */
#gvm-stickers {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #070707;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid rgba(240,146,30,.08);
  border-bottom: 1px solid rgba(240,146,30,.08);
  user-select: none;
}

#gvm-stickers::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,146,30,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,146,30,.022) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.gvms-headline {
  position: relative;
  z-index: 60;
  text-align: center;
  pointer-events: none;
  padding: 40px 20px;
}

.gvms-headline h2 {
  font-family: 'Bebas Neue', 'Impact', 'Arial Black', sans-serif;
  font-size: clamp(64px, 11vw, 160px);
  line-height: .86;
  color: #f4f1ee;
  letter-spacing: -.01em;
  text-shadow: 0 4px 60px rgba(240,146,30,.08);
}

.gvms-headline h2 span {
  color: #F0921E;
  font-family: 'Playfair Display', 'Georgia', serif;
  font-style: italic;
}

.gvms-drag-hint {
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(244,241,238,.22);
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.gvms-drag-hint::before,
.gvms-drag-hint::after {
  content: '';
  flex: 0 0 32px;
  height: 1px;
  background: rgba(240,146,30,.2);
}

.gvm-sticker {
  position: absolute;
  cursor: grab;
  z-index: 10;
  transition: transform .15s ease, box-shadow .15s ease, z-index 0s;
  transform-origin: center center;
  -webkit-touch-callout: none;
  touch-action: none;
}

.gvm-sticker:active {
  cursor: grabbing;
  z-index: 100;
}

.gvm-sticker:hover {
  z-index: 50;
}

.gvm-sticker.dragging {
  transition: box-shadow .15s ease;
  cursor: grabbing;
  z-index: 200;
}

.gvms-badge {
  border-radius: 50%;
  background: #F0921E;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px #F0921E, 4px 4px 0 0 rgba(0,0,0,.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
}

.gvms-badge .bs-inner {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  line-height: 1.3;
  color: #070707;
}

.gvms-badge .bs-icon {
  font-size: 22px;
  margin-bottom: 4px;
}

.gvms-label {
  background: #070707;
  border: 3px solid #F0921E;
  box-shadow: 3px 3px 0 0 #F0921E;
  padding: 8px 18px;
  border-radius: 4px;
}

.gvms-label span {
  font-family: 'Bebas Neue', 'Impact', 'Arial Black', sans-serif;
  font-size: clamp(18px,2.5vw,28px);
  letter-spacing: .06em;
  color: #F0921E;
  display: block;
  line-height: 1;
  text-shadow: 2px 2px 0 rgba(0,0,0,.4);
}

.gvms-logo-sticker {
  background: #0d0d0d;
  border: 3px solid #fff;
  box-shadow: 4px 4px 0 0 rgba(0,0,0,.6);
  border-radius: 6px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gvms-logo-sticker .ls-icon {
  font-size: 28px;
}

.gvms-logo-sticker .ls-text {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: 20px;
  letter-spacing: .1em;
  line-height: 1.1;
  color: #f4f1ee;
}

.gvms-logo-sticker .ls-text span {
  color: #F0921E;
}

.gvms-tape {
  background: #F0921E;
  border: 3px solid #fff;
  box-shadow: 3px 3px 0 0 rgba(0,0,0,.5);
  padding: 7px 20px;
  border-radius: 2px;
  transform: rotate(-3deg);
}

.gvms-tape span {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(14px,2vw,22px);
  letter-spacing: .12em;
  color: #070707;
  display: block;
  line-height: 1;
}

.gvms-icon-sticker {
  background: #111;
  border: 3px solid #F0921E;
  box-shadow: 3px 3px 0 0 rgba(240,146,30,.4);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.gvms-icon-sticker .is-icon {
  font-size: 30px;
}

.gvms-icon-sticker .is-label {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: 11px;
  letter-spacing: .16em;
  color: #F0921E;
  text-align: center;
  line-height: 1;
}

.gvm-sticker:hover:not(.dragging) {
  filter: brightness(1.08);
  box-shadow: 6px 6px 20px rgba(0,0,0,.5);
}

@media (max-width: 1024px) {
  #gvm-stickers {
    min-height: 82vh;
  }

  .gvm-sticker {
    transform: scale(.86);
  }

  .gvms-headline {
    padding: 34px 24px;
  }
}

@media (max-width: 992px) {
  #gvm-stickers {
    min-height: 74vh;
  }

  .gvms-headline h2 {
    font-size: clamp(56px, 12vw, 104px);
  }

  .gvm-sticker {
    transform: scale(.78);
  }
}

@media (max-width: 768px) {
  #gvm-stickers {
    min-height: 68vh;
  }

  .gvms-headline h2 {
    font-size: clamp(48px, 14vw, 88px);
  }

  .gvms-drag-hint {
    letter-spacing: .2em;
  }

  .gvm-sticker {
    transform: scale(.72);
  }

  .gvms-label,
  .gvms-logo-sticker,
  .gvms-tape,
  .gvms-icon-sticker,
  .gvms-badge {
    max-width: 42vw;
  }
}

@media (max-width: 560px) {
  #gvm-stickers {
    min-height: 62vh;
  }

  .gvms-headline {
    padding: 26px 14px;
  }

  .gvms-headline h2 {
    font-size: clamp(38px, 16vw, 62px);
  }

  .gvms-drag-hint {
    font-size: 9px;
    letter-spacing: .14em;
    margin-top: 16px;
  }

  .gvm-sticker {
    transform: scale(.56);
  }

  .gvms-label,
  .gvms-logo-sticker,
  .gvms-tape,
  .gvms-icon-sticker,
  .gvms-badge {
    max-width: 50vw;
  }
}

@media (max-width: 430px) {
  #gvm-stickers {
    min-height: 58vh;
  }

  .gvms-headline h2 {
    font-size: clamp(34px, 15vw, 56px);
  }

  .gvms-drag-hint::before,
  .gvms-drag-hint::after {
    flex-basis: 20px;
  }

  .gvm-sticker {
    transform: scale(.5);
  }

  .gvms-label,
  .gvms-logo-sticker,
  .gvms-tape,
  .gvms-icon-sticker,
  .gvms-badge {
    max-width: 58vw;
  }
}

@media (min-width:401px) and (max-width:414px) {
  #gvm-stickers {
    min-height: 56vh;
  }

  .gvm-sticker {
    transform: scale(.48);
  }

  .gvms-label,
  .gvms-logo-sticker,
  .gvms-tape,
  .gvms-icon-sticker,
  .gvms-badge {
    max-width: 55vw;
  }
}

@media (min-width:391px) and (max-width:400px) {
  #gvm-stickers {
    min-height: 54vh;
  }

  .gvm-sticker {
    transform: scale(.45);
  }
}

@media (min-width:376px) and (max-width:390px) {
  #gvm-stickers {
    min-height: 52vh;
  }

  .gvm-sticker {
    transform: scale(.43);
  }
}

@media (max-width: 390px) {
  #gvm-stickers {
    min-height: 54vh;
  }

  .gvms-headline {
    padding: 20px 10px;
  }

  .gvms-headline h2 {
    font-size: clamp(30px, 14vw, 50px);
  }

  .gvms-drag-hint {
    font-size: 8px;
    letter-spacing: .1em;
  }

  .gvm-sticker {
    transform: scale(.46);
  }
}

@media (max-width: 375px) {
  .gvm-sticker {
    transform: scale(.42);
  }

  .gvms-label,
  .gvms-logo-sticker,
  .gvms-tape,
  .gvms-icon-sticker,
  .gvms-badge {
    max-width: 64vw;
  }
}

@media (max-width: 360px) {
  #gvm-stickers {
    min-height: 50vh;
  }

  .gvms-headline h2 {
    font-size: clamp(28px, 13vw, 44px);
  }

  .gvm-sticker {
    transform: scale(.38);
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  #gvm-stickers {
    min-height: 100svh;
  }

  .gvms-headline {
    padding: 14px 18px;
  }

  .gvms-headline h2 {
    font-size: clamp(28px, 8vw, 48px);
  }

  .gvm-sticker {
    transform: scale(.5);
  }
}
