body {
    position: relative; /* KEEP this */
    /*background: linear-gradient(135deg, #00A651 0%, #008C4F 40%, #006D3E 100%);*/
    
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    /* these back to ensure scroll behavior: */
    display: block; /* Ensures standard flow for scrollable content */
    margin: 0 auto; /* Centers content if needed, but flex above was handling this */
    color: #fff;
    padding: 20px;
    min-height: 100vh;         /* KEEP this (or remove it if content is naturally tall) */
}
.nt-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* this keeps things scrollable if content grows */
    width: 100%;
}
.launch-container {
    background: rgba(0, 0, 0, 0.15); /* ← replace ONLY this line */
    
    border-radius: 35px;
    padding: 45px 40px;
    width: 100%;
    max-width: 520px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.22);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(-14px);
    animation: fadeDown 0.8s ease-out forwards;
}
.logo {
    width: 140px;
    height: 140px;
    background: rgba(0, 0, 0, 0.22); /* aero dark */
    border-radius: 24px;
    padding: 8px;
    object-fit: contain;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
    transition:
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}
/* ✨ Soft White Glow on Hover */
.logo:hover,
.logo:focus {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.45);

    box-shadow:
        0 10px 28px rgba(255,255,255,0.28),
        0 0 14px rgba(255,255,255,0.22),
        0 6px 20px rgba(0,0,0,0.25);

    transform: translateY(-2px);
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 18px;
}
.title-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}
.badge-btn {
    background: rgba(0, 0, 0, 0.18);
    text-decoration: none !important;
    color: #fff;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 14px;
    white-space: normal;   /* allow wrapping inside badge */
    text-align: center;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 3px 10px rgba(0,0,0,0.22);
    transition:
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}
/* Product Subtitle */
#product-subtitle{
    margin-top: 10px;
}
/* ✨ Soft Aero Glow Hover */
.badge-btn:hover,
.badge-btn:focus {
    background: rgba(255, 255, 255, 0.20);
    border-color: rgba(255, 255, 255, 0.45);

    box-shadow:
        0 6px 20px rgba(255,255,255,0.35),
        0 0 10px rgba(255,255,255,0.25),
        0 2px 8px rgba(0,0,0,0.20);

    transform: translateY(-1px); /* tiny lift */
}
.title-product {
    font-size: 44px;          /* base size – JS will shrink from here */
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    margin: 0;

    /* IMPORTANT: allow breaks even for long numbers/words */
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Feature List */
.feature-list {
    width: 100%;
    text-align: left;
    margin: 18px 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
}
.feature-item {
    background: rgba(0, 0, 0, 0.14); /* slightly darker for better highlight */
    padding: 8px 14px;
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.20);
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 3px 10px rgba(0,0,0,0.22);
    transition:
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}
/* ✨ Aero White Glow Hover */
.feature-item:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.40);

    box-shadow:
        0 8px 25px rgba(255,255,255,0.35),
        0 0 14px rgba(255,255,255,0.28),
        0 2px 8px rgba(0,0,0,0.20);

    transform: translateY(-2px); /* subtle lift */
}
/* Keep your span rules exactly as they are */
.feature-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    flex: 1;
}
.product-info-box {
    background: rgba(0, 0, 0, 0.14); /* slightly darker for smoother highlight */
    color: #fff;
    font-size: 13px;
    line-height: 1.45;
    padding: 15px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.20);
    margin-top: 5px;
    text-align: left;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    transition:
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}
/* ✨ Soft Aero Glow Hover Animation */
.product-info-box:hover,
.product-info-box:focus {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.45);

    box-shadow:
        0 8px 26px rgba(255,255,255,0.35),
        0 0 14px rgba(255,255,255,0.25),
        0 3px 12px rgba(0,0,0,0.25);

    transform: translateY(-2px); /* elegant lift */
}
.boxed-title-box {
    background: rgba(0, 0, 0, 0.20);
    padding: 8px 18px;  /* a bit more vertical space for 2 lines */
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    width: 100%;
    margin: 22px 0 10px 0;
    display: block;

    /* allow wrapping instead of forcing 1 line */
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.3;
    
    border: 1px solid rgba(255,255,255,0.20);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    transition:
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}
.boxed-title-box:hover,
.boxed-title-box:focus {
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow:
        0 8px 26px rgba(255,255,255,0.35),
        0 0 14px rgba(255,255,255,0.25),
        0 3px 12px rgba(0,0,0,0.25);
    transform: translateY(-2px); /* elegant lift */
}
.social-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0;
}
.social-icon i {
    color: white;
}
.social-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
/* Remove blue underline on all social links */
.social-icon {
    text-decoration: none !important;
}
.social-icon i,
.social-icon img {
    display: block; /* prevents leftover underline baseline */
    text-decoration: none !important;
}
.social-row a {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}
.email-box {
    background: rgba(0, 0, 0, 0.18) !important; /* Aero dark */
    background-clip: padding-box !important;
    -webkit-background-clip: padding-box !important;
    border-radius: 50px 0 0 50px;
    border: 1px solid rgba(255, 255, 255, 0.14); /* matches notify-btn */
    color: #fff;
    padding-left: 20px;
    height: 48px;
    font-size: 13px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.28); /* match button shadow */
    transition:
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        color .25s ease;
}
/* Placeholder */
.email-box::placeholder { 
    color: rgba(255,255,255,0.65);
}
/* Focus – white glass illumination like your button hover */
.email-box:focus {
    background: rgba(255, 255, 255, 0.22) !important;
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow:
        0 6px 22px rgba(255, 255, 255, 0.45),
        0 0 12px rgba(255, 255, 255, 0.35);
    color: #fff;
    outline: none !important;
}
/* Autofill Fix – prevent Chrome from painting yellow or white */
.email-box:-webkit-autofill,
.email-box:-webkit-autofill:hover,
.email-box:-webkit-autofill:focus {
    background: rgba(0, 0, 0, 0.18) !important;
    -webkit-box-shadow: 0 0 0 1000px rgba(0,0,0,0.18) inset !important;
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
}
.notify-btn {
    background: rgba(0, 0, 0, 0.18); /* Aero dark glass */
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-weight: 600;
    padding: 0 20px;
    font-size: 13px;
    border-radius: 0 50px 50px 0;
    height: 48px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0,0,0,0.28);
    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        box-shadow .25s ease;
}
.notify-btn:hover {
    background: rgba(255, 255, 255, 0.22); /* white glass illumination */
    border-color: rgba(255, 255, 255, 0.55); 
    color: #fff;
    box-shadow: 
        0 6px 22px rgba(255, 255, 255, 0.45),   /* white glow */
        0 0 12px rgba(255, 255, 255, 0.35);     /* softer outer halo */
}
.pricing-box {
    background: rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(255,255,255,0.20);
    padding: 25px 22px;
    border-radius: 18px;
    color: #fff;


    box-shadow: 0 4px 14px rgba(0,0,0,0.28);
    transition:
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}
.pricing-box:hover {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.45);
    box-shadow:
        0 8px 26px rgba(255,255,255,0.35),
        0 0 14px rgba(255,255,255,0.25),
        0 3px 12px rgba(0,0,0,0.25);
    transform: translateY(-3px);
}
.pricing-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 2px;
}
.pricing-sub {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 10px;
}
.pricing-amount {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}
.pricing-amount span {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.85;
}
.pricing-features {
    list-style: none;
    padding-left: 0;
    margin: 0 0 15px 0;
}
.pricing-features li {
    font-size: 14px;
    margin-bottom: 6px;
    opacity: 0.9;
}
.pricing-btn {
    display: block;                /* makes <a> behave like button */
    text-align: center;            /* centers text */
    text-decoration: none;         /* remove underline */
    color: #fff !important;        /* force white text */
    width: 100%;
    
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 10px 0;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    
    
    box-shadow: 0 4px 14px rgba(0,0,0,0.28);
    transition:
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.pricing-btn:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.55);
    box-shadow:
        0 10px 26px rgba(255,255,255,0.45),
        0 0 14px rgba(255,255,255,0.30);
    transform: translateY(-2px);
}

