.custom-landing {
position: relative;
width: 100%;
min-height: 100vh;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
.cl-bg {
position: absolute;
inset: 0;
z-index: 0;
}
.cl-video {
width: 100%;
height: 100%;
object-fit: cover;
position: absolute;
}
.cl-overlay {
position: absolute;
inset: 0;
background: rgba(0,0,0,0.55);
}
.cl-content {
position: relative;
z-index: 5;
text-align: center;
padding: 20px;
max-width: 90%;
margin: 0 auto;
}
.cl-logo {
height: 320px;
margin-bottom: -20px;
}
.cl-title {
font-size: 3rem;
font-weight: 700;
color: #4c83eb;
margin-bottom: 10px;
text-shadow: 0 0 15px rgb(98, 1, 1);
}
.cl-subtitle {
color: #cccccc;
font-size: 1.2rem;
margin-bottom: 35px;
}
.cl-buttons {
display: flex;
justify-content: center;
gap: 20px;
}
.cl-btn {
padding: 12px 25px;
border-radius: 50px;
border: 1px solid rgba(255,255,255,0.3);
color: white;
text-decoration: none;
background: rgba(255,255,255,0.15);
transition: 0.2s;
font-size: 1rem;
}
.cl-btn:hover {
background: rgba(255,255,255,0.25);
}
.cl-btn-discord {
background: #5865f2;
border-color: #5865f2;
}
.cl-btn-discord:hover {
background: #4752c4;
}
@media (max-width: 768px) {
.cl-logo {
height: 240px;
}
.cl-title {
font-size: 2rem;
line-height: 1.2;
}
.cl-subtitle {
font-size: 1rem;
margin-bottom: 25px;
}
.cl-buttons {
flex-direction: column;
gap: 15px;
width: 100%;
max-width: 260px;
margin: 0 auto;
}
.cl-btn {
width: 100%;
padding: 14px;
text-align: center;
font-size: 1rem;
}
.cl-video {
object-fit: cover;
height: 110vh;
}
.cl-content {
padding-top: 60px;
}
}
@media (max-width: 420px) {
.cl-title {
font-size: 1.6rem;
}
.cl-subtitle {
font-size: 0.9rem;
}
.cl-logo {
height: 200px;
}
.cl-btn {
font-size: 0.9rem;
padding: 12px;
}
}
.mtp-centered-header {
width: 100%;
text-align: center;
padding-top: 60px;
padding-bottom: 30px;
}
.mtp-header-logo {
height: 160px;
object-fit: contain;
margin-bottom: 15px;
}
.mtp-header-title {
font-size: 1.7rem;
font-weight: 700;
color: white;
text-shadow: 0 0 10px black;
margin-bottom: 25px;
}
.mtp-header-buttons {
display: flex;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
margin-bottom: 15px;
}
.mtp-header-home-wrapper {
display: flex;
justify-content: center;
margin-top: 10px;
gap: 15px;
}
.mtp-header-btn {
padding: 10px 22px;
border-radius: 50px;
font-size: 1rem;
color: white;
text-decoration: none;
background: rgba(255,255,255,0.15);
border: 1px solid rgba(255,255,255,0.25);
transition: 0.2s ease;
}
.mtp-header-btn:hover {
background: rgba(255,255,255,0.3);
}
.mtp-header-discord {
background: #5865f2;
border-color: #5865f2;
}
.mtp-header-discord:hover {
background: #4752c4;
}
.mtp-header-home {
width: 120px;
text-align: center;
border-radius: 50px;
}
.mtp-page-content {
width: 100%;
padding-top: 20px;
}
@media (max-width: 768px) {
.mtp-header-logo {
height: 120px;
}
.mtp-header-title {
font-size: 1.4rem;
}
.mtp-header-buttons {
gap: 10px;
}
}
@media (max-width: 420px) {
.mtp-header-logo {
height: 100px;
}
.mtp-header-home {
width: 140px;
}
}
.mtp-page-content .components {
display: flex;
justify-content: center;
padding: 40px 20px;
}
.component-products {
width: 100%;
max-width: 1100px;
background: rgba(20, 20, 20, 0.75);
border-radius: 20px;
padding: 40px;
box-shadow: 0 0 25px rgba(0, 0, 0, 0.35);
backdrop-filter: blur(8px);
}
.component-products h1,
.component-products h2 {
text-align: center !important;
color: white !important;
margin-bottom: 30px;
}
.component-products .row {
justify-content: center;
gap: 25px;
}
.products.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.products.row > * {
  flex: 0 0 auto;
}
.product-card,
.card,
.product {
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 15px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: 0.2s ease;
  backdrop-filter: blur(8px);
  padding: 0 !important; /* IMPORTANT */
  overflow: hidden; /* allows full-bleed images */
}
.product-card .card-body,
.product .card-body,
.card .card-body {
  padding: 20px;
}
.product-card .product-image,
.product .product-image,
.card .product-image {
  width: 100%;
  height: 220px;          /* adjust as needed */
  overflow: hidden;
}
.product-card img,
.product img,
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills borders without gaps */
  display: block;
}
.product-card:hover,
.card:hover,
.product:hover {
background: rgba(255, 255, 255, 0.15) !important;
transform: translateY(-4px);
}
.product-title,
.card-title {
color: white !important;
font-weight: 600;
text-align: center;
}
.product .text-center {
text-align: center !important;
}
@media (max-width: 768px) {
.component-products {
padding: 25px;
}
}
.mtp-page-tint {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.55);
z-index: -1;
pointer-events: none;
}
.mtp-centered-header,
.mtp-page-content {
position: relative;
z-index: 5;
}
.mtp-animate {
opacity: 0;
transform: translateY(40px);
transition: opacity 2s cubic-bezier(0.22, 1, 0.36, 1),
transform 2s cubic-bezier(0.22, 1, 0.36, 1),
filter 2s cubic-bezier(0.22, 1, 0.36, 1);
filter: blur(4px);
}
.mtp-animate.visible {
opacity: 1;
transform: translateY(0);
filter: blur(0px);
}
.mtp-animate.hidden {
opacity: 0;
transform: translateY(40px);
filter: blur(4px);
transition: opacity 1.2s ease, transform 1.2s ease, filter 1.2s ease;
}
.mtp-cart-btn {
position: fixed;
bottom: 25px;
right: 25px;
z-index: 9999;
background: #007bff;
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.35);
transition: 0.2s ease;
cursor: pointer;
text-decoration: none;
}
.mtp-cart-btn:hover {
transform: scale(1.08);
}
.mtp-cart-btn svg {
width: 28px;
height: 28px;
fill: white;
}
.mtp-cart-badge {
position: absolute;
top: -5px;
right: -5px;
background: #ff4444;
width: 22px;
height: 22px;
border-radius: 50%;
color: white;
font-size: 12px;
font-weight: 700;
display: flex;
justify-content: center;
align-items: center;
pointer-events: none;
}
.cart-title {
font-size: 2.4rem;
font-weight: 700;
color: #ffffff;
margin-bottom: 40px;
text-shadow:
0 0 18px rgba(78,179,255,0.35),
0 0 45px rgba(0,0,0,0.9);
}
.mtp-cart-wrapper {
background: linear-gradient(
180deg,
rgba(14, 18, 36, 0.88),
rgba(8, 10, 20, 0.92)
);
border-radius: 22px;
padding: 35px;
backdrop-filter: blur(14px);
border: 1px solid rgba(78,179,255,0.18);
box-shadow:
0 0 0 1px rgba(78,179,255,0.06),
0 30px 70px rgba(0,0,0,0.75);
}
.mtp-cart-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 22px;
border-radius: 18px;
margin-bottom: 18px;
background: rgba(255,255,255,0.035);
border: 1px solid rgba(78,179,255,0.12);
transition:
transform 0.25s ease,
background 0.25s ease,
box-shadow 0.25s ease;
}
.mtp-cart-item:hover {
background: rgba(255,255,255,0.08);
transform: translateY(-4px);
box-shadow:
0 16px 40px rgba(0,0,0,0.7),
0 0 28px rgba(78,179,255,0.2);
}
.mtp-cart-left {
display: flex;
gap: 18px;
align-items: center;
}
.mtp-cart-image {
width: 80px;
height: 80px;
border-radius: 14px;
overflow: hidden;
border: 1px solid rgba(78,179,255,0.25);
box-shadow: 0 0 25px rgba(0,0,0,0.7);
}
.mtp-cart-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.mtp-cart-info {
color: #ffffff;
}
.mtp-cart-name {
font-size: 1.15rem;
font-weight: 600;
}
.mtp-cart-variant {
font-size: 0.85rem;
opacity: 0.65;
}
.mtp-cart-price {
margin-top: 6px;
font-size: 1.05rem;
font-weight: 600;
color: #4EB3FF;
text-shadow: 0 0 12px rgba(78,179,255,0.45);
}
.mtp-cart-addons {
margin-top: 10px;
}
.mtp-addon-tag {
background: rgba(78,179,255,0.15);
padding: 5px 12px;
border-radius: 14px;
margin-right: 6px;
font-size: 0.75rem;
color: #cfe9ff;
border: 1px solid rgba(78,179,255,0.25);
}
.mtp-cart-controls {
display: flex;
align-items: center;
gap: 15px;
}
.mtp-qty-wrapper {
display: flex;
align-items: center;
background: rgba(10,14,30,0.85);
border-radius: 12px;
overflow: hidden;
border: 1px solid rgba(78,179,255,0.3);
}
.mtp-qty-btn {
padding: 6px 14px;
background: rgba(0,0,0,0.55);
border: none;
color: #ffffff;
font-size: 1.15rem;
cursor: pointer;
transition: background 0.2s;
}
.mtp-qty-btn:hover {
background: rgba(78,179,255,0.25);
}
.mtp-qty-input {
width: 55px;
text-align: center;
background: transparent;
border: none;
color: #ffffff;
font-weight: 500;
}
.mtp-remove-btn {
background: rgba(255,80,80,0.15);
border: 1px solid rgba(255,80,80,0.4);
padding: 8px 14px;
color: #ff8a8a;
border-radius: 10px;
transition:
background 0.2s,
box-shadow 0.2s,
transform 0.2s;
}
.mtp-remove-btn:hover {
background: rgba(255,80,80,0.3);
box-shadow: 0 0 18px rgba(255,80,80,0.45);
transform: translateY(-1px);
}
.mtp-cart-summary {
background: linear-gradient(
180deg,
rgba(14,18,36,0.9),
rgba(8,10,20,0.95)
);
padding: 28px;
border-radius: 18px;
margin-top: 35px;
color: #ffffff;
border: 1px solid rgba(78,179,255,0.2);
box-shadow:
0 0 35px rgba(0,0,0,0.65),
inset 0 0 0 1px rgba(78,179,255,0.08);
}
.mtp-checkout-btn {
background: #007bff;
border: none;
color: white;
padding: 12px;
border-radius: 12px;
font-size: 1.1rem;
transition: 0.2s;
}
.mtp-checkout-btn:hover {
filter: brightness(1.15);
}
body.cart-page,
.cart-page,
.mtp-cart-page {
position: relative;
isolation: isolate;
}
body.cart-page::before,
.cart-page::before,
.mtp-cart-page::before {
content: "";
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.55);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
z-index: -1;
pointer-events: none;
}
body.cart-page::after,
.cart-page::after,
.mtp-cart-page::after {
content: "";
position: fixed;
inset: 0;
background: radial-gradient(
circle at center,
rgba(0,0,0,0.15),
rgba(0,0,0,0.75)
);
z-index: -1;
pointer-events: none;
}
.mtp-back-btn {
position: fixed;
bottom: 25px;
left: 25px;
z-index: 9999;
background: rgba(255,255,255,0.15);
border: 1px solid rgba(255,255,255,0.25);
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
backdrop-filter: blur(6px);
box-shadow: 0 5px 15px rgba(0,0,0,0.35);
transition: 0.2s ease;
cursor: pointer;
text-decoration: none;
}
.mtp-back-btn:hover {
transform: scale(1.08);
background: rgba(255,255,255,0.25);
}
.mtp-back-btn svg {
width: 28px;
height: 28px;
fill: white;
}
body.modal-open-active .mtp-cart-btn,
body.modal-open-active .mtp-back-btn {
pointer-events: none !important;
opacity: 0 !important;
transform: scale(0.8);
}
@media (max-width: 991px) {
.cart-summary-column {
order: -1;
}
}
.pp-wrapper {
position: relative;
z-index: 5;
min-height: 100vh;
display: flex;
align-items: center;
}
.pp-wrapper::before {
content: "";
position: absolute;
inset: -120px;
background: radial-gradient(
circle at center,
rgba(0,0,0,0.35),
rgba(0,0,0,0.65)
);
z-index: -1;
pointer-events: none;
}
.pp-card {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 48px;
background: rgba(22, 22, 22, 0.85);
border-radius: 26px;
backdrop-filter: blur(14px);
box-shadow:
0 35px 70px rgba(0,0,0,0.6),
inset 0 0 0 1px rgba(255,255,255,0.06);
}
.pp-media img,
.pp-media .carousel {
width: 100%;
border-radius: 18px;
box-shadow: 0 25px 45px rgba(0,0,0,0.5);
}
.pp-thumbnails {
display: flex;
gap: 12px;
margin-top: 14px;
}
.pp-thumbnails button {
width: 58px;
height: 58px;
padding: 0;
border-radius: 12px;
border: none;
background: transparent;
opacity: 0.6;
transition: opacity 0.2s ease, transform 0.2s ease;
}
.pp-thumbnails button:hover,
.pp-thumbnails button.active {
opacity: 1;
transform: translateY(-2px);
}
.pp-thumbnails img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 12px;
}
.pp-info h1 {
color: white;
font-weight: 700;
margin-bottom: 12px;
}
.pp-info .text-muted {
color: rgba(255,255,255,0.65) !important;
}
.pp-info .badges {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin: 22px 0;
}
.pp-info .badges > div {
padding: 6px 14px;
border-radius: 999px;
background: rgba(255,255,255,0.08);
font-size: 0.8rem;
font-weight: 600;
}
.pp-price {
display: flex;
align-items: center;
gap: 18px;
margin: 26px 0;
font-size: 1.45rem;
font-weight: 700;
color: #4EB3FF;
}
.pp-info form {
margin-top: 12px;
}
.pp-info select,
.pp-info input {
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.14);
border-radius: 10px;
color: white;
}
.pp-info select:focus,
.pp-info input:focus {
background: rgba(255,255,255,0.08);
border-color: #4c83eb;
box-shadow: none;
}
.pp-tabs {
margin-top: 40px;
}
.pp-tab-buttons {
display: flex;
gap: 18px;
padding-bottom: 14px;
border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pp-tab-buttons .btn {
background: transparent;
border: none;
padding: 8px 0;
font-size: 0.85rem;
color: rgba(255,255,255,0.6);
}
.pp-tab-buttons .btn.btn-primary {
color: white;
}
.pp-tab-content {
margin-top: 24px;
}
.pp-tab-content .editor {
padding: 0;
background: transparent;
border: none;
color: rgba(255,255,255,0.9);
line-height: 1.7;
}
.pp-upsells {
margin-top: 70px;
}
.pp-upsells h2 {
color: white;
text-align: center;
margin-bottom: 36px;
}
@media (max-width: 991px) {
.pp-card {
padding: 30px;
}
.pp-wrapper {
align-items: flex-start;
}
.pp-price {
flex-wrap: wrap;
}
.pp-info {
text-align: center;
}
.pp-info .badges {
justify-content: center;
}
.pp-tab-buttons {
overflow-x: auto;
}
}
/* =====================================================
   LEGAL PAGE – FUTURISTIC / DARK (SellAuth Safe)
===================================================== */

.legal-shell {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px 50px;
}

/* Card */
.legal-card {
  background: linear-gradient(
    180deg,
    rgba(14,18,36,0.88),
    rgba(8,10,20,0.94)
  );
  border-radius: 26px;
  padding: 34px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(78,179,255,0.18);
  box-shadow:
    0 0 0 1px rgba(78,179,255,0.06),
    0 35px 70px rgba(0,0,0,0.75);
}

/* Tabs */
.legal-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.legal-tab {
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(78,179,255,0.28);
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.legal-tab:hover {
  background: rgba(78,179,255,0.18);
  box-shadow: 0 0 18px rgba(78,179,255,0.25);
  transform: translateY(-1px);
}

.legal-tab.is-active {
  background: rgba(78,179,255,0.35);
  border-color: rgba(78,179,255,0.7);
  color: #ffffff;
  box-shadow:
    0 0 25px rgba(78,179,255,0.45);
}

/* Content Area */
.legal-content {
  position: relative;
  padding-top: 10px;
}

#legal-loader {
  text-align: center;
  padding: 50px 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

/* Editor Overrides (keep SellAuth formatting intact) */
.legal-content .editor {
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  line-height: 1.75;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.03);
}

/* Headings */
.legal-content .editor h1,
.legal-content .editor h2,
.legal-content .editor h3 {
  color: #ffffff;
  font-weight: 700;
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  text-shadow: 0 0 12px rgba(78,179,255,0.35);
}

.legal-content .editor h1:first-child,
.legal-content .editor h2:first-child,
.legal-content .editor h3:first-child {
  margin-top: 0;
}

/* Paragraphs */
.legal-content .editor p {
  margin-bottom: 1.2em;
  color: rgba(255,255,255,0.88);
}

/* Inline code / numbered rules */
.legal-content .editor code {
  background: transparent;
  border: none;
  padding: 0;
}

.legal-content .editor .e-text-code {
  display: inline-block;
  background: rgba(78,179,255,0.18);
  color: #cfe9ff;
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 0.85rem;
  border: 1px solid rgba(78,179,255,0.35);
}


/* Lists */
.legal-content .editor ul,
.legal-content .editor ol {
  margin: 16px 0 16px 22px;
}

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

/* Links */
.legal-content .editor a {
  color: #4EB3FF;
  text-decoration: none;
  border-bottom: 1px dotted rgba(78,179,255,0.5);
}

.legal-content .editor a:hover {
  color: #79c6ff;
  border-bottom-color: rgba(78,179,255,0.9);
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .legal-card {
    padding: 24px;
  }

  .legal-tab {
    width: 100%;
    text-align: center;
  }

  .legal-content .editor {
    padding: 22px;
  }
}