#fw-section-custom-html-a0409fd6-1475-4cec-87ba-4d230f05c907 {

/* Ensure the font matches the clean, modern look of the theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

.shop-hero-banner {
  /* Soft pastel gradient matching the background in image.png */
  width: 100%;
  min-height: 450px; /* Makes it a "big image" banner */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  padding: 10px; /* Reduced padding */
  box-sizing: border-box;
}

.promo-section-compact {
  font-family: 'Inter', sans-serif;
  max-width: 900px;
  margin: 15px auto; /* Reduced margin to bring it closer to other elements */
  padding: 0 10px; /* Reduced side padding */
}

.section-title-small {
  display: none; /* Hidden to match image_2.png */
}

/* Force a single row with 3 equal columns */
.coupons-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px; /* Greatly reduced gap to fit snugly on one line */
}

/* The compact "Real Coupon" Card Style */
.coupon-card-mini {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px dashed rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 12px 8px; /* Tighter internal padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 8px; /* Tighter gap between text and button */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease;
}

.coupon-card-mini:hover {
  transform: translateY(-2px);
}

.coupon-info-mini {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.coupon-highlight-mini {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111;
  margin: 0;
  letter-spacing: 0.5px;
}

.coupon-title-mini {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.coupon-desc-mini {
  font-size: 0.75rem;
  color: #555;
  margin: 0;
  line-height: 1.3;
}

/* Scaled down Buttons and Badges */
.coupon-btn-mini {
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  width: 100%;
  max-width: 120px;
}

.coupon-btn-mini:hover {
  background-color: #333;
}

.coupon-btn-mini:active {
  transform: scale(0.95);
}

.coupon-badge-mini {
  background-color: rgba(0, 0, 0, 0.06);
  color: #444;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 20px;
  width: 100%;
  max-width: 120px;
  box-sizing: border-box;
}

/* Optional: Allows horizontal scrolling on extremely small screens to prevent overlap */
@media (max-width: 600px) {
  .coupons-row {
    overflow-x: auto;
    padding-bottom: 5px;
    grid-template-columns: repeat(3, minmax(110px, 1fr)); /* Scaled down minimum width */
  }
}

.banner-glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 30px 20px; /* Reduced internal padding */
  text-align: center;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.banner-icon {
  font-size: 48px;
  margin-bottom: 12px; /* Tighter margin */
  color: #111;
}

.banner-title {
  font-size: 2rem; /* Slightly scaled down */
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.banner-subtitle {
  font-size: 1.05rem;
  color: #4a4a4a;
  margin: 0 0 20px 0; /* Tighter margin */
  line-height: 1.4;
}

.banner-btn {
  background-color: #111;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 10px;
  display: inline-block;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.banner-btn:hover {
  background-color: #333;
  transform: translateY(-2px);
}

/* Make it responsive for mobile devices */
@media (max-width: 600px) {
  .shop-hero-banner {
    min-height: 350px;
  }
  .banner-title {
    font-size: 1.6rem;
  }
  .banner-glass-card {
    padding: 25px 15px;
  }
}

}






#fw-section-custom-html-311a3313-fb22-407d-8fba-270d19d578cd {

/* =========================================
   Base Layout Variables
   ========================================= */
.fw-kittyy-landing {
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-blur: 20px;
    --glass-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --accent-purple: #c084fc;
    --accent-hover: #d8b4fe;
    --danger-red: #ef4444;

    font-family: 'Poppins', sans-serif;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem; 
    padding: 1rem;
    color: var(--text-primary);
}

.copy-box {
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
}
.copy-box input {
    background: transparent;
    border: none;
    color: white;
    padding: 10px;
    width: 100%;
    font-family: inherit;
}
.copy-box input:focus {
    outline: none;
}
.copy-box button {
    background: var(--accent-purple);
    border: none;
    color: white;
    padding: 0 15px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: background 0.2s;
}
.copy-box button:hover {
    background: var(--accent-hover);
}

.fw-kittyy-wrapper {
    background: linear-gradient(135deg, #111827 0%, #1a1e2e 50%, #581c87 100%);
    width: 100%;
    border-radius: 30px; 
    padding: 2rem;
}

/* Added !important to ensure Fourthwall doesn't override the freeze */
body.no-scroll, html.no-scroll {
    overflow: hidden !important;
}

/* =========================================
   Card Styling
   ========================================= */
.fw-kittyy-landing .cards-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr; 
    gap: 1.5rem; 
}

.fw-kittyy-landing .glass-card {
    text-decoration: none;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.25rem 2rem; 
    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    text-align: left;
    cursor: pointer;
}

.fw-kittyy-landing .glass-card:hover {
    transform: translateY(-4px); 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.16);
}

.fw-kittyy-landing .card-body {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-grow: 1;
}

.fw-kittyy-landing .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 220px; 
    flex-shrink: 0;
}

.fw-kittyy-landing .fa-icon {
    font-size: 1.6rem;
    color: var(--accent-purple);
}

.fw-kittyy-landing .card-title {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    margin: 0;
}

.fw-kittyy-landing .card-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
    flex-grow: 1;
}

