/* High-converting modern product cards */
.sa-product-card,
.sa-product-card-padded-detail {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 38%),
    #111111;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 16px 36px rgba(0, 0, 0, 0.32);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.sa-product-card::before,
.sa-product-card-padded-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 35, 35, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), transparent 28%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.sa-product-card:hover,
.sa-product-card-padded-detail:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 44, 44, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), transparent 42%),
    #141414;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.075),
    0 24px 54px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 44, 44, 0.16);
}

.sa-product-card:hover::before,
.sa-product-card-padded-detail:hover::before {
  opacity: 1;
}

/* Product image */
.sa-product-card-media {
  margin: 10px 10px 0;
  border-radius: 12px;
  overflow: hidden;
  background: #050505;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 10px 24px rgba(0, 0, 0, 0.28);
}

.sa-product-card-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.sa-product-card:hover .sa-product-card-media img,
.sa-product-card-padded-detail:hover .sa-product-card-media img {
  transform: scale(1.065);
  filter: contrast(1.08) saturate(1.12) brightness(1.04);
}

/* Content */
.sa-product-card .px-2,
.sa-product-card-padded-detail .px-2 {
  padding: 15px 18px 18px !important;
}

/* Product title */
.sa-product-card h2,
.sa-product-card h3,
.sa-product-card .font-semibold,
.sa-product-card-padded-detail h2,
.sa-product-card-padded-detail h3,
.sa-product-card-padded-detail .font-semibold {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 13px;
}

/* Price label */
.sa-product-card p,
.sa-product-card-padded-detail p {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  line-height: 1.2;
  margin-bottom: 4px;
}

