:root {
  --color-bg: #F1F5F9;
  --color-bg-gradient: linear-gradient(135deg, #F1F5F9 80%, rgba(14,165,233,0.04) 100%);
  --color-bg-card: #fff;
  --color-bg-card-gradient: linear-gradient(120deg, #fff 80%, rgba(14,165,233,0.03) 100%);
  --color-accent: #0EA5E9;
  --color-accent-light: #38bdf8;
  --color-text: #222d3a;
  --color-text-muted: #5c6a7a;
  --color-border: rgba(14,165,233,0.15);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-lg: 0 8px 32px 0 rgba(14,165,233,0.08), 0 1.5px 3px 0 rgba(30,41,59,0.03);
  --shadow-md: 0 2px 8px 0 rgba(14,165,233,0.05), 0 0.5px 1px 0 rgba(30,41,59,0.02);
  --shadow-sm: 0 1px 3px 0 rgba(30,41,59,0.04);
  --max-width: 1240px;
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-size: 14px;
  --font-size-lg: 18px;
  --font-size-title: 2.1rem;
  --font-size-h2: 1.35rem;
  --font-size-h3: 1.1rem;
  --font-size-small: 12px;
}

html, body {
  min-height: 100%;
  background: var(--color-bg-gradient);
  font-family: var(--font-main);
  font-size: var(--font-size);
  color: var(--color-text);
  margin: 0;
  padding: 0;
  letter-spacing: 0.01em;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body.sticker-by-number-body {
  background: var(--color-bg-gradient);
  min-height: 100vh;
}

.sticker-by-number-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.sticker-by-number-header {
  background: var(--color-bg-card-gradient);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 50;
}

.sticker-by-number-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px 12px 24px;
}

.sticker-by-number-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.sticker-by-number-logo__img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  box-shadow: 0 1px 6px 0 rgba(14,165,233,0.07);
  background: #fff;
  object-fit: cover;
}

.sticker-by-number-nav__list {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sticker-by-number-nav__link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  position: relative;
}

.sticker-by-number-nav__link:hover,
.sticker-by-number-nav__link:focus {
  background: rgba(14,165,233,0.08);
  color: var(--color-accent);
}

.sticker-by-number-main {
  margin-top: 0;
  padding-top: 0;
}

.sticker-by-number-hero {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 38px;
  padding: 48px 0 36px 0;
  background: var(--color-bg-card-gradient);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: 44px;
  position: relative;
}

.sticker-by-number-hero__media {
  flex: 1 1 380px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 260px;
  min-height: 320px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-gradient);
  box-shadow: var(--shadow-md);
}

.sticker-by-number-hero__video,
.sticker-by-number-hero__image {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: #e0e7ef;
  box-shadow: var(--shadow-sm);
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
}

.sticker-by-number-hero__video {
  opacity: 0.93;
  z-index: 2;
}

.sticker-by-number-hero__image {
  opacity: 0.12;
  z-index: 1;
}

.sticker-by-number-hero__content {
  flex: 2 1 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  min-width: 280px;
  max-width: 560px;
  padding: 18px 0 18px 0;
}

.sticker-by-number-hero__title {
  font-size: var(--font-size-title);
  font-weight: 800;
  margin: 0 0 8px 0;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.sticker-by-number-hero__subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin: 0 0 18px 0;
  font-weight: 400;
}

.sticker-by-number-hero__features {
  margin-bottom: 12px;
}

.sticker-by-number-hero__list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sticker-by-number-hero__list li {
  position: relative;
  padding-left: 20px;
  color: var(--color-text);
  font-size: 15px;
}

.sticker-by-number-hero__list li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.15;
  box-shadow: 0 0 0 2px var(--color-accent);
}

.sticker-by-number-hero__actions {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}

.sticker-by-number-hero__btn {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: none;
  box-shadow: var(--shadow-md);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  outline: none;
  letter-spacing: 0.01em;
}