.fw-kittyy-landing .warning-badge {
    background-color: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--danger-red);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

/* =========================================
   Custom Additions: Discord, Ads, YouTube
   ========================================= */


.fw-kittyy-landing .ad-banner {
    padding: 0.75rem 1.5rem;
    border: 1px dashed var(--accent-purple);
    background: rgba(192, 132, 252, 0.05);
    text-align: center;
}

.fw-kittyy-landing .ad-banner .card-body {
    justify-content: center;
}

.fw-kittyy-landing .ad-banner:hover {
    background: rgba(192, 132, 252, 0.15);
}

.fw-kittyy-landing .youtube-card {
    padding: 0 !important;
    overflow: hidden;
}

.fw-kittyy-landing .youtube-card iframe {
    display: block;
    width: 100%;
    min-height: 350px;
    border-radius: 20px;
}

/* =========================================
   Buttons
   ========================================= */
.fw-kittyy-landing .action-container {
    min-width: 240px;
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

.fw-kittyy-landing .app-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: auto; 
    padding: 10px 22px; 
    background-color: var(--text-primary);
    color: #111;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: background-color 0.2s ease, transform 0.1s ease, color 0.2s ease;
    box-sizing: border-box;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.fw-kittyy-landing .app-btn:hover {
    background-color: var(--accent-hover);
}

.fw-kittyy-landing .app-btn:active {
    transform: scale(0.97);
}

.fw-kittyy-landing .btn-group {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: flex-end;
}

.fw-kittyy-landing .app-btn-secondary {
    background-color: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.fw-kittyy-landing .app-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--accent-hover);
    border-color: var(--glass-border);
}

/* =========================================
   Popup Modal Styles
   ========================================= */
.fw-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: 'Poppins', sans-serif;
    padding: 1rem;
    box-sizing: border-box;
}

.fw-modal-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

.fw-modal-container {
    background: #111111; 
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2rem;
    width: 100%;
    max-width: 450px;
    max-height: calc(100vh - 40px); 
    overflow-y: auto; 
    -webkit-overflow-scrolling: touch;
    color: #fff;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.fw-modal-overlay.is-active .fw-modal-container {
    transform: translateY(0) scale(1);
}

.fw-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
}

.fw-modal-close:hover {
    color: #fff;
}

.fw-modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fw-modal-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.fw-modal-input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: #fff;
    font-family: inherit;
    font-size: 16px; 
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.fw-modal-input:focus {
    outline: none;
    border-color: var(--accent-purple);
    background: rgba(255, 255, 255, 0.08);
}

.fw-modal-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.fw-success-msg {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
}

.fw-success-msg i {
    font-size: 3rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
}

.fw-success-msg h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
}

.fw-success-msg p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

.bypass-limitations-btn {
    display: block;
    text-align: center;
    margin: 15px auto 0 auto;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    cursor: pointer;
    text-decoration: underline;
    font-family: inherit;
    transition: color 0.2s;
}

.bypass-limitations-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* =========================================
   Mobile Responsive Adjustments
   ========================================= */
@media (max-width: 850px) {
    .fw-kittyy-landing .glass-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
    }
    .fw-kittyy-landing .discord-card {
        padding: 1rem 1.5rem !important; 
    }
    .fw-kittyy-landing .card-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .fw-kittyy-landing .action-container, 
    .fw-kittyy-landing .btn-group,
    .fw-kittyy-landing .app-btn {
        width: 100%;
    }
    .fw-kittyy-landing .action-container {
        justify-content: center;
    }

    .fw-modal-overlay {
        align-items: center; 
        padding: 10px;
    }

    .fw-modal-container {
        padding: 1.5rem;
        max-height: calc(100vh - 40px); 
    }
}

}


