body {
  background: #1a0851;
  color: #fff;
  font-family: 'Montserrat', 'inter', sans-serif;
}

.superboss-header {
  width: 100%;
  background: #1a0851;
  box-shadow: 0 2px 12px 0 rgba(17, 8, 51, 0.18);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 32px;
  min-height: 62px;
}

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 18px;
  border-radius: 50%;
  padding: 8px;
  transition: background 0.2s;
}

.menu-btn:hover {
  background: rgba(255,255,255,0.08);
}

.logo img {
  height: 44px;
}

.search-form {
  display: flex;
  align-items: center;
  background: #2c1c6e;
  border-radius: 26px;
  padding: 0 18px;
  width: 410px;
  height: 42px;
  margin: 0 30px;
  border: 1px solid #4c3595;
}

.search-form svg {
  margin-right: 8px;
}

.search-form input {
  background: transparent;
  border: none;
  color: #fff;
  width: 100%;
  outline: none;
  font-size: 16px;
  padding: 0 8px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.login-btn a{
  display: flex;
  align-items: center;
  background: #26115e;
  color: #fff;
  border: none;
  padding: 0 16px 0 8px;
  height: 38px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 16px;
  gap: 6px;
  transition: background 0.2s;
  cursor: pointer;
}

.login-btn a:hover {
  background: #34267e;
}

.header-actions .login-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #26115e;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  height: 38px;
  padding: 0 16px 0 8px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.18s, color 0.18s;
  border: none;
  outline: none;
  box-sizing: border-box;
  cursor: pointer;
}

.header-actions .login-btn:hover,
.header-actions .login-btn:focus {
  background: #34267e;
  color: #ffd800;
  text-decoration: none;
}

.header-actions .register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff2464;
  color: #fff;
  font-weight: 700;
  border-radius: 20px;
  height: 38px;
  padding: 0 20px;
  font-size: 16px;
  margin-left: 10px;
  text-decoration: none;
  border: none;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
  outline: none;
}

.header-actions .register-btn:hover,
.header-actions .register-btn:focus {
  background: #f7104e;
  color: #fff;
  text-decoration: none;
}

.register-btn{
  background: #ff2464;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 20px;
  height: 38px;
  padding: 0 20px;
  margin-left: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.register-btn:hover {
  background: #f7104e;
}

.lang-btn {
  width: 36px;
  height: 36px;
  background: #251461;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  cursor: pointer;
  position: relative;
}

.lang-ru {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff 33%, #005bbb 33% 66%, #ffd700 66%);
  border: 2px solid #fff;
}

.header-nav {
  display: flex;
  align-items: center;
  background: #341d80;
  min-height: 40px;
  padding: 0 34px;
  gap: 18px;
  font-size: 16px;
  font-weight: 600;
  justify-content: space-evenly;
}

.header-nav a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 7px;
  transition: background 0.17s, color 0.17s;
  position: relative;
}

.header-nav a:hover {
  background: #472cb1;
  color: #ffd800;
}

.new-label {
  color: #12ff62;
  font-weight: bold;
  font-size: 12px;
  margin-right: 3px;
}

.superboss-sidebar {
  position: fixed;
  top: 0;
  left: -320px;
  width: 290px;
  height: 100vh;
  background: linear-gradient(180deg, #23105a 70%, #25115a 100%);
  z-index: 9999;
  box-shadow: 2px 0 24px 0 rgba(10, 0, 35, 0.14);
  display: flex;
  flex-direction: column;
  padding: 28px 0 0 0;
  transition: left 0.3s cubic-bezier(.52,.01,.38,1.07);
  overflow-y: auto;
}
.superboss-sidebar.active {
  left: 0;
}

.sidebar-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 7px;
  border-radius: 50%;
  z-index: 10;
  transition: background 0.15s;
}
.sidebar-close:hover {
  background: rgba(255,255,255,0.08);
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(10,0,35,0.28);
  transition: opacity 0.2s;
}
.sidebar-overlay.active {
  display: block;
  opacity: 1;
}

.superboss-sidebar nav {
    margin-top: 54px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
  padding: 0 22px;
}