.sticker-by-number-btn--primary {
  background: var(--color-accent);
  color: #fff;
}

.sticker-by-number-btn--primary:hover,
.sticker-by-number-btn--primary:focus {
  background: #fff;
  color: var(--color-accent);
  box-shadow: 0 2px 12px 0 rgba(14,165,233,0.10);
}

.sticker-by-number-btn--secondary {
  background: #fff;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.sticker-by-number-btn--secondary:hover,
.sticker-by-number-btn--secondary:focus {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(14,165,233,0.09);
}

.sticker-by-number-title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  margin: 0 0 22px 0;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.sticker-by-number-world {
  margin: 0 0 44px 0;
  padding: 32px 0;
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.sticker-by-number-world__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: stretch;
}

.sticker-by-number-world__col {
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.sticker-by-number-world__lead {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.sticker-by-number-world__img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 18px;
}

.sticker-by-number-world__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sticker-by-number-world__col ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 7px;
  color: var(--color-text);
  font-size: 14px;
}

.sticker-by-number-world__col ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.13;
}

.sticker-by-number-play {
  margin: 0 0 44px 0;
  padding: 32px 0;
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.sticker-by-number-play__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
}

.sticker-by-number-play__col {
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.sticker-by-number-play__col ol,
.sticker-by-number-play__col ul {
  margin: 0 0 0 0;
  padding: 0;
}

.sticker-by-number-play__col ol {
  list-style: none;
  counter-reset: sticker-ol;
}

.sticker-by-number-play__col ol li {
  counter-increment: sticker-ol;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--color-text);
}

.sticker-by-number-play__col ol li::before {
  content: counter(sticker-ol) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 15px;
  opacity: 0.7;
}

.sticker-by-number-play__col ul {
  list-style: none;
}

.sticker-by-number-play__col ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 7px;
  color: var(--color-text);
  font-size: 14px;
}

.sticker-by-number-play__col ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.13;
}

.sticker-by-number-rhythm {
  margin: 0 0 44px 0;
  padding: 32px 0;
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.sticker-by-number-rhythm__content {
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.sticker-by-number-rhythm__content ol,
.sticker-by-number-rhythm__content ul {
  margin: 0 0 0 0;
  padding: 0;
}

.sticker-by-number-rhythm__content ol {
  list-style: none;
  counter-reset: rhythm-ol;
}

.sticker-by-number-rhythm__content ol li {
  counter-increment: rhythm-ol;
  position: relative;
  padding-left: 28px;
  margin-bottom: 9px;
  font-size: 14px;
  color: var(--color-text);
}

.sticker-by-number-rhythm__content ol li::before {
  content: counter(rhythm-ol) ".";
  position: absolute;
  left: 0; top: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 15px;
  opacity: 0.7;
}

.sticker-by-number-rhythm__content ul {
  list-style: none;
}

.sticker-by-number-rhythm__content ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 7px;
  color: var(--color-text);
  font-size: 14px;
}

.sticker-by-number-rhythm__content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.13;
}