#fw-section-product-product-default {
--color-primary: #ffffff;
--color-primary-rgb: 255, 255, 255;
--color-background: #000000;
--color-background-rgb: 0, 0, 0;
--color-on-background: #ffffff;
--color-on-background-rgb: 255, 255, 255;
--color-on-primary: #000000;
--color-on-primary-rgb: 0, 0, 0;
--color-product-image-background: #ffffff;
--color-background-brightness: 0;
background-color: var(--color-background);
color: var(--color-on-background);
--primary-btn-bg: #ffffff;
--primary-btn-text: #000000;
--primary-btn-border-color: #ffffff;
--secondary-btn-bg: transparent;
--secondary-btn-text: #ffffff;
--secondary-btn-border-color: #ffffff;
/* =========================================
   1. MAIN CONTAINER GLASSMORPHISM
   ========================================= */
div[data-component="product-details"], 
[class*="ProductInfo"],
div:has(> h1) {
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 24px !important;
    padding: 2rem !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    color: #ffffff !important;
}

/* =========================================
   2. TYPOGRAPHY & TEXT SECTIONS
   ========================================= */

/* Product Title */
h1 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 0.75rem !important;
}

/* Price Tags */
span[class*="price"], 
div[class*="price"], 
p[class*="price"],
[class*="amount"] {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    color: #c084fc !important;
}

/* Product Description */
div[class*="description"], 
p[class*="description"], 
[class*="rte"] {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.75) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
    padding: 1.5rem 0 !important;
    margin: 1.5rem 0 !important;
}

/* Size/Variant Headings */
label {
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
}

/* =========================================
   3. FORM INPUTS & DROPDOWNS
   ========================================= */

/* Dropdown Choice Menus */
select {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 1rem !important;
    outline: none !important;
    cursor: pointer !important;
    width: 100% !important;
    transition: background 0.2s, border-color 0.2s !important;
}

select:focus {
    border-color: #c084fc !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

select option {
    background: #1e1b29 !important; 
    color: #ffffff !important;
}

/* Quantity Box Counter Layout */
input[type="number"],
[class*="Quantity"] div {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 50px !important;
    padding: 10px 15px !important;
    color: #ffffff !important;
    text-align: center !important;
    font-weight: 600 !important;
}

/* =========================================
   4. INTERACTIVE SWATCHES & SIZE BUTTONS
   ========================================= */

/* Selected Active Swatch State Text Fix */
button[aria-checked="true"],
[class*="Selected"],
[class*="active"] button,
button[class*="selected"],
[class*="VariantButton"][data-selected="true"] {
    color: #111111 !important;
    background-color: #ffffff !important;
}

/* Forces deep nested text spans inside selected swatches to turn black */
button[aria-checked="true"] span,
button[aria-checked="true"] div,
[class*="selected"] span,
[class*="selected"] div,
button[class*="selected"] * {
    color: #111111 !important;
}

/* Unselected Variant Buttons Styling Fallback */
button[aria-checked="false"],
[class*="VariantButton"]:not([data-selected="true"]) {
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
}

/* =========================================
   5. ADD TO CART BUTTON
   ========================================= */
button[type="submit"] {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    padding: 14px 28px !important;
    background-color: #ffffff !important; 
    color: #111111 !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    border-radius: 50px !important;
    border: none !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease, transform 0.1s ease !important;
    margin-top: 1rem !important;
}

button[type="submit"]:hover {
    background-color: #c084fc !important; 
    color: #111111 !important;
}

}
#fw-section-product-recommendations-product-default {
--font-heading-scale: 0.77;
--font-body-scale: 0.79;
}
#fw-section-product-recommendations-product-default {

/* =========================================
   1. FORCE THE LAYOUT TO EXPAND WIDE
   ========================================= */

/* Overrides Fourthwall's narrow mobile column restrictions */
div[data-component*="product"],
section:has(h2),
[class*="Grid"],
div:has(> a[href*="/products/"]) {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: stretch !important; /* Forces cards to be identical height */
    width: 100% !important;
    max-width: 100% !important;
    gap: 12px !important; /* Perfect spacing gap */
}

/* =========================================
   2. RE-DESIGN CARDS TO BE WIDE AND EVEN
   ========================================= */