/* Price */
.sa-product-card [class*="text-red"],
.sa-product-card-padded-detail [class*="text-red"] {
  color: #ff3030 !important;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

/* Bottom row */
.sa-product-card .flex.items-center.justify-between,
.sa-product-card-padded-detail .flex.items-center.justify-between {
  align-items: flex-end;
  gap: 14px;
  margin-top: 13px !important;
}

/* CTA arrow button */
.sa-product-card a:last-child,
.sa-product-card button:last-child,
.sa-product-card-padded-detail a:last-child,
.sa-product-card-padded-detail button:last-child {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 12px;
  background: rgba(255, 48, 48, 0.1);
  border: 1px solid rgba(255, 48, 48, 0.32);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.sa-product-card:hover a:last-child,
.sa-product-card:hover button:last-child,
.sa-product-card-padded-detail:hover a:last-child,
.sa-product-card-padded-detail:hover button:last-child {
  background: #ff3030;
  border-color: #ff3030;
  transform: translateX(3px);
  box-shadow:
    0 10px 24px rgba(255, 48, 48, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* Make whole clickable product feel interactive */
.sa-product-card:active,
.sa-product-card-padded-detail:active {
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 640px) {
  .sa-product-card,
  .sa-product-card-padded-detail {
    border-radius: 14px;
  }

  .sa-product-card-media {
    margin: 8px 8px 0;
    border-radius: 10px;
  }

  .sa-product-card .px-2,
  .sa-product-card-padded-detail .px-2 {
    padding: 13px 14px 15px !important;
  }

  .sa-product-card h2,
  .sa-product-card h3,
  .sa-product-card .font-semibold,
  .sa-product-card-padded-detail h2,
  .sa-product-card-padded-detail h3,
  .sa-product-card-padded-detail .font-semibold {
    font-size: 16px;
  }

  .sa-product-card [class*="text-red"],
  .sa-product-card-padded-detail [class*="text-red"] {
    font-size: 17px;
  }
}
.levelis-services {
  padding: 70px 20px;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

.services-header {
  text-align: center;
  margin-bottom: 45px;
}

.services-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: .75;
  color: #ff3b3b;
}

.services-header h2 {
  font-size: 38px;
  margin: 15px 0;
}

.services-header h2 span {
  background: linear-gradient(90deg,#ff2b2b,#ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-header p {
  max-width: 650px;
  margin: auto;
  opacity: .75;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

.service-card {
  padding: 35px 30px;
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  transition: .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,59,59,.6);
  box-shadow: 0 10px 35px rgba(255,59,59,.15);
}

.service-icon {
  font-size: 38px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  opacity: .75;
  line-height: 1.6;
}

.services-footer {
  margin-top: 45px;
  text-align: center;
  padding: 25px;
  border-radius: 18px;
  background: rgba(255,59,59,.08);
  border: 1px solid rgba(255,59,59,.15);
}

.services-footer strong {
  font-size: 22px;
  color: #ff3b3b;
}

.services-footer p {
  margin-top: 8px;
  opacity: .75;
}


/* Keep hero content nicely centered after pushing */
section:first-of-type > div {
  transform: translateY(24px);
}

/* Mobile adjustment */
@media (max-width: 768px) {
  section:first-of-type {
    min-height: calc(100vh - 76px);
    padding-top: 90px !important;
    padding-bottom: 95px !important;
  }

  section:first-of-type > div {
    transform: translateY(12px);
  }
}
/* Levelis.lt - Compact Secure Payment Section */

.secure-payment,
.trust-payment,
.payment-methods,
.checkout-trust {
    transform: scale(0.85);
    transform-origin: center;
    margin-top: -10px;
    margin-bottom: -10px;
}

.secure-payment h3,
.trust-payment h3,
.checkout-trust h3 {
    font-size: 16px !important;
    margin-bottom: 8px !important;
}

.secure-payment p,
.trust-payment p,
.checkout-trust p {
    font-size: 13px !important;
    opacity: 0.75;
}

.payment-methods img,
.checkout-trust img {
    max-height: 28px !important;
    width: auto !important;
}

.secure-payment,
.trust-payment {
    padding: 12px 18px !important;
    border-radius: 14px !important;
}

.payment-methods {
    gap: 8px !important;
}

/* Mobile */
@media(max-width:768px){

    .secure-payment,
    .trust-payment,
    .payment-methods,
    .checkout-trust {
        transform: scale(0.78);
    }

    .secure-payment h3,
    .trust-payment h3,
    .checkout-trust h3 {
        font-size: 14px !important;
    }

}
/* Levelis.lt - Move Hero Section Up */

.hero,
.hero-section,
.banner,
.homepage-hero {
    margin-top: -120px !important;
}

@media(max-width:768px){
    .hero,
    .hero-section,
    .banner,
    .homepage-hero {
        margin-top: -65px !important;
    }
}
/* Levelis.lt - Hero spacing adjustment */

main > section:first-child,
main > div:first-child {
    margin-top: -80px !important;
}

@media(max-width:768px){
    main > section:first-child,
    main > div:first-child {
        margin-top: -40px !important;
    }
}
.discord-order-info {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 14px;
  background: rgba(255,59,59,.08);
  border: 1px solid rgba(255,59,59,.15);
  display: flex;
  align-items: center;
  gap: 12px;
}

.discord-order-info span {
  font-size: 28px;
}

.discord-order-info p {
  margin: 0;
  line-height: 1.5;
}

.discord-order-info strong {
  color: #ff3b3b;
}

.service-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  border-radius: 12px;
  background: #ff3b3b;
  color: white !important;
  text-decoration: none;
  font-weight: 700;
  transition: .3s ease;
}

.service-button:hover {
  transform: translateY(-3px);
  opacity: .9;
}

@media(max-width:768px){
  .discord-order-info {
    flex-direction: column;
    text-align: center;
  }
}
/* Levelis.lt - Mobile banner higher position */

@media (max-width: 768px) {

  .hero,
  .hero-section,
  .banner,
  .homepage-banner,
  .section-banner {
    margin-top: -60px !important;
    transform: translateY(-20px);
  }

  .hero img,
  .banner img,
  .homepage-banner img {
    margin-top: -20px !important;
  }

}
@media (max-width: 768px) {
  .sa-hero {
    margin-top: -100px !important;
    position: relative !important;
    top: -40px !important;
  }
}
@media (max-width: 768px) {
  section {
    position: relative !important;
    top: -90px !important;
  }
}