/* Boxed Title with Note */
.boxed-title-box-with-note {
    background: rgba(0, 0, 0, 0.20);
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    width: 100%;
    margin: 22px 0 18px 0;
    border: 1px solid rgba(255,255,255,0.10);

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;

    white-space: normal;
    line-height: 1.3;
    color: rgba(255,255,255,0.93);
}
/* SUBTEXT */
.boxed-title-box-with-note .note {
    display: block;
    margin-top: 2px;

    font-size: 12px;
    font-weight: 500;
    opacity: 0.88;
    text-align: center;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.85);
}
.note-block {
    margin-top: -4px;
    margin-bottom: 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.88);
    text-align: center;
    background: rgba(0, 0, 0, 0.14);
    padding: 8px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.20);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    transition:
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}
/* Hover effect (optional but matches your UI theme) */
.note-block:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.45);

    box-shadow:
        0 8px 26px rgba(255,255,255,0.35),
        0 0 14px rgba(255,255,255,0.25),
        0 3px 12px rgba(0,0,0,0.25);

    transform: translateY(-1px);
}
/* ==========================================================
   AERO–GLASS THEMED MODAL FOR OPPG POLICY DISPLAY
========================================================== */

/* Backdrop */
.modal-backdrop.show {
    background: rgba(0,0,0,0.65) !important;
    backdrop-filter: blur(6px) !important;
}
/* Modal container */
#generalModal .modal-content {
    background: rgba(0,0,0,0.18) !important;
    border: 1px solid rgba(255,255,255,0.20) !important;
    border-radius: 22px !important;

    color: #fff !important;
    box-shadow:
        0 8px 26px rgba(0,0,0,0.35),
        0 0 14px rgba(255,255,255,0.18);

    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);

    animation: modalFadeIn 0.35s ease-out;
}
/* Modal Header */
#generalModal .modal-header {
    background: rgba(255,255,255,0.05) !important;
    border-bottom: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 22px 22px 0 0 !important;
}
/* Modal Title */
#generalModal .modal-title {
    font-weight: 700;
    font-size: 20px;
    color: #fff !important;
}
/* Modal Body */
#generalModal .modal-body {
    background: transparent !important;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.92) !important;
}
/* Modal Footer */
#generalModal .modal-footer {
    background: rgba(255,255,255,0.05) !important;
    border-top: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 0 0 22px 22px !important;
}
/* Close button */
#generalModal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.65;
}
#generalModal .btn-close:hover {
    opacity: 1;
}
/* Footer Button */
#generalModal .modal-footer .btn {
    background: rgba(0,0,0,0.18) !important;
    border: 1px solid rgba(255,255,255,0.20) !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 8px 18px !important;
    font-weight: 600 !important;

    box-shadow: 0 4px 14px rgba(0,0,0,0.28);
    transition: 0.25s ease;
}
#generalModal .modal-footer .btn:hover {
    background: rgba(255,255,255,0.22) !important;
    border-color: rgba(255,255,255,0.55) !important;
    box-shadow:
        0 8px 22px rgba(255,255,255,0.45),
        0 0 12px rgba(255,255,255,0.30);
    transform: translateY(-2px);
}
/* Smooth fade-in animation */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-12px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.footer-bar {
    margin-top: 28px;
    font-size: 13px;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
}
/* Fix iframe opacity and animation */
.cf-turnstile iframe {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
}