.superboss-sidebar nav a {
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  gap: 14px;
  border-radius: 9px;
  padding: 13px 16px;
  transition: background 0.14s, color 0.18s;
  position: relative;
}
.superboss-sidebar nav a.active,
.superboss-sidebar nav a:hover {
  background: #7d62f6;
  color: #fff;
}

.superboss-sidebar .icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-wheel {
  padding: 0 22px;
  margin-bottom: 28px;
}
.wheel-block {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #2c1c6e;
  border-radius: 14px;
  padding: 11px 16px;
  box-shadow: 0 4px 18px 0 rgba(98, 37, 255, 0.13);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 4px;
  position: relative;
  transition: background 0.18s;
}
.wheel-block:hover {
  background: #4c3595;
}
.wheel-block img {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 0 8px #7d62f6);
}

.sidebar-brand {
  margin: 32px 0 20px 0;
  padding-left: 24px;
  color: rgba(255,255,255,0.08);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.superboss-footer {
  background: linear-gradient(180deg, #23105a 90%, #1a0851 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 44px 0 24px 0;
  box-shadow: 0 -2px 22px 0 rgba(17, 8, 51, 0.20);
  border-radius: 26px 26px 0 0;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px 22px 48px;
  border-bottom: 1.5px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.footer-brand img {
  height: 52px;
  border-radius: 18px;
  box-shadow: 0 2px 10px #7d62f6;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  opacity: 0.83;
  font-weight: 600;
  border-radius: 7px;
  padding: 7px 16px;
  transition: background 0.18s, color 0.17s, opacity 0.13s;
  background: rgba(255,255,255,0.03);
}

.footer-links a:hover,
.footer-links a:focus {
  background: #7d62f6;
  color: #fff;
  opacity: 1;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a svg {
  display: block;
  transition: transform 0.18s;
  border-radius: 50%;
  box-shadow: 0 2px 14px #6d3dff33;
}

.footer-socials a:hover svg,
.footer-socials a:focus svg {
  transform: scale(1.18) rotate(-5deg);
}

.footer-middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px 18px 48px;
  border-bottom: 1.5px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 14px 28px;
}

.footer-payments {
  display: flex;
  gap: 18px;
}

.footer-payments img {
  height: 32px;
  opacity: 0.9;
  filter: drop-shadow(0 1px 5px #7d62f660);
  border-radius: 7px;
  background: rgba(255,255,255,0.04);
  padding: 3px 7px;
}

.footer-info {
  display: flex;
  gap: 22px;
  font-size: 15px;
  opacity: 0.7;
  align-items: center;
}

.footer-info span:first-child {
  background: #ff2464;
  color: #fff;
  border-radius: 6px;
  padding: 2px 10px;
  font-weight: 800;
  letter-spacing: 1.1px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 16px 0 0 0;
  font-size: 15px;
  opacity: 0.77;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: #ffd800;
  text-decoration: none;
  transition: text-decoration 0.13s, color 0.13s;
  font-weight: 600;
}
.footer-bottom a:hover,
.footer-bottom a:focus {
  color: #fff;
  text-decoration: underline;
}

.superboss-marquee {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #25105a 60%, #2c1c6e 100%);
  border-bottom: 2px solid #7d62f6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  color: #fff;
  padding: 12px 0;
  position: relative;
  box-shadow: 0 4px 22px 0 rgba(62, 36, 120, 0.10);
  letter-spacing: 0.03em;
  z-index: 2;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: superboss-marquee-scroll 18s linear infinite;
  will-change: transform;
  font-weight: 500;
}


@keyframes superboss-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-track::after {
  content: attr(data-text);
  margin-left: 60px;
}

.super-collections {
  background: #1a0851;
  padding: 48px 0 38px 0;
}

.collections-title {
  text-align: center;
  margin-bottom: 34px;
}

.collections-title span {
  display: inline-block;
  background: #ff2464;
  color: #fff;
  font-weight: 800;
  font-size: 2.1rem;
  padding: 10px 42px;
  border-radius: 7px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 18px #f22d4f22;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 22px;
}

.collection-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #18171b;
  box-shadow: 0 0 18px 0 rgba(125,98,246,0.11);
  border: 2px solid #7d62f6;
  transition: transform 0.18s, box-shadow 0.18s, border 0.13s;
  cursor: pointer;
  min-height: 188px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none;
}

.collection-card:hover {
  transform: translateY(-7px) scale(1.04);
  box-shadow: 0 4px 24px #ff246450, 0 0 12px #7d62f6cc;
  border-color: #ff2464;
  text-decoration: none;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  transition: filter 0.17s;
  filter: brightness(0.92) blur(0.1px);
}

.collection-label {
  position: relative;
  z-index: 2;
  display: block;
  color: #fff;
  font-size: 1.22rem;
  font-weight: 700;
  padding: 0 0 20px 0;
  text-shadow: 0 2px 10px #18171bcc, 0 0 6px #000;
  letter-spacing: 0.04em;
  text-align: center;
  width: 100%;
  pointer-events: none;
}

main, .content {
  font-family: 'Montserrat', 'inter', sans-serif;
  font-size: 18px;
  color: #fff;
  background: #1a0851;
  padding: 0 0 44px 0;
  line-height: 1.7;
}

.content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 18px 44px 18px;
}

.content h1, h2 {
  font-size: 2rem;
  color: #ff2464;
  margin: 38px 0 20px 0;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.22;
}

.content h3 {
  font-size: 1.2rem;
  color: #ffd800;
  margin: 32px 0 16px 0;
  font-weight: 700;
}

.content p {
  margin-bottom: 18px;
}

.content ul {
  margin: 0 0 18px 24px;
  padding: 0;
}

.content li {
  margin-bottom: 8px;
}

.content b, strong {
  color: #ffd800;
  font-weight: 700;
}

.content i, em {
  color: #7d62f6;
}

.content a {
  color: #36c9ff;
  text-decoration: underline;
  transition: color 0.17s;
}

.content a:hover, a:focus {
  color: #ff2464;
}

.content img {
  display: block;
  margin: 24px auto 22px auto;
  border-radius: 18px;
  box-shadow: 0 2px 20px 0 rgba(125,98,246,0.09);
  background: #18171b;
  max-width: 100%;
  height: auto;
  border: 3px solid #7d62f6;
  transition: box-shadow 0.15s;
}

/* Стили для вертикальных изображений */
.content img[style*="aspect-ratio: 9/16"],
.content img[style*="aspect-ratio: 2/3"] {
  width: 260px;
  max-height: 440px;
  object-fit: cover;
}

/* Стили для горизонтальных изображений */
.content img[style*="aspect-ratio: 16/9"],
.content img[style*="aspect-ratio: 3/1"] {
  width: 95%;
  max-width: 670px;
  height: auto;
}

@media (max-width: 1100px) {
  .header-top { flex-wrap: wrap; }
  .search-form { display: none;}
  .header-nav { gap: 9px; font-size: 14px; padding: 0 10px; }
  .logo img { height: 58px; }
}

@media (max-width: 1020px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .footer-top, .footer-middle {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 0 18px 18px 18px;
  }
  .footer-bottom { gap: 14px; }
  .footer-brand img { height: 42px; }
  .footer-payments img { height: 25px; }
}

@media (max-width: 850px) {
    .header-nav{
        display: none;
    }
}

@media (max-width: 700px) {
    .superboss-sidebar{
        left: -330px;
    }
    .menu-btn:hover {
  background: #1a0851;
}
      .superboss-sidebar {
    width: 97vw;
    min-width: 0;
    max-width: 330px;
    padding-top: 12px;
  }
  .sidebar-brand {
    font-size: 30px;
    padding-left: 14px;
  }
  .header-top {
    flex-direction: row;
    align-items: stretch;
    padding: 10px 8px;
    gap: 10px;
  }
  .search-form { margin: 0 0 8px 0; width: 100%; }
  .header-nav { flex-wrap: wrap; padding: 0 4px; }
}

@media (max-width: 600px) {
      content {
    padding: 16px 4vw 38px 4vw;
    font-size: 15px;
  }
  h2 { font-size: 1.18rem; margin: 26px 0 15px 0; }
  img { border-radius: 11px; }
  .collections-grid { grid-template-columns: 1fr; }
  .super-collections { padding: 34px 0 22px 0; }
  .collection-card { min-height: 140px; }
  .collections-title span { font-size: 1.3rem; padding: 8px 18px; }
}