/* Styles the individual product cards */
a[href*="/products/"] {
    flex: 1 !important; /* Forces both boxes to split the screen 50/50 */
    width: 100% !important;
    min-width: 0 !important; /* Prevents text overflow blowouts */
    
    background: rgba(255, 255, 255, 0.10) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px !important;
    padding: 14px !important;
    
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
    text-decoration: none !important;
    
    /* Strict removal of all motion/scaling */
    transform: none !important;
    transition: none !important;
}

/* Base static hover state */
a[href*="/products/"]:hover {
    transform: none !important;
    background: rgba(255, 255, 255, 0.10) !important;
}

/* =========================================
   3. INTERNAL IMAGE & TYPOGRAPHY FIXES
   ========================================= */

/* Makes the product image scale naturally with the wider cards */
a[href*="/products/"] img {
    width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
    object-fit: cover !important;
    transform: none !important;
    transition: none !important;
}

/* Clean, non-stuffy text handling */
a[href*="/products/"] h3,
a[href*="/products/"] p,
a[href*="/products/"] div,
[class*="productName"] {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
    text-align: center !important;
    margin: 12px 0 4px 0 !important;
    
    display: block !important;
    flex-grow: 1 !important; /* Automatically grows to keep bottom prices completely flush */
}

/* Price alignment locked to the card baseline */
span[class*="price"],
[class*="amount"] {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.75) !important;
    text-align: center !important;
    margin-top: auto !important;
    padding-top: 8px !important;
}

/* =========================================
   4. SECTION HEADER
   ========================================= */
h2, 
[class*="Heading"] {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-align: center !important;
    margin-bottom: 24px !important;
    width: 100% !important;
}

}


#fw-section-password {

/* =========================================
   1. MASTER COMING SOON PAGE OVERRIDES
   ========================================= */
body, 
[class*="ComingSoonPage"],
div[data-component="coming-soon"] {
    background: #0a0a0a !important;
    font-family: 'Poppins', sans-serif !important;
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 20px !important;
    box-sizing: border-box !important;
}

/* =========================================
   2. CENTRAL GLASSMORPHIC CARD
   ========================================= */
[class*="ComingSoonCard"],
div:has(> h1):has(form) {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 28px !important;
    padding: 3.5rem 2.5rem !important;
    width: 100% !important;
    max-width: 540px !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5) !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

/* =========================================
   3. TYPOGRAPHY & BADGES
   ========================================= */

/* Launch Status Badge */
[class*="ComingSoonCard"]::before,
.status-badge {
    content: "⚡ LAUNCHING SOON" !important;
    background: linear-gradient(135deg, #c084fc, #6366f1) !important;
    color: #ffffff !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    padding: 6px 16px !important;
    border-radius: 50px !important;
    display: inline-block !important;
    margin-bottom: 1.5rem !important;
}

/* Main Heading */
h1, 
[class*="MainTitle"] {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.4rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
    margin: 0 0 1rem 0 !important;
}

/* Subtitle Descriptive Text */
p, 
[class*="Subtitle"] {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.65) !important;
    margin-bottom: 2.5rem !important;
}

/* =========================================
   4. EMAIL SIGNUP FORM & INPUTS
   ========================================= */

/* Form Wrapper Layout */
form {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
}

/* Email Input Fields */
input[type="email"],
input[class*="input"] {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 50px !important;
    padding: 16px 24px !important;
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 1rem !important;
    outline: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
}

input[type="email"]:focus {
    border-color: #c084fc !important;
    background: rgba(255, 255, 255, 0.10) !important;
}

/* Submit Notify Button */
button[type="submit"],
[class*="SubmitButton"] {
    background-color: #ffffff !important;
    color: #111111 !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    padding: 16px !important;
    border-radius: 50px !important;
    border: none !important;
    cursor: pointer !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

button[type="submit"]:hover {
    background-color: #c084fc !important;
    color: #111111 !important;
}

/* =========================================
   5. OPTIONAL COUNTDOWN DISPLAY BLOCKS
   ========================================= */
[class*="Countdown"],
[class*="Timer"] {
    display: flex !important;
    justify-content: center !important;
    gap: 1.5rem !important;
    margin-bottom: 2.5rem !important;
}

[class*="Countdown"] div,
[class*="Timer"] span {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
}

/* Mutes secondary countdown labels (days, hours, etc) */
[class*="Countdown"] label,
[class*="Timer"] p {
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: rgba(255, 255, 255, 0.4) !important;
    margin-top: 4px !important;
}

}