/* Email Form MAIN CONTAINER */
.boxed-cover-full {
    background: rgba(0, 0, 0, 0.20);
    border: 1px solid rgba(255,255,255,0.20);
    padding: 22px 26px;
    border-radius: 35px;
    width: 100%;
    margin: 32px auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    color: rgba(255,255,255,0.93);
    text-align: center;

    line-height: 1.45;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    transition:
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}
.boxed-cover-full:hover,
.boxed-cover-full:focus {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.45);

    box-shadow:
        0 8px 26px rgba(255,255,255,0.35),
        0 0 14px rgba(255,255,255,0.25),
        0 3px 12px rgba(0,0,0,0.25);

    transform: translateY(-2px); /* elegant lift */
}
/* TITLE */
.boxed-cover-full .title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: -4px;
}
/* NOTE */
.boxed-cover-full .note {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.85;
    letter-spacing: 0.3px;
}
/* INPUT GROUP (default desktop) */
.boxed-cover-full .input-group {
    display: flex;
    align-items: stretch;
    width: 100%;
    gap: 0; /* keep seamless connection */
}
/* EMAIL BOX */
.boxed-cover-full .email-box {
    flex: 1;
    border-radius: 50px 0 0 50px;  /* left round only (desktop) */
    margin: 0;
    padding: 10px 16px;
    font-size: 13px;

    background: rgba(255,255,255,0.11);
    border: 1px solid rgba(255,255,255,0.20);
    color: white;
}
/* NOTIFY BUTTON */
.boxed-cover-full .notify-btn {
    padding: 10px 22px;
    border-radius: 0 50px 50px 0; /* right round only (desktop) */

    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.22);
    color: white;
    font-size: 13px;
    font-weight: 600;
    transition: 0.2s;
}
.boxed-cover-full .notify-btn:hover {
    background: rgba(255,255,255,0.26);
    border-color: rgba(255,255,255,0.35);
}
/* Outer wrapper stays flex-centered */
#turnstileWrapper {
    width: 100%;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
