/* /Pages/AffiliatesPortal.razor.rz.scp.css */
/* AffiliatesPortal.razor.css */

/* --- Animation Keyframes --- */
@keyframes fadeIn-b-7b9a3cp8v1 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-7b9a3cp8v1 {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes spin-b-7b9a3cp8v1 {
    to {
        transform: rotate(360deg);
    }
}

/* --- Modal Backdrop --- */
.modal-backdrop[b-7b9a3cp8v1] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.fade-in[b-7b9a3cp8v1] {
    animation: fadeIn-b-7b9a3cp8v1 0.2s ease-out forwards;
}

/* --- Modal Panel --- */
.modal-panel[b-7b9a3cp8v1] {
    background: #1c1c1e;
    width: 100%;
    max-width: 440px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.slide-up[b-7b9a3cp8v1] {
    animation: slideUp-b-7b9a3cp8v1 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --- Header Section --- */
.modal-header[b-7b9a3cp8v1] {
    padding: 24px 24px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-left[b-7b9a3cp8v1] {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

/* Gold Icon Badge */
.icon-badge-gold[b-7b9a3cp8v1] {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FFD700, #FDB931);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    box-shadow: 0 4px 12px rgba(253, 185, 49, 0.2);
}

.title-group[b-7b9a3cp8v1] {
    display: flex;
    flex-direction: column;
}

.modal-title[b-7b9a3cp8v1] {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.modal-subtitle[b-7b9a3cp8v1] {
    margin: 4px 0 0;
    font-size: 13px;
    color: #86868b;
}

.header-actions[b-7b9a3cp8v1] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* Gold Price Tag */
.header-price-tag-gold[b-7b9a3cp8v1] {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.currency[b-7b9a3cp8v1] {
    font-size: 11px;
    margin-right: 1px;
    opacity: 0.8;
}

.btn-close[b-7b9a3cp8v1] {
    background: transparent;
    border: none;
    color: #86868b;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-close:hover[b-7b9a3cp8v1] {
        color: #fff;
    }

/* --- Body Section --- */
.modal-body[b-7b9a3cp8v1] {
    padding: 24px;
    overflow-y: auto;
}

/* Stats Grid */
.affiliate-stats[b-7b9a3cp8v1] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.stat-card[b-7b9a3cp8v1] {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-label[b-7b9a3cp8v1] {
    font-size: 11px;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value[b-7b9a3cp8v1] {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.text-green[b-7b9a3cp8v1] {
    color: #28cd41;
}

/* Instruction Box */
.instruction-box[b-7b9a3cp8v1] {
    background: rgba(10, 132, 255, 0.1);
    border: 1px solid rgba(10, 132, 255, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    gap: 12px;
    align-items: center;
    color: #fff;
}

    .instruction-box i[b-7b9a3cp8v1] {
        color: #0a84ff;
        font-size: 18px;
    }

    .instruction-box p[b-7b9a3cp8v1] {
        margin: 0;
        font-size: 13px;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.9);
    }

/* --- Footer & Form --- */
.modal-footer[b-7b9a3cp8v1] {
    padding: 0 24px 24px;
}

.form-group[b-7b9a3cp8v1] {
    margin-bottom: 20px;
}

.form-header[b-7b9a3cp8v1] {
    margin-bottom: 8px;
}

.form-label[b-7b9a3cp8v1] {
    font-size: 11px;
    font-weight: 600;
    color: #86868b;
    letter-spacing: 0.5px;
}

/* Note: Input styles are now handled globally in app.css */

.validation-message-sleek[b-7b9a3cp8v1] {
    font-size: 12px;
    color: #ff453a;
    margin-top: 6px;
    display: block;
}

/* Pay Button */
.btn-pay-sleek[b-7b9a3cp8v1] {
    width: 100%;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 14px;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.1s, background 0.2s;
}

    .btn-pay-sleek:hover[b-7b9a3cp8v1] {
        background: #f2f2f7;
    }

    .btn-pay-sleek:active[b-7b9a3cp8v1] {
        transform: scale(0.98);
    }

    .btn-pay-sleek:disabled[b-7b9a3cp8v1] {
        opacity: 0.7;
        cursor: not-allowed;
    }

.spinner-sleek[b-7b9a3cp8v1] {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin-b-7b9a3cp8v1 0.8s linear infinite;
    margin: 0 auto;
}

.terms-text[b-7b9a3cp8v1] {
    text-align: center;
    font-size: 12px;
    color: #636366;
    margin-top: 16px;
}
/* /Pages/Home.razor.rz.scp.css */
/* Home.razor.css */

/* --- Layout --- */
.store-layout[b-l1puxr0x7z] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    background: var(--bg-color);
}

/* --- Glass Navbar --- */
.glass-nav[b-l1puxr0x7z] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-content[b-l1puxr0x7z] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 24px;
}

.brand-logo[b-l1puxr0x7z] {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.nav-links[b-l1puxr0x7z] {
    display: flex;
    gap: 24px;
}

.nav-item[b-l1puxr0x7z] {
    font-size: 13px;
    color: #86868b;
    transition: color 0.2s;
    font-weight: 500;
}

    .nav-item:hover[b-l1puxr0x7z] {
        color: var(--text-primary);
    }


/* --- SLIM BANNER (The New Ticker) --- */
.slim-banner[b-l1puxr0x7z] {
    position: relative;
    width: 100%;
    height: 44px; /* Slim height */
    margin-top: 60px; /* Exact height of Nav */
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    z-index: 900;
}

.banner-bg-gradient[b-l1puxr0x7z] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0071e3, #34c759, #ff9500);
    background-size: 200% 200%;
    animation: gradientShift-b-l1puxr0x7z 8s ease infinite;
    opacity: 0.8;
}

.banner-content[b-l1puxr0x7z] {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3); /* Legibility overlay */
    backdrop-filter: blur(10px);
}

.banner-slide[b-l1puxr0x7z] {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    justify-content: center;
}

    .banner-slide.active[b-l1puxr0x7z] {
        opacity: 1;
        transform: translateY(0);
    }

/* Ticker Content Styling */
.banner-tag[b-l1puxr0x7z] {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    background: #fff;
    color: #000;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.banner-text[b-l1puxr0x7z] {
    font-size: 13px;
    color: #fff;
    white-space: nowrap;
}

.banner-link[b-l1puxr0x7z] {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.banner-slide:hover .banner-link[b-l1puxr0x7z] {
    color: #fff;
}


/* --- SEARCH SECTION --- */
.search-section[b-l1puxr0x7z] {
    padding: 24px 20px 12px; /* Reduced bottom padding */
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.search-wrapper[b-l1puxr0x7z] {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.search-icon[b-l1puxr0x7z] {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #86868b;
    font-size: 14px;
}

.search-input[b-l1puxr0x7z] {
    width: 100%;
    background: #1c1c1e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 12px 12px 12px 42px;
    color: white;
    font-size: 15px;
    outline: none;
    transition: all 0.2s;
    box-sizing: border-box;
}

    .search-input:focus[b-l1puxr0x7z] {
        border-color: #0A84FF;
        background: #242426;
    }


/* --- MAIN GRID --- */
.main-content[b-l1puxr0x7z] {
    flex: 1;
    overflow-y: auto;
    padding: 0 20px 20px;
    display: flex;
    justify-content: center;
}

.bento-grid[b-l1puxr0x7z] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 1200px;
    align-content: start;
}

/* --- Product Cards --- */
.product-card[b-l1puxr0x7z] {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 24px;
    transition: transform 0.2s;
    border: 1px solid rgba(255,255,255,0.05);
}

    .product-card:hover[b-l1puxr0x7z] {
        transform: translateY(-2px);
        background-color: var(--card-hover);
    }

.icon-wrapper[b-l1puxr0x7z] {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #3a3a3c, #1c1c1e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    color: #fff;
}

.product-name[b-l1puxr0x7z] {
    font-size: 19px;
    margin: 0 0 6px 0;
    font-weight: 600;
}

.product-desc[b-l1puxr0x7z] {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    min-height: 42px;
    line-height: 1.4;
}

.action-group[b-l1puxr0x7z] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.price[b-l1puxr0x7z] {
    font-size: 16px;
    font-weight: 600;
}

.btn-buy[b-l1puxr0x7z] {
    background-color: rgba(255,255,255,0.1);
    color: #0A84FF;
    border: none;
    border-radius: 18px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

    .btn-buy:hover[b-l1puxr0x7z] {
        background: #0A84FF;
        color: white;
    }

/* --- Footer --- */
.footer[b-l1puxr0x7z] {
    padding: 16px;
    text-align: center;
    font-size: 11px;
    color: #555;
    flex-shrink: 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

@keyframes gradientShift-b-l1puxr0x7z {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 600px) {
    .hidden-mobile[b-l1puxr0x7z] {
        display: none;
    }
}
/* /Pages/ReviewMasterWeb.razor.rz.scp.css */
/* ReviewMasterWeb.razor.css */

/* --- Animation Keyframes --- */
@keyframes fadeIn-b-wtskot44ym {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-wtskot44ym {
    from {
        transform: translateY(20px) scale(0.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes spin-b-wtskot44ym {
    to {
        transform: rotate(360deg);
    }
}

/* --- Layout & Backdrop --- */
.modal-backdrop[b-wtskot44ym] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn-b-wtskot44ym 0.2s ease-out;
    padding: 20px;
}

.modal-panel[b-wtskot44ym] {
    background: #1c1c1e;
    width: 100%;
    max-width: 750px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    animation: slideUp-b-wtskot44ym 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

/* --- HEADER --- */
.modal-header[b-wtskot44ym] {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(255, 255, 255, 0.02);
    flex-shrink: 0;
}

.header-left[b-wtskot44ym] {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-actions[b-wtskot44ym] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-badge[b-wtskot44ym] {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0071e3, #00c6fb);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
    flex-shrink: 0;
}

.title-group[b-wtskot44ym] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-title[b-wtskot44ym] {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.modal-subtitle[b-wtskot44ym] {
    margin: 4px 0 0 0;
    font-size: 14px;
    color: #98989d;
    line-height: 1.4;
}

/* Header Price Tag */
.header-price-tag[b-wtskot44ym] {
    background: rgba(0, 113, 227, 0.15);
    color: #fff;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 20px;
    border: 1px solid rgba(0, 113, 227, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
    text-shadow: 0 0 10px rgba(0, 113, 227, 0.4);
}

    .header-price-tag .currency[b-wtskot44ym] {
        font-size: 16px;
        color: #5eaaff;
        font-weight: 600;
        margin-top: 2px;
    }

.btn-close[b-wtskot44ym] {
    background: transparent;
    border: none;
    color: #86868b;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-close:hover[b-wtskot44ym] {
        background: rgba(255,255,255,0.1);
        color: #fff;
    }

/* --- BODY (Scrollable) --- */
.modal-body[b-wtskot44ym] {
    padding: 32px;
    overflow-y: auto;
    flex: 1;
}

.section-label[b-wtskot44ym] {
    font-size: 13px;
    text-transform: uppercase;
    color: #86868b;
    margin-bottom: 20px;
    letter-spacing: 1.2px;
    font-weight: 600;
}

/* Features Grid */
.features-grid[b-wtskot44ym] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-card[b-wtskot44ym] {
    background: rgba(255, 255, 255, 0.04);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.2s, background 0.2s;
}

    .feature-card:hover[b-wtskot44ym] {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-2px);
    }

    .feature-card i[b-wtskot44ym] {
        color: #0071e3;
        font-size: 24px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .feature-card div[b-wtskot44ym] {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .feature-card strong[b-wtskot44ym] {
        font-size: 15px;
        color: #fff;
        font-weight: 600;
    }

    .feature-card span[b-wtskot44ym] {
        font-size: 13px;
        color: #98989d;
        line-height: 1.5;
    }

/* Info Footer Grid (Inside Body) */
.info-footer-grid[b-wtskot44ym] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.info-item[b-wtskot44ym] {
    font-size: 13px;
    color: #dedede;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.2);
    padding: 12px;
    border-radius: 10px;
}

    .info-item i[b-wtskot44ym] {
        color: #86868b;
        font-size: 16px;
    }

/* --- SLEEK COMPACT FOOTER (Revised Spacing) --- */
.modal-footer[b-wtskot44ym] {
    box-sizing: border-box;
    width: 100%;
    padding: 20px 32px 24px 32px;
    background-color: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.checkout-form[b-wtskot44ym] {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0; /* REMOVED GAP: We use manual margins now for control */
}

/* Header Row */
.form-header[b-wtskot44ym] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px; /* Space between label and input */
    padding: 0 2px;
}

.form-label[b-wtskot44ym] {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #86868b;
    letter-spacing: 0.5px;
}

.secure-pill[b-wtskot44ym] {
    font-size: 10px;
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* --- COMPACT INPUT --- */
.input-group-refined[b-wtskot44ym] {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    /* No bottom margin here, handled by button top margin */
}

.input-icon-wrapper[b-wtskot44ym] {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #86868b;
    pointer-events: none;
    font-size: 15px;
    z-index: 10;
}

[b-wtskot44ym] .sleek-input,
.sleek-input[b-wtskot44ym] {
    box-sizing: border-box !important;
    width: 100%;
    height: 42px !important;
    background-color: #252528 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    padding: 0 14px 0 42px !important;
    color: #fff !important;
    font-size: 14px !important;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

    [b-wtskot44ym] .sleek-input:focus,
    .sleek-input:focus[b-wtskot44ym] {
        background-color: #2c2c2e !important;
        border-color: #0071e3 !important;
        box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.15), inset 0 1px 2px rgba(0,0,0,0.3) !important;
    }

    [b-wtskot44ym] .sleek-input::placeholder,
    .sleek-input[b-wtskot44ym]::placeholder {
        color: #666 !important;
        font-size: 13px;
    }

.input-group-refined:focus-within .input-icon-wrapper[b-wtskot44ym] {
    color: #0071e3;
}

/* --- COMPACT BUTTON --- */
.btn-pay-sleek[b-wtskot44ym] {
    box-sizing: border-box;
    width: 100%;
    height: 42px;
    background: linear-gradient(180deg, #007FFF 0%, #0071e3 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 113, 227, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    /* THE FIX: Force space above button */
    margin-top: 20px;
}

    .btn-pay-sleek:hover[b-wtskot44ym] {
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(0, 113, 227, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .btn-pay-sleek:active[b-wtskot44ym] {
        transform: scale(0.98);
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
    }

.btn-price[b-wtskot44ym] {
    background: rgba(0, 0, 0, 0.15);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

/* Micro-copy */
.terms-text[b-wtskot44ym] {
    text-align: center;
    font-size: 10px;
    color: #555;
    margin-top: 8px; /* Little more space here too */
}

.validation-message-sleek[b-wtskot44ym] {
    color: #ff453a;
    font-size: 12px;
    margin-left: 4px;
    margin-top: 4px; /* Reset negative margin so it sits naturally in the new gap */
    display: block;
}

/* Spinner */
.spinner-sleek[b-wtskot44ym] {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin-b-wtskot44ym 0.8s linear infinite;
    margin: 0 auto;
}

/* Mobile Tweak */
@media (max-width: 600px) {
    .modal-footer[b-wtskot44ym] {
        padding: 20px;
    }
}
/* /Pages/SupportModal.razor.rz.scp.css */
/* SupportModal.razor.css */

/* --- ANIMATIONS --- */
@keyframes fadeIn-b-ovdvhtzcfc {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-ovdvhtzcfc {
    from {
        transform: translateY(30px) scale(0.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* --- BACKDROP --- */
.modal-backdrop[b-ovdvhtzcfc] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(16px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.fade-in[b-ovdvhtzcfc] {
    animation: fadeIn-b-ovdvhtzcfc 0.3s ease-out forwards;
}

/* --- PANEL --- */
.modal-panel[b-ovdvhtzcfc] {
    background: #151516; /* Deep dark grey */
    width: 100%;
    max-width: 460px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 80px -10px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.slide-up[b-ovdvhtzcfc] {
    animation: slideUp-b-ovdvhtzcfc 0.4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

/* --- HEADER --- */
.modal-header[b-ovdvhtzcfc] {
    padding: 32px 32px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.header-left[b-ovdvhtzcfc] {
    display: flex;
    gap: 18px;
    align-items: center;
}

/* Glowing Badge */
.icon-badge-glow[b-ovdvhtzcfc] {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #0A84FF, #0056B3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 0 20px rgba(10, 132, 255, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.title-group[b-ovdvhtzcfc] {
    display: flex;
    flex-direction: column;
}

.modal-title[b-ovdvhtzcfc] {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.modal-subtitle[b-ovdvhtzcfc] {
    margin: 4px 0 0;
    font-size: 14px;
    color: #86868b;
}

.btn-close[b-ovdvhtzcfc] {
    background: rgba(255,255,255,0.05);
    border: none;
    color: #86868b;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

    .btn-close:hover[b-ovdvhtzcfc] {
        background: rgba(255,255,255,0.15);
        color: #fff;
    }

/* --- BODY --- */
.modal-body[b-ovdvhtzcfc] {
    padding: 32px;
    overflow-y: auto;
}

/* --- FORMS --- */
.form-group[b-ovdvhtzcfc] {
    margin-bottom: 24px;
}

.form-label[b-ovdvhtzcfc] {
    font-size: 11px;
    font-weight: 700;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

/* Note: .input-wrapper and .sleek-input styles 
   are now handled globally in app.css to ensure 
   consistency with the "License Delivery" box. */

/* Specific override for Text Areas */
.sleek-input.textarea[b-ovdvhtzcfc] {
    min-height: 120px;
    line-height: 1.5;
}

/* Select Dropdown Styling specific to this modal */
select.sleek-input[b-ovdvhtzcfc] {
    appearance: none;
    cursor: pointer;
}

.chevron-icon[b-ovdvhtzcfc] {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6e6e73;
    font-size: 12px;
    pointer-events: none;
    z-index: 20;
}

/* Validation */
.validation-message-sleek[b-ovdvhtzcfc] {
    font-size: 12px;
    color: #FF453A;
    margin-top: 8px;
    display: block;
    font-weight: 500;
}

/* --- ACTION BUTTON --- */
.btn-action-glow[b-ovdvhtzcfc] {
    width: 100%;
    background: linear-gradient(135deg, #0A84FF 0%, #0060DF 100%);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(10, 132, 255, 0.3);
    margin-bottom: 16px;
}

    .btn-action-glow:hover[b-ovdvhtzcfc] {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(10, 132, 255, 0.4);
    }

    .btn-action-glow:active[b-ovdvhtzcfc] {
        transform: scale(0.98);
    }

.btn-content[b-ovdvhtzcfc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
}

/* Tiny Note */
.tiny-note[b-ovdvhtzcfc] {
    text-align: center;
    color: #555;
    font-size: 12px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
