body {
  background: linear-gradient(135deg, #18111c 0%, #111015 100%);
  color: #fff;
  font-family: 'Segoe UI', 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.main-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 60px 0 60px;
  gap: 40px;
}

.main-left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.badge {
  display: inline-block;
  background: #3a153d;
  color: #cc00ff;
  border-radius: 18px;
  padding: 7px 18px;
  font-weight: 600;
  font-size: 1em;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.badge-icon {
  margin-right: 7px;
  background: rgba(183,0,255,0.18);
  color: rgb(183, 0, 255);
}

h1 {
  font-size: 2.7em;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.subtitle {
  color: #cc00ff !important;
  font-size: 1.1em;
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.features {
  display: flex;
  gap: 28px;
  margin-bottom: 18px;
}

.feature-card, .feature-card.instant-delivery {
  background: #181b1b;
  border-radius: 14px;
  border: none;
  box-shadow: 0 2px 12px #cc00ff;
  color: #fff;
  animation: moveDelivery 1.5s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 280px;
  padding: 28px 18px 22px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  box-shadow: 0 2px 12px #cc00ff;
}

.feature-icon {
  font-size: 2.1em;
  color: #cc00ff;
  margin-top: 2px;
}

.feature-title {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 3px;
}

.feature-desc {
  font-size: 0.98em;
  color: #b0b0b0;
}

.browse-btn {
  background: linear-gradient(90deg, #cc00ff 0%, #cc00ff 100%);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  padding: 10px 32px;
  font-size: 1.1em;
  cursor: pointer;
  margin: 18px 0 0 0;
  box-shadow: 0 0 24px #cc00ff, 0 0 48px #cc00ff44;
  transition: background 0.2s;
  display: inline-block;
}
.browse-btn:hover {
  background: linear-gradient(90deg, #a000cc 0%, #cc00ff 100%);
  box-shadow: 0 0 32px #cc00ff, 0 0 64px #cc00ff55;
}

.reviews {
  margin-top: 18px;
  font-size: 1.1em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  color: #ffe066;
  font-size: 1.2em;
}

.review-score {
  color: #fff;
  font-size: 1em;
}

.main-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.promo-video {
  border-radius: 16px;
  border: 2px solid #cc00ff;
  box-shadow: 0 0 18px #cc00ff;
  width: 520px;
  height: 315px;
}

.feature-tags-bar {
  display: flex;
  gap: 18px;
  background: #23232b;
  padding: 22px 60px;
  margin-top: 40px;
  border-radius: 0;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
}

.feature-tags-bar-inner {
  display: flex;
  gap: 18px;
  animation: marqueeTags 18s linear infinite;
}

@keyframes marqueeTags {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.feature-tag {
  min-width: 220px;
  animation: none;
  background: #18111c;
  border-radius: 18px;
  padding: 7px 18px;
  font-weight: 600;
  font-size: 1em;
  letter-spacing: 1px;
  animation: moveTag 1.7s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
  color: #fff;
  box-shadow: 0 2px 8px rgba(183,0,255,0.18);
  border: 1.5px solid rgba(183,0,255,0.18);
}

@keyframes moveTag {
  0% { transform: translateY(0); box-shadow: 0 2px 8px rgba(183,0,255,0.12); }
  100% { transform: translateY(-7px) scale(1.04); box-shadow: 0 6px 16px rgba(183,0,255,0.22); }
}

.feature-card.instant-delivery {
  animation: moveDelivery 1.5s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes moveDelivery {
  0% { transform: translateY(0); box-shadow: 0 2px 12px #cc00ff; }
  100% { transform: translateY(-12px) scale(1.04); box-shadow: 0 8px 24px  #c300ff77; }
}

@keyframes moveFeature {
  0% { transform: translateY(0); box-shadow: 0 2px 12px rgba(183,0,255,0.18); }
  100% { transform: translateY(-10px) scale(1.03); box-shadow: 0 8px 24px rgba(183,0,255,0.33); }
}

.logo-accent {
  color: rgb(183, 0, 255);
}

.header-banner {
  background: linear-gradient(90deg, rgba(183,0,255,0.25) 0%, #232b2b 100%);
  color: #fff;
  padding: 18px 0 12px 50px;
  font-size: 1em;
}

.spoof-btn {
  background: linear-gradient(90deg, rgb(183,0,255) 0%, #3a3a3a 100%);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 20px;
  padding: 7px 22px;
  font-size: 1em;
  cursor: pointer;
  margin-left: 30px;
  transition: background 0.2s;
}
.spoof-btn:hover {
  background: linear-gradient(90deg, #a000cc 0%, #222 100%);
}

.logo-accent-cyan, .super {
  color: rgb(183, 0, 255);
}

.spoof-btn-cyan {
  background: linear-gradient(90deg, #cc00ff 0%, #cc00ff 100%);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 20px;
  padding: 10px 30px;
  font-size: 1.1em;
  cursor: pointer;
  margin-left: 30px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 0 24px #cc00ff, 0 0 48px #cc00ff44;
}
.spoof-btn-cyan:hover {
  background: linear-gradient(90deg, #a000cc 0%, #cc00ff 100%);
  transform: scale(1.07);
  box-shadow: 0 0 32px #cc00ff, 0 0 64px #cc00ff55;
}

.header-banner-cyan {
  background: linear-gradient(90deg, rgba(183,0,255,0.18) 0%, #18111c 100%);
  color: #fff;
  padding: 18px 0 12px 50px;
  font-size: 1em;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 4px 24px rgba(183,0,255,0.10);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px 0 40px;
}

nav {
  display: flex;
  gap: 38px;
  position: relative;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.12em;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, rgb(183,0,255) 0%, #fff 100%);
  transition: width 0.3s cubic-bezier(.4,0,.2,1);
  position: absolute;
  left: 0;
  bottom: -2px;
}
nav a:hover {
  color: rgb(183, 0, 255);
}
nav a:hover::after {
  width: 100%;
}

.dropdown .arrow {
  font-size: 0.8em;
  margin-left: 2px;
  color: rgb(183, 0, 255);
}

.logo {
  font-size: 2.4em;
  font-weight: bold;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  text-shadow: 0 2px 16px rgba(183,0,255,0.25), 0 1px 2px #0008;
}
.super {
  color: rgb(183, 0, 255);
}
.logo-boosts {
  color: #fff;
  margin-left: 2px;
}

.featured-products-section {
  margin: 60px 0 0 0;
  padding: 0 0 40px 0;
}

.featured-products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1800px;
  margin: 0 auto 30px auto;
  padding: 0 40px;
}

.featured-products-header h2 {
  color: #fff;
  font-size: 2.3em;
  font-weight: bold;
  margin: 0;
}

.view-all-btn {
  color: #cc00ff;
  border: 2px solid #cc00ff;
  border-radius: 7px;
  padding: 10px 24px;
  font-weight: bold;
  font-size: 1.1em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  background: transparent;
  display: inline-block;
}
.view-all-btn:hover {
  background: #cc00ff;
  color: #181b1b;
}

.featured-products-list {
  display: flex;
  gap: 32px;
  justify-content: center;
  max-width: 1800px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.product-card {
  background: #242323c0;
  border-radius: 14px;
  box-shadow: none;
  border: 2px solid #cc00ff;
  color: #fff;
  width: 400px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  position: relative;
}
.product-card:hover {
  box-shadow: 0 6px 32px #cc00ff, 0 2px 12px #cc00ff;
  transform: translateY(-6px) scale(1.02);
}
.product-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #222;
}
.product-content {
  padding: 22px 24px 0 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-content h3 {
  margin: 0 0 4px 0;
  font-size: 1.35em;
  font-weight: bold;
}
.product-subtitle {
  color: #cc00ff;
  font-weight: bold;
  font-size: 1.08em;
  margin-bottom: 8px;
}
.product-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}
.badge-green {
  background: #cc00ff;
  color: #fff;
  border-radius: 12px;
  padding: 4px 14px;
  font-size: 0.98em;
  font-weight: 600;
}
.badge-blue {
  background: #232b2b;
  color: #cc00ff;
  border-radius: 12px;
  padding: 4px 14px;
  font-size: 0.98em;
  font-weight: 600;
}
.product-desc {
  color: #b0b0b0;
  font-size: 1em;
  margin-bottom: 8px;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.product-rating .stars {
  color: #ffe066;
  font-size: 1.1em;
}
.product-rating .review-score {
  color: #fff;
  font-size: 1em;
}
.product-rating .review-count {
  color: #b0b0b0;
  font-size: 0.98em;
}
.product-price {
  color: #fff;
  font-size: 1.08em;
  margin-bottom: 8px;
}
.product-price .price {
  color: #cc00ff;
  font-weight: bold;
  font-size: 1.15em;
  margin-left: 4px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #191919;
  padding: 16px 24px;
  border-top: 1px solid #cc00ff;
}
.product-type {
  color: #b0b0b0;
  font-size: 1em;
}
.product-buy-btn {
  background: #cc00ff;
  color: #181b1b;
  font-weight: bold;
  border: none;
  border-radius: 7px;
  padding: 8px 24px;
  font-size: 1.08em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.product-buy-btn:hover {
  background: #cc00ff;
  color: #fff;
}
.product-tuned-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #00c83c;
  color: #fff;
  font-weight: bold;
  font-size: 0.92em;
  border-radius: 7px;
  padding: 2px 10px 2px 7px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
  box-shadow: 0 2px 8px #00c83c55;
  letter-spacing: 1px;
}
.product-tuned-badge .tuned-check {
  font-size: 1em;
  margin-right: 3px;
  display: flex;
  align-items: center;
}

body.mobile-view .featured-products-list {
  flex-direction: column;
  align-items: center;
}
body.mobile-view .product-card {
  width: 98vw;
  max-width: 420px;
  margin-bottom: 32px;
}
body.mobile-view .product-buy-btn {
  font-size: 1.25em;
  padding: 14px 0;
  width: 100%;
}
body.mobile-view .modal-box {
  min-width: 220px;
  font-size: 1.1em;
}
body.mobile-view .product-content h3,
body.mobile-view .product-subtitle {
  font-size: 1.25em;
}

@media (max-width: 700px) {
  .main-section,
  .featured-products-section {
    padding: 10px 0 !important;
  }
  .main-section {
    flex-direction: column;
    gap: 0;
    padding: 10px 0 !important;
  }
  .main-left, .main-right {
    width: 100%;
    max-width: 100vw;
    padding: 0 8px;
  }
  .promo-video {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 200px !important;
  }
  .features {
    flex-direction: column;
    gap: 12px;
  }
  .feature-card {
    min-width: unset;
    width: 100%;
    font-size: 1em;
    padding: 18px 10px;
  }
  .browse-btn {
    width: 100%;
    font-size: 1.1em;
    padding: 16px 0;
  }
  .feature-tags-bar {
    padding: 10px 0;
    gap: 8px;
    font-size: 0.98em;
    overflow-x: auto;
  }
  .feature-tag {
    min-width: 150px;
    font-size: 1em;
    padding: 7px 10px;
  }
  .featured-products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0 8px;
  }
  .featured-products-list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 0 40px 0;
  }
  .product-card {
    width: 98vw;
    max-width: 420px;
    margin-bottom: 32px;
    font-size: 1em;
  }
  .product-buy-btn {
    width: 100%;
    font-size: 1.2em;
    padding: 18px 0;
  }
  .modal-box {
    min-width: 220px;
    font-size: 1.1em;
  }
  .product-content h3,
  .product-subtitle {
    font-size: 1.2em;
  }
  nav {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 1em;
  }
  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 8px 0 8px;
  }
  .logo {
    font-size: 2em;
  }
}

.footer {
  background: #18111c;
  color: #fff;
  margin-top: 60px;
  padding: 0;
  font-family: 'Segoe UI', 'Montserrat', Arial, sans-serif;
}
.footer-top {
  background: linear-gradient(120deg, #2a153d 0%, #18111c 100%);
  text-align: center;
  padding: 54px 10px 38px 10px;
}
.footer-accent {
  color: #cc00ff !important;
}
.footer-top h2 {
  font-size: 2.1em;
  font-weight: bold;
  margin-bottom: 10px;
}
.footer-top p {
  color: #ccc;
  margin-bottom: 22px;
}
.footer-support-btn {
  background: #cc00ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 38px;
  font-size: 1.15em;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 16px #cc00ff55;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.footer-support-btn:hover {
  background: #a000cc;
  color: #fff;
}
.footer-divider {
  border-top: 3px solid #cc00ff;
  margin: 0;
}
.footer-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 120px;
  padding: 48px 10px 24px 10px;
  background: #18111c;
  flex-wrap: wrap;
}
.footer-logo {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 18px;
}
.footer-section {
  min-width: 180px;
}
.footer-section-title {
  color: #cc00ff;
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 12px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #cc00ff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px 18px 40px;
  background: #18111c;
  border-top: 1.5px solid #cc00ff;
  font-size: 1em;
}
.footer-designed-by {
  background: transparent;
  border: none;
  font-weight: 600;
  font-size: 1em;
  margin-left: 10px;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 38px 10px 18px 10px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 18px 10px 18px 10px;
    font-size: 0.98em;
  }
}

.footer-minimal {
  background: #18111c;
  color: #fff;
  padding: 0;
  font-family: 'Segoe UI', 'Montserrat', Arial, sans-serif;
}
.footer-minimal-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 120px;
  padding: 48px 10px 24px 10px;
  background: #18111c;
  flex-wrap: wrap;
}
.footer-minimal-logo {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 18px;
}
.footer-accent {
  color: #cc00ff !important;
}
.footer-minimal-section {
  min-width: 180px;
}
.footer-minimal-title {
  color: #cc00ff;
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 12px;
}
.footer-minimal-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.2s;
}
.footer-minimal-links a:hover {
  color: #cc00ff;
}
.footer-minimal-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px 18px 40px;
  background: #18111c;
  border-top: 1.5px solid #cc00ff;
  font-size: 1em;
}
.footer-designed-by {
  color: #cc00ff;
  font-weight: 600;
  font-size: 1em;
  margin-left: 10px;
}
@media (max-width: 900px) {
  .footer-minimal-main {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 38px 10px 18px 10px;
  }
  .footer-minimal-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 18px 10px 18px 10px;
    font-size: 0.98em;
  }
}

.support-cta {
  background: linear-gradient(120deg, #2a153d 0%, #18111c 100%);
  text-align: center;
  padding: 54px 10px 38px 10px;
}
.support-cta h2 {
  font-size: 2.1em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}
.support-cta p {
  color: #ccc;
  margin-bottom: 22px;
}
.support-cta-btn {
  background: #cc00ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 38px;
  font-size: 1.15em;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 16px #cc00ff55;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.support-cta-btn:hover {
  background: #a000cc;
  color: #fff;
}
@media (max-width: 700px) {
  .support-cta {
    padding: 32px 5px 24px 5px;
  }
  .support-cta h2 {
    font-size: 1.3em;
  }
  .support-cta-btn {
    font-size: 1em;
    padding: 10px 18px;
  }
}