/* Make Turnstile responsive */
#turnstileWrapper .cf-turnstile iframe {
    max-width: 100% !important;
    height: auto !important;
    transform-origin: center center;
}

/* Toast Notification Styles */
.toast-container-right {
    position: fixed !important;   /* MUST BE FIXED */
    top: 22px;
    right: 22px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

/* Toast Message */
.toast-message-right {
    pointer-events: auto;
    padding: 12px 18px;
    border-radius: 14px;

    background: rgba(0, 0, 0, 0.18);

    border: 1px solid rgba(255,255,255,0.14);
    color: #fff;
    font-size: 14px;
    font-weight: 600;

    box-shadow: 0 6px 20px rgba(0,0,0,0.26);

    opacity: 0;
    transform: translateX(20px);
    animation: toastIn 0.35s ease forwards;
}

/* Toast Notification Styles - Center*/
.toast-container {
    position: fixed !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* perfect true center */

    z-index: 999999;

    display: flex;
    flex-direction: column;
    gap: 14px;

    pointer-events: none;
}

/* Toast Message - Center */
.toast-message {
    pointer-events: auto;
    padding: 18px 26px;          /* bigger */
    border-radius: 20px;         /* rounder */

    background: rgba(0, 0, 0, 0.18);

    border: 1px solid rgba(255,255,255,0.14);
    color: #fff;
    font-size: 18px;             /* bigger text */
    font-weight: 700;

    box-shadow: 0 8px 26px rgba(0,0,0,0.30);

    opacity: 0;
    transform: translateY(10px); /* gentler rise */
    animation: toastIn 0.35s ease forwards;
}
/* Toast Types */
.toast-success {
    background: rgba(40, 167, 69, 0.28);
    border-color: rgba(40, 167, 69, 0.45);
    box-shadow:
        0 6px 20px rgba(40, 167, 69, 0.55),
        0 0 12px rgba(40, 167, 69, 0.35);
}
.toast-black {
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.7),
        0 0 12px rgba(255, 255, 255, 0.45);
}
.toast-warning {
    background: rgba(255, 193, 7, 0.28);
    border-color: rgba(255, 193, 7, 0.45);
    color: #000;
    box-shadow:
        0 6px 20px rgba(255, 193, 7, 0.55),
        0 0 12px rgba(255, 193, 7, 0.35);
}
.toast-error {
    background: rgba(220, 53, 69, 0.28);
    border-color: rgba(220, 53, 69, 0.45);
    box-shadow:
        0 6px 20px rgba(220, 53, 69, 0.55),
        0 0 12px rgba(220, 53, 69, 0.35);
}

