:root {
  --telegram-yellow: #fff700;
  --telegram-ink: #080706;
  --telegram-panel: #151311;
  --telegram-paper: #fff8dc;
  --telegram-muted: #bdb69d;
  --telegram-blue: #2aabee;
  --telegram-pink: #ff3d8b;
  --telegram-line: rgba(255, 248, 220, 0.18);
}

.telegram-page {
  min-width: 280px;
  margin: 0;
  background: var(--telegram-ink);
  color: var(--telegram-paper);
}

.telegram-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 10px clamp(18px, 5vw, 72px);
  background: rgba(8, 7, 6, 0.96);
  border-bottom: 1px solid var(--telegram-line);
}

.telegram-brand img {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.telegram-header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: clamp(14px, 2.2vw, 30px);
}

.telegram-header nav a {
  color: var(--telegram-paper);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.telegram-header nav a:hover,
.telegram-header nav a[aria-current="page"] {
  color: var(--telegram-yellow);
}

.telegram-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(640px, 74vh);
  overflow: hidden;
  border-bottom: 1px solid var(--telegram-line);
}

.telegram-hero-media {
  position: absolute;
  inset: 0;
  background-image: url("/assets/music-usbs/397991361401.jpg?v=20260727b");
  background-position: center;
  background-size: cover;
}

.telegram-hero::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  content: "";
}

.telegram-hero-copy {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  max-width: 900px;
  padding: clamp(42px, 8vw, 94px) clamp(18px, 7vw, 96px);
}

.telegram-kicker {
  margin: 0 0 10px;
  color: var(--telegram-yellow);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.telegram-hero h1,
.telegram-shop h2,
.telegram-join-band h2 {
  margin: 0;
  color: var(--telegram-paper);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.telegram-hero h1 {
  max-width: 10ch;
  font-size: 7rem;
  line-height: 0.9;
  overflow-wrap: anywhere;
}

.telegram-hero-copy > p:not(.telegram-kicker) {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--telegram-paper);
  font-size: 1.25rem;
  overflow-wrap: anywhere;
}

.telegram-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.telegram-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border: 2px solid var(--telegram-yellow);
  border-radius: 4px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.telegram-button-primary {
  background: var(--telegram-yellow);
  color: #111;
}

.telegram-button-secondary {
  background: rgba(8, 7, 6, 0.76);
  color: var(--telegram-yellow);
}

.telegram-button:hover {
  background: var(--telegram-paper);
  border-color: var(--telegram-paper);
  color: #111;
}

.telegram-shop {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 84px) clamp(18px, 5vw, 72px);
}

.telegram-shop-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.telegram-shop h2,
.telegram-join-band h2 {
  font-size: 4.6rem;
  line-height: 0.94;
  overflow-wrap: anywhere;
}

.telegram-search {
  display: grid;
  min-width: min(360px, 100%);
  gap: 8px;
  color: var(--telegram-muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.telegram-search input {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  background: var(--telegram-panel);
  border: 1px solid var(--telegram-line);
  border-radius: 4px;
  color: var(--telegram-paper);
  font: inherit;
  text-transform: none;
}

.telegram-search input:focus {
  border-color: var(--telegram-yellow);
  outline: 2px solid transparent;
}

.telegram-status {
  color: var(--telegram-muted);
}

.telegram-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.telegram-product {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--telegram-panel);
  border: 1px solid var(--telegram-line);
  border-radius: 6px;
}

.telegram-product img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #050505;
}

.telegram-product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.telegram-product-type {
  margin: 0 0 8px;
  color: var(--telegram-blue);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.telegram-product h3 {
  margin: 0;
  color: var(--telegram-paper);
  font-size: 1.45rem;
  line-height: 1.08;
}

.telegram-product-description {
  display: -webkit-box;
  margin: 14px 0 20px;
  overflow: hidden;
  color: var(--telegram-muted);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.telegram-product-price {
  margin: auto 0 16px;
  color: var(--telegram-yellow);
  font-size: 1.18rem;
  font-weight: 900;
}

.telegram-product-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.telegram-product-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--telegram-yellow);
  border-radius: 4px;
  color: var(--telegram-yellow);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.telegram-product-actions a:last-child {
  background: var(--telegram-yellow);
  color: #111;
}

.telegram-product-actions a:hover {
  background: var(--telegram-paper);
  border-color: var(--telegram-paper);
  color: #111;
}

.telegram-empty {
  grid-column: 1 / -1;
  padding: 30px;
  border: 1px solid var(--telegram-line);
  color: var(--telegram-muted);
  text-align: center;
}

.telegram-join-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(44px, 7vw, 84px) clamp(18px, 7vw, 96px);
  background: #15110a;
  border-block: 1px solid rgba(255, 247, 0, 0.3);
}

.telegram-join-band h2 {
  max-width: 14ch;
}

.telegram-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 130px;
  padding: 30px clamp(18px, 5vw, 72px);
}

.telegram-footer img {
  display: block;
  width: 180px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.telegram-footer p {
  margin: 0;
  color: var(--telegram-muted);
  text-align: right;
}

@media (max-width: 900px) {
  .telegram-hero h1 {
    font-size: 5.4rem;
  }

  .telegram-shop h2,
  .telegram-join-band h2 {
    font-size: 3.6rem;
  }

  .telegram-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .telegram-shop-heading,
  .telegram-join-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .telegram-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .telegram-brand img {
    width: 56px;
    height: 56px;
  }

  .telegram-header nav {
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .telegram-hero {
    min-height: 620px;
  }

  .telegram-hero h1 {
    font-size: 3.35rem;
  }

  .telegram-hero-copy > p:not(.telegram-kicker) {
    max-width: 17rem;
    font-size: 1.05rem;
  }

  .telegram-shop h2 {
    max-width: 12ch;
    font-size: 2.35rem;
  }

  .telegram-join-band h2 {
    font-size: 2.35rem;
  }

  .telegram-hero-actions,
  .telegram-button,
  .telegram-search {
    width: 100%;
  }

  .telegram-products {
    grid-template-columns: minmax(0, 1fr);
  }

  .telegram-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .telegram-footer p {
    text-align: left;
  }
}
