* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #f2f2f2;
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 24px 16px 40px;
}

.container {
  width: 100%;
  max-width: 448px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero */
.hero-banner {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2e2e2e;
  margin-top: 24px;
  margin-bottom: 16px;
}
.hero-banner img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Section Label */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 24px 0;
}
.section-label .line {
  flex: 1;
  height: 1px;
  background: #ff008c;
}
.section-label span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #999;
  font-weight: 500;
  white-space: nowrap;
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  margin-bottom: 24px;
}
.product-card {
  background: #1c1c1c;
  border-radius: 12px;
  border: 1px solid #2e2e2e;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s;
}
.product-card:hover {
  transform: scale(1.05);
}
.product-card img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}
.product-name {
  font-size: 12px;
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
}
.btn-buy {
  margin-top: auto;
  font-size: 12px;
  background: #ff008c;
  color: #fff;
  padding: 6px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-buy:hover {
  opacity: 0.9;
}

/* Telegram */
.btn-telegram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 18px;
  background: #0088cc;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-telegram:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0, 136, 204, 0.5);
}

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background: #2e2e2e;
  margin: 32px 0;
}

/* Social buttons */
.socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  background: #ff008c;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-social:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 0, 140, 0.5);
}

/* Footer */
.footer {
  color: #999;
  font-size: 12px;
  margin-top: 40px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.5s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