.sticker-by-number-features {
  margin: 0 0 44px 0;
  padding: 32px 0;
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.sticker-by-number-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sticker-by-number-feature {
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  min-height: 120px;
  gap: 10px;
}

.sticker-by-number-feature__img {
  width: 100%;
  max-width: 120px;
  align-self: center;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.sticker-by-number-screenshots {
  margin: 0 0 44px 0;
  padding: 32px 0;
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.sticker-by-number-screenshots__intro {
  color: var(--color-text-muted);
  margin-bottom: 18px;
  font-size: 14px;
}

.sticker-by-number-screenshots__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.sticker-by-number-screenshots__item {
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 12px 10px 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.sticker-by-number-screenshots__img {
  width: 100%;
  max-width: 160px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  margin-bottom: 7px;
}

.sticker-by-number-screenshots__item figcaption {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
}

.sticker-by-number-content {
  margin: 0 0 44px 0;
  padding: 32px 0;
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.sticker-by-number-content__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
}

.sticker-by-number-content__list li {
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 12px 18px;
  position: relative;
  color: var(--color-text);
  font-size: 14px;
}

.sticker-by-number-content__img {
  width: 100%;
  max-width: 340px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin: 0 auto;
  display: block;
}

.sticker-by-number-feel {
  margin: 0 0 44px 0;
  padding: 32px 0;
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.sticker-by-number-feel .sticker-by-number-container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sticker-by-number-feel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.sticker-by-number-feel ul li {
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 11px 18px;
  color: var(--color-text);
  font-size: 14px;
  position: relative;
}

.sticker-by-number-feel ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.13;
}

.sticker-by-number-faq {
  margin: 0 0 44px 0;
  padding: 32px 0;
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.sticker-by-number-faq__list {
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.sticker-by-number-faq__list dt {
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 5px;
  font-size: 14px;
}

.sticker-by-number-faq__list dd {
  margin: 0 0 12px 0;
  color: var(--color-text-muted);
  font-size: 14px;
}

.sticker-by-number-reviews {
  margin: 0 0 44px 0;
  padding: 32px 0;
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.sticker-by-number-reviews__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.sticker-by-number-review {
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 22px 18px;
  font-size: 14px;
  color: var(--color-text);
  position: relative;
}

.sticker-by-number-review p {
  margin: 0 0 10px 0;
}

.sticker-by-number-review cite {
  font-size: 12px;
  color: var(--color-accent);
  font-style: normal;
  font-weight: 600;
}

.sticker-by-number-summary {
  margin: 0 0 44px 0;
  padding: 32px 0;
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.sticker-by-number-summary__cta {
  margin-top: 18px;
  padding: 14px 22px;
  background: linear-gradient(90deg, #F1F5F9 85%, rgba(14,165,233,0.06) 100%);
  border-radius: var(--radius-md);
  color: var(--color-accent);
  font-weight: 600;
  font-size: 15px;
  box-shadow: var(--shadow-sm);
}

.sticker-by-number-footer {
  background: var(--color-bg-card-gradient);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-lg);
  padding: 32px 0 0 0;
  margin-top: 44px;
}

.sticker-by-number-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.sticker-by-number-footer__cols {
  display: flex;
  gap: 38px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.sticker-by-number-footer__col {
  flex: 1 1 0;
  min-width: 180px;
  max-width: 360px;
}

.sticker-by-number-footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  font-size: 17px;
}

.sticker-by-number-footer__logo {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  background: #fff;
  object-fit: cover;
  box-shadow: 0 1px 6px 0 rgba(14,165,233,0.07);
}

.sticker-by-number-footer__col h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: var(--color-text);
}

.sticker-by-number-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sticker-by-number-footer__col ul li {
  margin-bottom: 7px;
}

.sticker-by-number-footer__col ul li a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color var(--transition);
}

.sticker-by-number-footer__col ul li a:hover,
.sticker-by-number-footer__col ul li a:focus {
  color: var(--color-accent-light);
  text-decoration: underline;
}

.sticker-by-number-footer__bottom {
  border-top: 1px solid var(--color-border);
  padding: 14px 0 18px 0;
  color: var(--color-text-muted);
  font-size: 12px;
  text-align: center;
}

.sticker-by-number-cookie {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  z-index: 1000;
  display: none;
  align-items: flex-end;
  justify-content: center;
  background: none;
  pointer-events: none;
}

.sticker-by-number-cookie__inner {
  background: var(--color-bg-card-gradient);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 22px 28px 18px 28px;
  margin: 0 0 0 0;
  max-width: 420px;
  width: 100%;
  color: var(--color-text);
  font-size: 14px;
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.sticker-by-number-cookie__btn {
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: var(--radius-md);
  padding: 10px 20px;
  margin-left: 18px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.sticker-by-number-cookie__btn:hover,
.sticker-by-number-cookie__btn:focus {
  background: #fff;
  color: var(--color-accent);
  box-shadow: 0 2px 12px 0 rgba(14,165,233,0.13);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .sticker-by-number-header__inner {
    flex-direction: column;
    gap: 10px;
    padding: 15px 12px 8px 12px;
  }
  .sticker-by-number-hero {
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
    padding: 32px 0 28px 0;
  }
  .sticker-by-number-hero__media,
  .sticker-by-number-hero__content {
    max-width: 100%;
    min-width: 0;
  }
  .sticker-by-number-world__grid,
  .sticker-by-number-play__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .sticker-by-number-features__grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .sticker-by-number-screenshots__grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .sticker-by-number-content__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .sticker-by-number-feel ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .sticker-by-number-reviews__list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .sticker-by-number-footer__cols {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 700px) {
  .sticker-by-number-header__inner {
    flex-direction: column;
    gap: 6px;
    padding: 10px 6px 4px 6px;
  }
  .sticker-by-number-hero {
    flex-direction: column;
    gap: 18px;
    padding: 18px 0 14px 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
  .sticker-by-number-hero__media {
    min-height: 180px;
    height: 180px;
    max-width: 100%;
    border-radius: var(--radius-md);
  }
  .sticker-by-number-hero__video,
  .sticker-by-number-hero__image {
    height: 180px;
    border-radius: var(--radius-md);
  }
  .sticker-by-number-hero__content {
    padding: 8px 0 8px 0;
    gap: 10px;
  }
  .sticker-by-number-title {
    font-size: 1.1rem;
  }
  .sticker-by-number-world,
  .sticker-by-number-play,
  .sticker-by-number-rhythm,
  .sticker-by-number-features,
  .sticker-by-number-screenshots,
  .sticker-by-number-content,
  .sticker-by-number-feel,
  .sticker-by-number-faq,
  .sticker-by-number-reviews,
  .sticker-by-number-summary {
    padding: 14px 0;
    margin-bottom: 18px;
    border-radius: var(--radius-md);
  }
  .sticker-by-number-world__col,
  .sticker-by-number-play__col,
  .sticker-by-number-rhythm__content,
  .sticker-by-number-faq__list {
    padding: 14px 8px;
    border-radius: var(--radius-sm);
  }
  .sticker-by-number-features__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .sticker-by-number-screenshots__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .sticker-by-number-content__img {
    max-width: 100%;
  }
  .sticker-by-number-footer__inner {
    padding: 0 8px;
  }
  .sticker-by-number-footer__cols {
    flex-direction: column;
    gap: 10px;
  }
  .sticker-by-number-footer {
    padding: 14px 0 0 0;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    margin-top: 14px;
  }
  .sticker-by-number-cookie__inner {
    padding: 12px 8px 10px 8px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    font-size: 13px;
    gap: 10px;
  }
  .sticker-by-number-cookie__btn {
    padding: 8px 14px;
    margin-left: 10px;
    font-size: 13px;
    border-radius: var(--radius-sm);
  }
}

/* Hide scrollbars for card containers */
.sticker-by-number-screenshots__grid,
.sticker-by-number-features__grid,
.sticker-by-number-content__list {
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) var(--color-bg-card);
}
.sticker-by-number-screenshots__grid::-webkit-scrollbar,
.sticker-by-number-features__grid::-webkit-scrollbar,
.sticker-by-number-content__list::-webkit-scrollbar {
  height: 8px;
  background: var(--color-bg-card);
}
.sticker-by-number-screenshots__grid::-webkit-scrollbar-thumb,
.sticker-by-number-features__grid::-webkit-scrollbar-thumb,
.sticker-by-number-content__list::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 8px;
  opacity: 0.1;
}

/* Selection */
::selection {
  background: var(--color-accent);
  color: #fff;
}