/* Toast Glass */
.toast-glass-black {
    background: rgba(0, 0, 0, 0.22); /* Aero black glass */
    border-color: rgba(255, 255, 255, 0.35); /* soft white border */
    
    box-shadow:
        0 8px 26px rgba(255, 255, 255, 0.32), /* white glow halo */
        0 0 14px rgba(255, 255, 255, 0.22),   /* subtle aura */
        0 4px 14px rgba(0, 0, 0, 0.35);       /* base dark shadow */
}
.toast-glass-success {
    background: rgba(40, 167, 69, 0.20);
    border-color: rgba(40, 167, 69, 0.55);
    box-shadow:
        0 8px 26px rgba(40, 167, 69, 0.45),
        0 0 14px rgba(40, 167, 69, 0.28),
        0 4px 14px rgba(0, 0, 0, 0.35);
}
.toast-glass-warning {
    background: rgba(255, 193, 7, 0.20);
    border-color: rgba(255, 193, 7, 0.55);
    box-shadow:
        0 8px 26px rgba(255, 193, 7, 0.45),
        0 0 14px rgba(255, 193, 7, 0.28),
        0 4px 14px rgba(0, 0, 0, 0.35);
    color: #000;
}
.toast-glass-error {
    background: rgba(220, 53, 69, 0.20);
    border-color: rgba(220, 53, 69, 0.55);
    box-shadow:
        0 8px 26px rgba(220, 53, 69, 0.45),
        0 0 14px rgba(220, 53, 69, 0.28),
        0 4px 14px rgba(0, 0, 0, 0.35);
}
.toast-glass-info {
    background: rgba(23, 162, 184, 0.20);
    border-color: rgba(23, 162, 184, 0.55);
    box-shadow:
        0 8px 26px rgba(23, 162, 184, 0.45),
        0 0 14px rgba(23, 162, 184, 0.28),
        0 4px 14px rgba(0, 0, 0, 0.35);
}
.toast-glass-purple {
    background: rgba(111, 66, 193, 0.20);
    border-color: rgba(111, 66, 193, 0.55);
    box-shadow:
        0 8px 26px rgba(111, 66, 193, 0.45),
        0 0 14px rgba(111, 66, 193, 0.28),
        0 4px 14px rgba(0, 0, 0, 0.35);
}
.toast-glass-cyan {
    background: rgba(0, 198, 255, 0.20);
    border-color: rgba(0, 198, 255, 0.55);
    box-shadow:
        0 8px 26px rgba(0, 198, 255, 0.45),
        0 0 14px rgba(0, 198, 255, 0.28),
        0 4px 14px rgba(0, 0, 0, 0.35);
}
.toast-glass-emerald {
    background: rgba(0, 255, 127, 0.20);
    border-color: rgba(0, 255, 127, 0.55);
    box-shadow:
        0 8px 26px rgba(0, 255, 127, 0.45),
        0 0 14px rgba(0, 255, 127, 0.28),
        0 4px 14px rgba(0, 0, 0, 0.35);
}
.toast-glass-blood {
    background: rgba(139, 0, 0, 0.20);
    border-color: rgba(139, 0, 0, 0.55);
    box-shadow:
        0 8px 26px rgba(139, 0, 0, 0.45),
        0 0 14px rgba(139, 0, 0, 0.28),
        0 4px 14px rgba(0, 0, 0, 0.35);
}
.toast-glass-white {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.55);
    color: #000;
    box-shadow:
        0 8px 26px rgba(255, 255, 255, 0.45),
        0 0 14px rgba(255, 255, 255, 0.32),
        0 4px 14px rgba(0, 0, 0, 0.20);
}
/* Animations */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes toastOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(20px);
    }
}

/* Responsive Adjustments */
@media (max-width: 540px) {
   .header-row {
       flex-direction: column;
       gap: 12px;
   }
   .logo {
       width: 120px;
       height: 120px;
   }
}
@media (max-width: 500px) {
    #turnstileWrapper > div {
        transform: scale(0.96);
        transform-origin: center;
    }
}
@media (max-width: 480px) {
    .boxed-cover-full .input-group {
        flex-direction: column;
        gap: 10px; /* spacing between pills */
    }

    .boxed-cover-full .email-box {
        border-radius: 50px !important; /* full pill */
        width: 100%;
    }

    .boxed-cover-full .notify-btn {
        border-radius: 50px !important; /* full pill */
        width: 100%;
        box-shadow: none !important;
    }
}
@media (max-width: 450px) {
    #turnstileWrapper > div {
        transform: scale(0.90);
    }
}
@media (max-width: 420px) {
    .title-product { font-size: 28px; }  /* instead of 34px if you want it tighter */
    .badge-btn { font-size: 12px; padding: 3px 10px; }
    .footer-bar {
        flex-direction: column;
        gap: 4px;
        font-size: 11px;
    }
}
@media (max-width: 380px) {
    #turnstileWrapper > div {
        transform: scale(0.85);
    }
}