/* _content/MoneyAppsV4/Components/Account/Pages/ConfirmEmail.razor.rz.scp.css */
/* ===== EMAIL CONFIRMATION STYLES ===== */
.email-confirmation-container[b-izf26cgc19] {
    min-height: 100vh;
    color: var(--text);
    padding: clamp(1rem, 3vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInScale 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.email-confirmation-card[b-izf26cgc19] {
    background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: clamp(2rem, 5vw, 3rem);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 520px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .email-confirmation-card[b-izf26cgc19]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
        opacity: 0.6;
    }

.confirmation-icon[b-izf26cgc19] {
    font-size: clamp(3rem, 8vw, 4rem);
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: gentlePulse 2s ease-in-out infinite;
}

    .confirmation-icon.success[b-izf26cgc19] {
        color: var(--accent);
    }

    .confirmation-icon.error[b-izf26cgc19] {
        color: var(--danger);
        animation: gentlePulse 1.5s ease-in-out infinite;
    }

.confirmation-title[b-izf26cgc19] {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    margin: 0 0 2rem 0;
    background: linear-gradient(135deg, var(--text), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

/* Status Message Styles */
.status-message[b-izf26cgc19] {
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.5;
    backdrop-filter: blur(5px);
}

    .status-message.success[b-izf26cgc19] {
        background: rgba(46, 231, 201, 0.1);
        border: 1px solid rgba(46, 231, 201, 0.3);
        color: var(--accent);
    }

    .status-message.error[b-izf26cgc19] {
        background: rgba(255, 107, 107, 0.1);
        border: 1px solid rgba(255, 107, 107, 0.3);
        color: var(--danger);
    }

/* Actions Section */
.confirmation-actions[b-izf26cgc19] {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn[b-izf26cgc19] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: var(--step-0);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 600;
    min-width: 160px;
}

.btn-primary[b-izf26cgc19] {
    background: var(--gradient-primary);
    color: #041013;
    box-shadow: 0 8px 25px var(--accent-glow);
    position: relative;
    overflow: hidden;
}

    .btn-primary:hover[b-izf26cgc19] {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(46, 231, 201, 0.4);
        color: #041013;
        text-decoration: none;
    }

    .btn-primary:active[b-izf26cgc19] {
        transform: translateY(0);
    }

    .btn-primary[b-izf26cgc19]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.6s ease;
    }

    .btn-primary:hover[b-izf26cgc19]::before {
        left: 100%;
    }

.btn-secondary[b-izf26cgc19] {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

    .btn-secondary:hover[b-izf26cgc19] {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        color: var(--text);
        text-decoration: none;
    }

/* Loading State */
.loading-state[b-izf26cgc19] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.loading-spinner[b-izf26cgc19] {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--accent);
    border-radius: 50%;
    animation: spin-b-izf26cgc19 1s linear infinite;
}

@keyframes spin-b-izf26cgc19 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .email-confirmation-container[b-izf26cgc19] {
        padding: 1rem;
    }

    .email-confirmation-card[b-izf26cgc19] {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .confirmation-actions[b-izf26cgc19] {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .btn[b-izf26cgc19] {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .email-confirmation-card[b-izf26cgc19] {
        padding: 1.5rem 1.25rem;
        margin: 0.5rem;
    }

    .confirmation-icon[b-izf26cgc19] {
        margin-bottom: 1rem;
    }

    .confirmation-title[b-izf26cgc19] {
        margin-bottom: 1.5rem;
    }

    .status-message[b-izf26cgc19] {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .btn[b-izf26cgc19] {
        padding: 0.875rem 1.5rem;
        min-width: auto;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .email-confirmation-container[b-izf26cgc19],
    .confirmation-icon[b-izf26cgc19],
    .btn[b-izf26cgc19],
    .loading-spinner[b-izf26cgc19] {
        animation: none !important;
        transition: none !important;
    }

        .btn:hover[b-izf26cgc19] {
            transform: none;
        }

    .btn-primary[b-izf26cgc19]::before {
        display: none;
    }
}

/* High contrast support */
@media (prefers-contrast: high) {
    .email-confirmation-card[b-izf26cgc19] {
        border: 2px solid var(--text);
        background: transparent;
    }

    .status-message.success[b-izf26cgc19] {
        border: 2px solid var(--accent);
        background: transparent;
    }

    .status-message.error[b-izf26cgc19] {
        border: 2px solid var(--danger);
        background: transparent;
    }

    .btn-secondary[b-izf26cgc19] {
        border: 2px solid var(--text);
        background: transparent;
    }
}
/* _content/MoneyAppsV4/Components/Account/Pages/ForgotPassword.razor.rz.scp.css */
/* Forgot Password Page Styles */
.forgot-password-container[b-zxuavz6byl] {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: radial-gradient(1200px 400px at 10% 20%, rgba(63,225,201,0.06), transparent 8%), radial-gradient(900px 320px at 90% 80%, rgba(63,225,201,0.03), transparent 8%);
    animation: fadeInScale-b-zxuavz6byl 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.forgot-password-card[b-zxuavz6byl] {
    background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 18px rgba(2,6,8,0.35);
    width: 100%;
    max-width: 32rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: cardSlideIn-b-zxuavz6byl 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}

    .forgot-password-card:hover[b-zxuavz6byl] {
        transform: translateY(-5px) scale(1.01);
        box-shadow: 0 12px 30px rgba(2,6,8,0.45), 0 0 0 1px rgba(63,225,201,0.1);
    }

    .forgot-password-card[b-zxuavz6byl]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
        transition: var(--transition-smooth);
    }

    .forgot-password-card:hover[b-zxuavz6byl]::before {
        background: linear-gradient(90deg, transparent, var(--accent), var(--accent), transparent);
        height: 2px;
    }

.forgot-password-header[b-zxuavz6byl] {
    text-align: center;
    margin-bottom: 2rem;
    animation: headerSlideDown-b-zxuavz6byl 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.forgot-password-title[b-zxuavz6byl] {
    font-size: var(--step-4);
    font-weight: 800;
    color: var(--text);
    margin: 0 0 0.5rem 0;
    line-height: 1.1;
    transition: var(--transition-smooth);
}

.forgot-password-subtitle[b-zxuavz6byl] {
    color: var(--muted);
    font-size: var(--step-1);
    margin: 0 0 1.5rem 0;
    animation: fadeInUp-b-zxuavz6byl 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.forgot-password-form[b-zxuavz6byl] {
    display: grid;
    gap: 1.5rem;
    animation: formSlideIn-b-zxuavz6byl 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.forgot-password-form-group[b-zxuavz6byl] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.forgot-password-label[b-zxuavz6byl] {
    color: var(--text);
    font-size: var(--step-0);
    font-weight: 600;
    display: block;
    transition: all var(--transition-smooth);
    transform-origin: left center;
}

.forgot-password-form-group:focus-within .forgot-password-label[b-zxuavz6byl] {
    color: var(--accent);
    transform: translateX(5px);
}

.forgot-password-input[b-zxuavz6byl] {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text);
    font-size: var(--step-1);
    font-family: var(--ff);
    transition: all var(--transition-smooth);
    transform: translateZ(0);
    backdrop-filter: blur(4px);
}

    .forgot-password-input:hover[b-zxuavz6byl] {
        background: rgba(255,255,255,0.04);
        border-color: rgba(255,255,255,0.12);
        transform: translateY(-1px);
    }

    .forgot-password-input:focus[b-zxuavz6byl] {
        outline: none;
        border-color: var(--accent);
        box-shadow: var(--focus-ring), 0 8px 20px rgba(63,225,201,0.15);
        background: rgba(255,255,255,0.05);
        transform: translateY(-2px) scale(1.01);
    }

    .forgot-password-input[b-zxuavz6byl]::placeholder {
        color: rgba(255,255,255,0.3);
        transition: var(--transition-smooth);
    }

    .forgot-password-input:focus[b-zxuavz6byl]::placeholder {
        color: rgba(255,255,255,0.2);
        transform: translateX(5px);
    }

.forgot-password-button[b-zxuavz6byl] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    font-size: var(--step-1);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: 1px solid transparent;
    text-decoration: none;
    user-select: none;
    font-weight: 600;
    width: 100%;
    transform: translateZ(0);
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--accent), var(--accent-600));
    color: #041013;
    box-shadow: 0 6px 18px rgba(46,205,176,0.12), 0 1px 0 rgba(255,255,255,0.02) inset;
    border-color: rgba(255,255,255,0.03);
    margin-top: 1rem;
    animation: buttonSlideIn-b-zxuavz6byl 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

    .forgot-password-button:hover[b-zxuavz6byl] {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 12px 30px rgba(46,205,176,0.2), 0 1px 0 rgba(255,255,255,0.02) inset;
    }

    .forgot-password-button:active[b-zxuavz6byl] {
        transform: translateY(0) scale(0.98);
    }

    .forgot-password-button[b-zxuavz6byl]::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .forgot-password-button:active[b-zxuavz6byl]::after {
        width: 300px;
        height: 300px;
    }

.forgot-password-links[b-zxuavz6byl] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    animation: fadeIn-b-zxuavz6byl 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

.forgot-password-link[b-zxuavz6byl] {
    color: var(--accent);
    text-decoration: none;
    font-size: var(--step-0);
    transition: all var(--transition-smooth);
    text-align: center;
    position: relative;
}

    .forgot-password-link:hover[b-zxuavz6byl] {
        color: var(--accent-600);
        transform: translateY(-1px);
    }

    .forgot-password-link[b-zxuavz6byl]::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--accent);
        transition: width 0.3s ease;
    }

    .forgot-password-link:hover[b-zxuavz6byl]::after {
        width: 100%;
    }

/* Validation styles */
.forgot-password-validation[b-zxuavz6byl] {
    color: var(--danger);
    font-size: var(--step-0);
    margin-top: 0.25rem;
    animation: shake-b-zxuavz6byl 0.5s ease-in-out;
}

.forgot-password-validation-summary[b-zxuavz6byl] {
    background: rgba(255,107,107,0.05);
    border: 1px solid rgba(255,107,107,0.2);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 1.5rem;
    animation: slideInUp-b-zxuavz6byl 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .forgot-password-validation-summary ul[b-zxuavz6byl] {
        margin: 0;
        padding-left: 1rem;
    }

/* Success message */
.forgot-password-success[b-zxuavz6byl] {
    background: rgba(63,225,201,0.05);
    border: 1px solid rgba(63,225,201,0.2);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    animation: slideInUp-b-zxuavz6byl 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Responsive */
@media (max-width: 48rem) {
    .forgot-password-container[b-zxuavz6byl] {
        padding: 1rem;
    }

    .forgot-password-card[b-zxuavz6byl] {
        padding: 2rem;
    }

    .forgot-password-title[b-zxuavz6byl] {
        font-size: var(--step-3);
    }

    .forgot-password-input:hover[b-zxuavz6byl] {
        transform: none;
    }

    .forgot-password-input:focus[b-zxuavz6byl] {
        transform: scale(1.01);
    }

    .forgot-password-card:hover[b-zxuavz6byl] {
        transform: none;
    }

    .forgot-password-button:hover[b-zxuavz6byl] {
        transform: translateY(-1px);
    }
}

/* Animation keyframes (reuse from previous styles) */
@keyframes fadeInScale-b-zxuavz6byl {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes cardSlideIn-b-zxuavz6byl {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes headerSlideDown-b-zxuavz6byl {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp-b-zxuavz6byl {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes formSlideIn-b-zxuavz6byl {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes buttonSlideIn-b-zxuavz6byl {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeIn-b-zxuavz6byl {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes shake-b-zxuavz6byl {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

@keyframes slideInUp-b-zxuavz6byl {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .forgot-password-container[b-zxuavz6byl],
    .forgot-password-card[b-zxuavz6byl],
    .forgot-password-header[b-zxuavz6byl],
    .forgot-password-subtitle[b-zxuavz6byl],
    .forgot-password-form[b-zxuavz6byl],
    .forgot-password-button[b-zxuavz6byl],
    .forgot-password-links[b-zxuavz6byl],
    .forgot-password-validation-summary[b-zxuavz6byl],
    .forgot-password-success[b-zxuavz6byl] {
        animation: none !important;
        transition: none !important;
    }
}
/* _content/MoneyAppsV4/Components/Account/Pages/ForgotPasswordConfirmation.razor.rz.scp.css */
/* ===== FORGOT PASSWORD CONFIRMATION STYLES ===== */
.confirmation-container[b-gh6fuyhtye] {
    min-height: 100vh;
    color: var(--text);
    padding: clamp(1rem, 3vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInScale 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.confirmation-card[b-gh6fuyhtye] {
    background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: clamp(2rem, 5vw, 3rem);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 520px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .confirmation-card[b-gh6fuyhtye]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
        opacity: 0.6;
    }

.confirmation-icon[b-gh6fuyhtye] {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: gentlePulse 3s ease-in-out infinite;
}

.confirmation-card h1[b-gh6fuyhtye] {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    margin: 0 0 1.5rem 0;
    background: linear-gradient(135deg, var(--text), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.confirmation-card p[b-gh6fuyhtye] {
    color: var(--muted);
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
}

/* Button Styles */
.btn[b-gh6fuyhtye] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: var(--step-0);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 600;
    min-width: 200px;
}

.btn-primary[b-gh6fuyhtye] {
    background: var(--gradient-primary);
    color: #041013;
    box-shadow: 0 8px 25px var(--accent-glow);
    position: relative;
    overflow: hidden;
}

    .btn-primary:hover[b-gh6fuyhtye] {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(46, 231, 201, 0.4);
        color: #041013;
        text-decoration: none;
    }

    .btn-primary:active[b-gh6fuyhtye] {
        transform: translateY(0);
    }

    .btn-primary:focus[b-gh6fuyhtye] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(46, 231, 201, 0.3), 0 8px 25px var(--accent-glow);
    }

    .btn-primary[b-gh6fuyhtye]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.6s ease;
    }

    .btn-primary:hover[b-gh6fuyhtye]::before {
        left: 100%;
    }

/* Message Box */
.message-box[b-gh6fuyhtye] {
    background: rgba(46, 231, 201, 0.08);
    border: 1px solid rgba(46, 231, 201, 0.2);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .confirmation-container[b-gh6fuyhtye] {
        padding: 1rem;
    }

    .confirmation-card[b-gh6fuyhtye] {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .btn[b-gh6fuyhtye] {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .confirmation-card[b-gh6fuyhtye] {
        padding: 1.5rem 1.25rem;
        margin: 0.5rem;
    }

    .confirmation-icon[b-gh6fuyhtye] {
        margin-bottom: 1rem;
    }

    .confirmation-card h1[b-gh6fuyhtye] {
        margin-bottom: 1.25rem;
    }

    .confirmation-card p[b-gh6fuyhtye] {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .btn[b-gh6fuyhtye] {
        padding: 0.875rem 1.5rem;
        min-width: auto;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .confirmation-container[b-gh6fuyhtye],
    .confirmation-icon[b-gh6fuyhtye],
    .btn[b-gh6fuyhtye] {
        animation: none !important;
        transition: none !important;
    }

        .btn:hover[b-gh6fuyhtye] {
            transform: none;
        }

    .btn-primary[b-gh6fuyhtye]::before {
        display: none;
    }
}

/* High contrast support */
@media (prefers-contrast: high) {
    .confirmation-card[b-gh6fuyhtye] {
        border: 2px solid var(--text);
        background: transparent;
    }

    .message-box[b-gh6fuyhtye] {
        border: 2px solid var(--accent);
        background: transparent;
    }
}
/* _content/MoneyAppsV4/Components/Account/Pages/Login.razor.rz.scp.css */
/* Fonts (placeholders for URLs) */
@font-face {
    font-family: "Onest";
    src: url("/fonts/Onest-Regular.ttf");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: url("/fonts/Onest-Regular.ttf");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: url("/fonts/Onest-Regular.ttf");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: url("/fonts/Onest-Regular.ttf");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* CSS variables */
:root[b-f4k2ellijv] {
    /* Colors */
    --bg: #0b0f12; /* page background */
    --panel: #0f1418; /* panel / card */
    --muted: #9aa8b6; /* secondary text */
    --text: #e6eef8; /* main text */
    --accent: #3fe1c9; /* primary accent */
    --accent-600: #2ecdb0;
    --danger: #ff6b6b;
    --glass: rgba(255,255,255,0.03);
    /* Typography */
    --ff: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    --step-0: clamp(0.8rem, 0.75rem + 0.2vw, 0.9rem);
    --step-1: clamp(1rem, 0.95rem + 0.3vw, 1.1rem);
    --step-2: clamp(1.125rem, 1.05rem + 0.6vw, 1.25rem);
    --step-3: clamp(1.375rem, 1.25rem + 0.8vw, 1.625rem);
    --step-4: clamp(1.75rem, 1.6rem + 1.2vw, 2rem);
    --step-5: clamp(2.25rem, 2rem + 1.6vw, 2.75rem);
    /* Layout */
    --radius: 0.75rem;
    --radius-sm: 0.5rem;
    --gap: 1rem;
    --focus-ring: 0 0 0 0.2rem rgba(63,225,201,0.18);
    /* Misc */
    --glass-border: rgba(255,255,255,0.03);
    --transition: 180ms cubic-bezier(.2,.9,.2,1);
    --transition-smooth: 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Base reset */
*[b-f4k2ellijv],
*[b-f4k2ellijv]::before,
*[b-f4k2ellijv]::after {
    box-sizing: border-box;
}

html[b-f4k2ellijv] {
    height: 100%;
    scroll-behavior: smooth;
}

body[b-f4k2ellijv] {
    min-height: 100%;
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--ff);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.35;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
}

/* Container */
.login-container[b-f4k2ellijv] {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: radial-gradient(1200px 400px at 10% 20%, rgba(63,225,201,0.06), transparent 8%), radial-gradient(900px 320px at 90% 80%, rgba(63,225,201,0.03), transparent 8%);
    animation: fadeInScale-b-f4k2ellijv 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes fadeInScale-b-f4k2ellijv {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Login card */
.login-card[b-f4k2ellijv] {
    background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 18px rgba(2,6,8,0.35);
    width: 100%;
    max-width: 28rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: cardSlideIn-b-f4k2ellijv 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}

@keyframes cardSlideIn-b-f4k2ellijv {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.login-card:hover[b-f4k2ellijv] {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 12px 30px rgba(2,6,8,0.45), 0 0 0 1px rgba(63,225,201,0.1);
}

.login-card[b-f4k2ellijv]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transition: var(--transition-smooth);
}

.login-card:hover[b-f4k2ellijv]::before {
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent), transparent);
    height: 2px;
}

/* Header */
.login-header[b-f4k2ellijv] {
    text-align: center;
    margin-bottom: 2rem;
    animation: headerSlideDown-b-f4k2ellijv 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

@keyframes headerSlideDown-b-f4k2ellijv {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-title[b-f4k2ellijv] {
    font-size: var(--step-5);
    font-weight: 800;
    color: var(--text);
    margin: 0 0 0.5rem 0;
    line-height: 1.1;
    transition: var(--transition-smooth);
}

.login-subtitle[b-f4k2ellijv] {
    color: var(--muted);
    font-size: var(--step-1);
    margin: 0;
    animation: fadeInUp-b-f4k2ellijv 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

@keyframes fadeInUp-b-f4k2ellijv {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form styles */
.login-form[b-f4k2ellijv] {
    display: grid;
    gap: 1.25rem;
    animation: formSlideIn-b-f4k2ellijv 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

@keyframes formSlideIn-b-f4k2ellijv {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group[b-f4k2ellijv] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label[b-f4k2ellijv] {
    color: var(--text);
    font-size: var(--step-0);
    font-weight: 600;
    display: block;
    transition: all var(--transition-smooth);
    transform-origin: left center;
}

.form-group:focus-within .form-label[b-f4k2ellijv] {
    color: var(--accent);
    transform: translateX(5px);
}

.form-input[b-f4k2ellijv] {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text);
    font-size: var(--step-1);
    font-family: var(--ff);
    transition: all var(--transition-smooth);
    transform: translateZ(0);
    backdrop-filter: blur(4px);
}

    .form-input:hover[b-f4k2ellijv] {
        background: rgba(255,255,255,0.04);
        border-color: rgba(255,255,255,0.12);
        transform: translateY(-1px);
    }

    .form-input:focus[b-f4k2ellijv] {
        outline: none;
        border-color: var(--accent);
        box-shadow: var(--focus-ring), 0 8px 20px rgba(63,225,201,0.15);
        background: rgba(255,255,255,0.05);
        transform: translateY(-2px) scale(1.01);
    }

    .form-input[b-f4k2ellijv]::placeholder {
        color: rgba(255,255,255,0.3);
        transition: var(--transition-smooth);
    }

    .form-input:focus[b-f4k2ellijv]::placeholder {
        color: rgba(255,255,255,0.2);
        transform: translateX(5px);
    }

/* Checkbox */
.checkbox-group[b-f4k2ellijv] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.5rem 0;
    transition: var(--transition-smooth);
}

    .checkbox-group:hover[b-f4k2ellijv] {
        transform: translateX(3px);
    }

.checkbox-input[b-f4k2ellijv] {
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 0.25rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    appearance: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    transform: translateZ(0);
}

    .checkbox-input:hover[b-f4k2ellijv] {
        background: rgba(255,255,255,0.05);
        border-color: rgba(255,255,255,0.15);
        transform: scale(1.1);
    }

    .checkbox-input:checked[b-f4k2ellijv] {
        background: var(--accent);
        border-color: var(--accent);
        transform: scale(1.1);
    }

        .checkbox-input:checked[b-f4k2ellijv]::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #041013;
            font-weight: bold;
            font-size: 0.75rem;
        }

.checkbox-label[b-f4k2ellijv] {
    color: var(--muted);
    font-size: var(--step-0);
    cursor: pointer;
    user-select: none;
    transition: var(--transition-smooth);
}

.checkbox-group:hover .checkbox-label[b-f4k2ellijv] {
    color: var(--text);
}

/* Buttons */
.btn[b-f4k2ellijv] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: var(--step-1);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: 1px solid transparent;
    text-decoration: none;
    user-select: none;
    font-weight: 600;
    width: 100%;
    transform: translateZ(0);
    position: relative;
    overflow: hidden;
}

    .btn:focus[b-f4k2ellijv] {
        outline: none;
        box-shadow: var(--focus-ring);
    }

.btn-primary[b-f4k2ellijv] {
    background: linear-gradient(180deg, var(--accent), var(--accent-600));
    color: #041013;
    box-shadow: 0 6px 18px rgba(46,205,176,0.12), 0 1px 0 rgba(255,255,255,0.02) inset;
    border-color: rgba(255,255,255,0.03);
    margin-top: 1.5rem;
    animation: buttonSlideIn-b-f4k2ellijv 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

@keyframes buttonSlideIn-b-f4k2ellijv {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.btn-primary:hover[b-f4k2ellijv] {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(46,205,176,0.2), 0 1px 0 rgba(255,255,255,0.02) inset;
}

.btn-primary:active[b-f4k2ellijv] {
    transform: translateY(0) scale(0.98);
}

/* Ripple effect for button */
.btn-primary[b-f4k2ellijv]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:active[b-f4k2ellijv]::after {
    width: 300px;
    height: 300px;
}

/* Links */
.login-links[b-f4k2ellijv] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    animation: fadeIn-b-f4k2ellijv 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

@keyframes fadeIn-b-f4k2ellijv {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.login-link[b-f4k2ellijv] {
    color: var(--accent);
    text-decoration: none;
    font-size: var(--step-0);
    transition: all var(--transition-smooth);
    text-align: center;
    position: relative;
}

    .login-link:hover[b-f4k2ellijv] {
        color: var(--accent-600);
        transform: translateY(-1px);
    }

    .login-link[b-f4k2ellijv]::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--accent);
        transition: width 0.3s ease;
    }

    .login-link:hover[b-f4k2ellijv]::after {
        width: 100%;
    }

/* External login section */
.external-login-section[b-f4k2ellijv] {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    animation: fadeIn-b-f4k2ellijv 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s both;
}

.external-login-title[b-f4k2ellijv] {
    font-size: var(--step-2);
    color: var(--text);
    margin: 0 0 1rem 0;
    text-align: center;
}

.external-login-picker[b-f4k2ellijv] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Validation and status messages */
.validation-message[b-f4k2ellijv] {
    color: var(--danger);
    font-size: var(--step-0);
    margin-top: 0.25rem;
    animation: shake-b-f4k2ellijv 0.5s ease-in-out;
}

@keyframes shake-b-f4k2ellijv {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.validation-summary[b-f4k2ellijv] {
    background: rgba(255,107,107,0.05);
    border: 1px solid rgba(255,107,107,0.2);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 1.5rem;
    animation: slideInUp-b-f4k2ellijv 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideInUp-b-f4k2ellijv {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.validation-summary ul[b-f4k2ellijv] {
    margin: 0;
    padding-left: 1rem;
}

.status-message[b-f4k2ellijv] {
    background: rgba(63,225,201,0.05);
    border: 1px solid rgba(63,225,201,0.2);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    animation: slideInUp-b-f4k2ellijv 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Responsive */
@media (max-width: 48rem) {
    .login-container[b-f4k2ellijv] {
        padding: 1rem;
    }

    .login-card[b-f4k2ellijv] {
        padding: 1.5rem;
    }

    .login-title[b-f4k2ellijv] {
        font-size: var(--step-4);
    }

    .form-input:hover[b-f4k2ellijv] {
        transform: none;
    }

    .form-input:focus[b-f4k2ellijv] {
        transform: scale(1.01);
    }

    .login-card:hover[b-f4k2ellijv] {
        transform: none;
    }
}

/* Utility classes */
.text-center[b-f4k2ellijv] {
    text-align: center;
}

.mb-3[b-f4k2ellijv] {
    margin-bottom: 1rem;
}

.mt-3[b-f4k2ellijv] {
    margin-top: 1rem;
}

/* Focus styles for accessibility */
button:focus-visible[b-f4k2ellijv],
input:focus-visible[b-f4k2ellijv],
a:focus-visible[b-f4k2ellijv] {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *[b-f4k2ellijv] {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* _content/MoneyAppsV4/Components/Account/Pages/PersonalAccount.razor.rz.scp.css */
/* ===== PERSONAL ACCOUNT STYLES ===== */

/* === Container & Layout === */
.personal-account-container[b-72hinw64i4] {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    padding: clamp(0.5rem, 2vw, 2rem);
    animation: fadeInScale-b-72hinw64i4 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.account-grid[b-72hinw64i4] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

/* === Header Section === */
.account-header[b-72hinw64i4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
    padding-bottom: clamp(1rem, 2vw, 1.5rem);
    border-bottom: 1px solid var(--glass-border);
    animation: slideDown-b-72hinw64i4 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.welcome-title[b-72hinw64i4] {
    font-size: clamp(1.5rem, 6vw, 3rem);
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 50%, #a6ffec 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    word-break: break-word;
    text-shadow: 0 2px 10px rgba(46, 231, 201, 0.2);
}

.welcome-subtitle[b-72hinw64i4] {
    color: var(--muted);
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin: 0;
    line-height: 1.4;
}

.header-actions[b-72hinw64i4] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    width: 100%;
}

/* === Buttons === */
.btn-withdraw[b-72hinw64i4] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #3fe1c9;
    background: var(--gradient-primary);
    border: none;
    border-radius: 1rem;
    text-decoration: none;
    box-shadow: 0 8px 25px var(--accent-glow), 0 2px 8px rgba(46, 231, 201, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-width: 200px;
    justify-content: center;
    transform: translateY(0);
    animation: gentlePulse-b-72hinw64i4 4s ease-in-out infinite;
}

    .btn-withdraw[b-72hinw64i4]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.6s ease;
    }

    .btn-withdraw:hover[b-72hinw64i4] {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(46, 231, 201, 0.5), 0 4px 12px rgba(46, 231, 201, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
        color: #3fe1c9;
        text-decoration: none;
    }

        .btn-withdraw:hover[b-72hinw64i4]::before {
            left: 100%;
        }

    .btn-withdraw:active[b-72hinw64i4] {
        transform: translateY(-1px);
        box-shadow: 0 8px 25px rgba(46, 231, 201, 0.4);
    }

    .btn-withdraw:focus[b-72hinw64i4] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(46, 231, 201, 0.3), 0 8px 25px var(--accent-glow);
    }

    .btn-withdraw .btn-icon[b-72hinw64i4] {
        transition: all 0.3s ease;
        font-size: 1.2rem;
        filter: drop-shadow(0 2px 3px rgba(4, 16, 19, 0.2));
    }

    .btn-withdraw:hover .btn-icon[b-72hinw64i4] {
        transform: scale(1.15) rotate(5deg);
        filter: drop-shadow(0 3px 5px rgba(4, 16, 19, 0.3));
    }

/* === Balance Cards === */
.balance-card[b-72hinw64i4] {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: clamp(1.25rem, 2vw, 1.75rem);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    min-height: clamp(140px, 18vw, 180px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

    .balance-card[b-72hinw64i4]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
        opacity: 0.6;
    }

    .balance-card:hover[b-72hinw64i4] {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.3), 0 0 0 1px rgba(46, 231, 201, 0.1);
        border-color: rgba(46, 231, 201, 0.2);
    }

.usd-balance[b-72hinw64i4] {
    border-left: 4px solid #3fe1c9;
    background: linear-gradient(135deg, rgba(63, 225, 201, 0.08), rgba(63, 225, 201, 0.02));
}

.doge-balance[b-72hinw64i4] {
    border-left: 4px solid #c2a633;
    background: linear-gradient(135deg, rgba(194, 166, 51, 0.08), rgba(194, 166, 51, 0.02));
}

.balance-icon[b-72hinw64i4] {
    margin-bottom: 0.75rem;
}

    .balance-icon .icon[b-72hinw64i4] {
        font-size: clamp(1.5rem, 3vw, 2.5rem);
        font-weight: 700;
        opacity: 0.9;
    }

.balance-label[b-72hinw64i4] {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    color: var(--muted);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.balance-amount[b-72hinw64i4] {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    color: var(--text);
    font-family: 'Courier New', monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.balance-change[b-72hinw64i4],
.mining-status[b-72hinw64i4] {
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    color: var(--muted);
    line-height: 1.3;
    font-weight: 500;
}

/* === Rate Card === */
.rate-card[b-72hinw64i4] {
    background: linear-gradient(135deg, rgba(194,166,51,0.1), rgba(194,166,51,0.02));
    border: 1px solid rgba(194,166,51,0.2);
    border-radius: var(--radius);
    padding: clamp(1.25rem, 2vw, 1.75rem);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: clamp(160px, 22vw, 220px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(194,166,51,0.1);
}

    .rate-card:hover[b-72hinw64i4] {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(194,166,51,0.15), 0 0 0 1px rgba(194,166,51,0.1);
    }

.rate-header[b-72hinw64i4] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-direction: column;
    gap: 0.5rem;
}

    .rate-header h3[b-72hinw64i4] {
        margin: 0;
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        color: var(--text);
        line-height: 1.3;
        font-weight: 700;
    }

.rate-trend[b-72hinw64i4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    border-radius: 1rem;
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    align-self: flex-start;
    background: rgba(194,166,51,0.15);
    border: 1px solid rgba(194,166,51,0.3);
}

    .rate-trend.positive[b-72hinw64i4] {
        background: rgba(194,166,51,0.2);
        color: #ffd700;
        font-weight: 600;
    }

.rate-content[b-72hinw64i4] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rate-amount[b-72hinw64i4] {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    color: var(--text);
    font-family: 'Courier New', monospace;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.rate-description[b-72hinw64i4] {
    color: var(--muted);
    margin: 0 0 0.25rem 0;
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    line-height: 1.4;
    font-weight: 500;
}

.rate-footer[b-72hinw64i4] {
    border-top: 1px solid rgba(194,166,51,0.1);
    padding-top: 0.75rem;
    margin-top: auto;
}

.rate-update[b-72hinw64i4] {
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    color: var(--muted);
    opacity: 0.8;
}

/* === Info Card === */
.info-card[b-72hinw64i4] {
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: clamp(1.25rem, 2vw, 1.75rem);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: clamp(200px, 25vw, 260px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

    .info-card:hover[b-72hinw64i4] {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.25), 0 0 0 1px rgba(46, 231, 201, 0.1);
    }

    .info-card h3[b-72hinw64i4] {
        margin: 0 0 1rem 0;
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        color: var(--text);
        font-weight: 700;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 0.5rem;
    }

.info-content[b-72hinw64i4] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item[b-72hinw64i4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    flex-wrap: wrap;
    gap: 0.5rem;
}

    .info-item:last-child[b-72hinw64i4] {
        border-bottom: none;
    }

    .info-item.highlight[b-72hinw64i4] {
        background: rgba(46, 231, 201, 0.08);
        margin: 0.5rem -0.75rem -0.75rem;
        padding: 0.75rem;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(46, 231, 201, 0.15);
        font-weight: 600;
    }

.info-label[b-72hinw64i4] {
    color: var(--muted);
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    flex-shrink: 0;
    font-weight: 500;
}

.info-value[b-72hinw64i4] {
    color: var(--text);
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    font-weight: 600;
    text-align: right;
    flex: 1;
    min-width: 120px;
}

/* === Animations === */
@keyframes fadeInScale-b-72hinw64i4 {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideDown-b-72hinw64i4 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gentlePulse-b-72hinw64i4 {
    0%, 100% {
        box-shadow: 0 8px 25px var(--accent-glow), 0 2px 8px rgba(46, 231, 201, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        box-shadow: 0 8px 30px rgba(46, 231, 201, 0.5), 0 2px 12px rgba(46, 231, 201, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

/* === Loading States === */
.loading-container[b-72hinw64i4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    gap: 1rem;
    padding: 2rem;
}

.loading-spinner[b-72hinw64i4] {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.1);
    border-left: 3px solid #c2a633;
    border-radius: 50%;
    animation: spin-b-72hinw64i4 1s linear infinite;
}

@keyframes spin-b-72hinw64i4 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* === RESPONSIVE DESIGN === */

/* === Tablet (768px+) === */
@media (min-width: 768px) {
    .personal-account-container[b-72hinw64i4] {
        padding: 2rem;
    }

    .account-header[b-72hinw64i4] {
        flex-direction: row;
        text-align: left;
        margin-bottom: 3rem;
        padding-bottom: 1.5rem;
        gap: 2rem;
    }

    .header-actions[b-72hinw64i4] {
        width: auto;
        justify-content: flex-end;
    }

    .header-content[b-72hinw64i4] {
        flex: 1;
    }

    .btn-withdraw[b-72hinw64i4] {
        min-width: 180px;
        flex: none;
        max-width: none;
        width: auto;
    }

    .account-grid[b-72hinw64i4] {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .balance-card[b-72hinw64i4] {
        padding: 1.5rem;
        min-height: 160px;
    }

    .rate-card[b-72hinw64i4] {
        padding: 1.5rem;
        min-height: 200px;
    }

    .rate-header[b-72hinw64i4] {
        flex-direction: row;
        align-items: center;
    }

    .info-card[b-72hinw64i4] {
        padding: 1.5rem;
        min-height: 240px;
    }

    /* Hover effects for larger screens */
    .balance-card:hover[b-72hinw64i4] {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .rate-card:hover[b-72hinw64i4] {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(194,166,51,0.1);
    }

    .info-card:hover[b-72hinw64i4] {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }
}

/* === Desktop (1024px+) === */
@media (min-width: 1024px) {
    .account-grid[b-72hinw64i4] {
        grid-template-columns: repeat(2, 1fr);
    }

    .rate-card[b-72hinw64i4],
    .info-card[b-72hinw64i4] {
        grid-column: span 1;
    }
}

/* === Mobile (480px and below) === */
@media (max-width: 480px) {
    .personal-account-container[b-72hinw64i4] {
        padding: 0.5rem;
    }

    .btn-withdraw[b-72hinw64i4] {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        min-width: 180px;
        width: 100%;
        max-width: 280px;
    }

    .balance-card[b-72hinw64i4],
    .rate-card[b-72hinw64i4],
    .info-card[b-72hinw64i4] {
        padding: 1rem;
        min-height: auto;
    }

    .balance-amount[b-72hinw64i4] {
        font-size: 1.1rem;
    }

    .rate-amount[b-72hinw64i4] {
        font-size: 1.3rem;
    }

    .info-item[b-72hinw64i4] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

        .info-item.highlight[b-72hinw64i4] {
            margin: 0.25rem -0.5rem -0.5rem;
            padding: 0.5rem;
        }

    .info-value[b-72hinw64i4] {
        text-align: left;
        min-width: auto;
    }
}

/* === Small Mobile (360px and below) === */
@media (max-width: 360px) {
    .btn-withdraw[b-72hinw64i4] {
        padding: 0.8rem 1.25rem;
        font-size: 0.95rem;
        min-width: 160px;
        max-width: 240px;
    }

    .welcome-title[b-72hinw64i4] {
        font-size: clamp(1.25rem, 7vw, 2.5rem);
    }

    .balance-card[b-72hinw64i4],
    .rate-card[b-72hinw64i4],
    .info-card[b-72hinw64i4] {
        padding: 0.75rem;
    }
}

/* === ACCESSIBILITY & SPECIAL CASES === */

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .balance-card:hover[b-72hinw64i4],
    .rate-card:hover[b-72hinw64i4],
    .info-card:hover[b-72hinw64i4],
    .btn-withdraw:hover[b-72hinw64i4] {
        transform: none;
    }

    .btn-withdraw:active[b-72hinw64i4] {
        background: rgba(255,255,255,0.08);
        transform: scale(0.98);
    }
}

/* High contrast support */
@media (prefers-contrast: high) {
    .balance-card[b-72hinw64i4],
    .rate-card[b-72hinw64i4],
    .info-card[b-72hinw64i4] {
        border: 2px solid var(--text);
        background: transparent;
    }

    .balance-change[b-72hinw64i4],
    .mining-status[b-72hinw64i4],
    .rate-description[b-72hinw64i4],
    .rate-update[b-72hinw64i4],
    .info-label[b-72hinw64i4] {
        color: var(--text);
        opacity: 0.8;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .personal-account-container[b-72hinw64i4],
    .account-header[b-72hinw64i4],
    .balance-card[b-72hinw64i4],
    .rate-card[b-72hinw64i4],
    .info-card[b-72hinw64i4],
    .btn-withdraw[b-72hinw64i4] {
        animation: none !important;
        transition: none !important;
    }
}

/* Dark mode optimizations */
@media (prefers-color-scheme: dark) {
    .balance-card[b-72hinw64i4],
    .rate-card[b-72hinw64i4],
    .info-card[b-72hinw64i4] {
        background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    }
}

/* Print styles */
@media print {
    .personal-account-container[b-72hinw64i4] {
        background: white;
        color: black;
        padding: 0;
    }

    .balance-card[b-72hinw64i4],
    .rate-card[b-72hinw64i4],
    .info-card[b-72hinw64i4] {
        background: white;
        border: 1px solid #ccc;
        box-shadow: none;
    }

    .btn-withdraw[b-72hinw64i4] {
        display: none;
    }
}
/* _content/MoneyAppsV4/Components/Account/Pages/Register.razor.rz.scp.css */
/* PREMIUM FINTECH UI */

/* ---------------------------- */
/* 1. FONTS */
/* ---------------------------- */
@font-face {
    font-family: "Onest";
    src: url("/fonts/Onest-Regular.ttf");
    font-weight: 100 900;
    font-display: swap;
}

/* ---------------------------- */
/* 2. ROOT VARIABLES */
/* ---------------------------- */
:root[b-biroepirc1] {
    --bg: #070a0c;
    --bg-gradient: radial-gradient(circle at 20% 30%, rgba(63,225,201,0.08), transparent 40%), radial-gradient(circle at 80% 80%, rgba(63,225,201,0.04), transparent 50%);
    --panel: rgba(255,255,255,0.04);
    --panel-border: rgba(255,255,255,0.08);
    --text: #e9f2ff;
    --muted: #91a3b4;
    --accent: #3fe1c9;
    --accent-600: #29b8a1;
    --danger: #ff6b6b;
    --ff: "Onest", system-ui;
    --radius: 1rem;
    --radius-sm: 0.65rem;
    --transition: 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-1: 0 8px 25px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 25px rgba(63,225,201,0.2);
    --focus-glow: 0 0 12px rgba(63, 225, 201, 0.65);
    --step-0: clamp(0.85rem, 0.8rem + 0.2vw, 1rem);
    --step-1: clamp(1rem, 0.95rem + 0.35vw, 1.15rem);
    --step-2: clamp(1.25rem, 1.1rem + 0.5vw, 1.35rem);
    --step-3: clamp(1.6rem, 1.45rem + 0.8vw, 1.9rem);
    --step-4: clamp(2rem, 1.7rem + 1vw, 2.35rem);
}

/* ---------------------------- */
/* 3. BASE RESET */
/* ---------------------------- */
*[b-biroepirc1],
*[b-biroepirc1]::before,
*[b-biroepirc1]::after {
    box-sizing: border-box;
}

html[b-biroepirc1] {
    scroll-behavior: smooth;
}

body[b-biroepirc1] {
    margin: 0;
    font-family: var(--ff);
    background: var(--bg-gradient), var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---------------------------- */
/* 4. CONTAINER */
/* ---------------------------- */
.login-container[b-biroepirc1] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    animation: fadeIn-b-biroepirc1 0.8s ease-out;
}

@keyframes fadeIn-b-biroepirc1 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------------------------- */
/* 5. CARD */
/* ---------------------------- */
.login-card[b-biroepirc1] {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--panel-border);
    backdrop-filter: blur(14px) saturate(180%);
    border-radius: var(--radius);
    box-shadow: var(--shadow-1);
    width: 100%;
    max-width: 32rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .login-card[b-biroepirc1]::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 2px;
        background: linear-gradient(135deg, rgba(63,225,201,0.55), rgba(63,225,201,0.08), transparent);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
        transition: var(--transition);
    }

    .login-card:hover[b-biroepirc1]::before {
        background: linear-gradient(135deg, rgba(63,225,201,0.65), rgba(63,225,201,0.15), transparent);
    }

/* ---------------------------- */
/* 6. HEADER */
/* ---------------------------- */
.login-header[b-biroepirc1] {
    text-align: center;
    margin-bottom: 2.2rem;
    animation: slideDown-b-biroepirc1 0.6s ease-out 0.1s both;
}

@keyframes slideDown-b-biroepirc1 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-title[b-biroepirc1] {
    font-size: var(--step-4);
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.login-subtitle[b-biroepirc1] {
    font-size: var(--step-1);
    color: var(--muted);
    animation: fadeIn-b-biroepirc1 0.8s ease-out 0.2s both;
}

/* ---------------------------- */
/* 7. FORM */
/* ---------------------------- */
.login-form[b-biroepirc1] {
    display: grid;
    gap: 1.35rem;
    animation: fadeIn-b-biroepirc1 0.8s ease-out 0.3s both;
}

/* FORM GROUP */
.form-group[b-biroepirc1] {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

/* LABEL */
.form-label[b-biroepirc1] {
    font-size: var(--step-0);
    color: var(--muted);
    transition: var(--transition);
    transform-origin: left center;
}

.form-group:focus-within .form-label[b-biroepirc1] {
    color: var(--accent);
    transform: translateX(5px);
}

/* INPUT */
.form-input[b-biroepirc1] {
    padding: 0.85rem 1.1rem;
    font-size: var(--step-1);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    color: var(--text);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(6px);
    transform: translateZ(0);
}

    .form-input:hover[b-biroepirc1] {
        background: rgba(255,255,255,0.07);
        border-color: rgba(255,255,255,0.18);
        transform: translateY(-1px);
    }

    .form-input:focus[b-biroepirc1] {
        border-color: var(--accent);
        box-shadow: var(--focus-glow);
        outline: none;
        background: rgba(255,255,255,0.09);
        transform: translateY(-2px) scale(1.01);
    }

    .form-input[b-biroepirc1]::placeholder {
        color: rgba(255,255,255,0.35);
        transition: var(--transition);
    }

    .form-input:focus[b-biroepirc1]::placeholder {
        color: rgba(255,255,255,0.2);
        transform: translateX(5px);
    }

/* ---------------------------- */
/* 8. BUTTONS */
/* ---------------------------- */
.btn[b-biroepirc1] {
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: 0;
    cursor: pointer;
    font-size: var(--step-1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateZ(0);
    position: relative;
    overflow: hidden;
    width: 100%; /* Растягиваем кнопку по ширине */
    display: block; /* Делаем блочным элементом */
}

.btn-primary[b-biroepirc1] {
    background: linear-gradient(180deg, var(--accent), var(--accent-600));
    color: #041013;
    box-shadow: 0 10px 25px rgba(63,225,201,0.22);
    margin-top: 2rem; /* Увеличиваем отступ сверху */
}

    .btn-primary:hover[b-biroepirc1] {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 14px 32px rgba(63,225,201,0.35);
    }

    .btn-primary:active[b-biroepirc1] {
        transform: translateY(0) scale(0.98);
    }

    .btn-primary[b-biroepirc1]::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn-primary:active[b-biroepirc1]::after {
        width: 300px;
        height: 300px;
    }

/* ---------------------------- */
/* 9. LINKS */
/* ---------------------------- */
.login-links[b-biroepirc1] {
    text-align: center;
    margin-top: 2rem; /* Увеличиваем отступ сверху для ссылок */
    animation: fadeIn-b-biroepirc1 0.8s ease-out 0.4s both;
}

    .login-links a[b-biroepirc1] {
        color: var(--muted);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        text-decoration: none;
        position: relative;
    }

        .login-links a:hover[b-biroepirc1] {
            color: var(--accent);
            transform: translateY(-1px);
        }

        .login-links a[b-biroepirc1]::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .login-links a:hover[b-biroepirc1]::after {
            width: 100%;
        }

/* ---------------------------- */
/* 10. EXTERNAL LOGIN */
/* ---------------------------- */
.external-login-section[b-biroepirc1] {
    margin-top: 2.5rem;
    text-align: center;
    animation: fadeIn-b-biroepirc1 0.8s ease-out 0.5s both;
}

.external-login-title[b-biroepirc1] {
    font-size: var(--step-2);
    margin-bottom: 1rem;
    color: var(--text);
}

/* ---------------------------- */
/* 11. VALIDATION */
/* ---------------------------- */
.validation-message[b-biroepirc1] {
    color: var(--danger);
    font-size: var(--step-0);
    animation: shake-b-biroepirc1 0.5s ease-in-out;
}

@keyframes shake-b-biroepirc1 {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

/* ---------------------------- */
/* 12. FORM SUBMIT BUTTON SPECIFIC STYLES */
/* ---------------------------- */
.form-submit[b-biroepirc1] {
    margin-top: 2.5rem; /* Дополнительный отступ для кнопки отправки формы */
}

/* ---------------------------- */
/* 13. RESPONSIVE */
/* ---------------------------- */
@media (max-width: 500px) {
    .login-card[b-biroepirc1] {
        padding: 1.8rem;
    }

    .login-title[b-biroepirc1] {
        font-size: var(--step-3);
    }

    .form-input:hover[b-biroepirc1] {
        transform: none;
    }

    .form-input:focus[b-biroepirc1] {
        transform: scale(1.01);
    }

    .btn-primary[b-biroepirc1] {
        margin-top: 1.5rem; /* Немного уменьшаем отступ на мобильных */
    }
}

/* Плавная анимация для всех интерактивных элементов */
@media (prefers-reduced-motion: no-preference) {
    *[b-biroepirc1] {
        scroll-behavior: smooth;
    }
}
/* _content/MoneyAppsV4/Components/Account/Pages/RegisterConfirmation.razor.rz.scp.css */
/* ===== REGISTER CONFIRMATION STYLES ===== */
.confirmation-container[b-0pod8k1cvf] {
    min-height: 100vh;
    color: var(--text);
    padding: clamp(1rem, 3vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInScale 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.confirmation-card[b-0pod8k1cvf] {
    background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: clamp(2rem, 5vw, 3rem);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 580px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

    .confirmation-card[b-0pod8k1cvf]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
        opacity: 0.6;
    }

.confirmation-icon[b-0pod8k1cvf] {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: gentlePulse 3s ease-in-out infinite;
}

.confirmation-card h1[b-0pod8k1cvf] {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    margin: 0 0 1.5rem 0;
    background: linear-gradient(135deg, var(--text), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    text-align: center;
}

.confirmation-card p[b-0pod8k1cvf] {
    color: var(--muted);
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.confirmation-card strong[b-0pod8k1cvf] {
    color: var(--accent);
    font-weight: 600;
}

.confirmation-card a[b-0pod8k1cvf] {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition);
    border-bottom: 1px solid transparent;
}

    .confirmation-card a:hover[b-0pod8k1cvf] {
        color: var(--accent-600);
        border-bottom-color: var(--accent);
    }

/* Actions Section */
.confirmation-actions[b-0pod8k1cvf] {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn[b-0pod8k1cvf] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: var(--step-0);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 600;
    min-width: 140px;
}

.btn-primary[b-0pod8k1cvf] {
    background: var(--gradient-primary);
    color: #041013;
    box-shadow: 0 8px 25px var(--accent-glow);
    position: relative;
    overflow: hidden;
}

    .btn-primary:hover[b-0pod8k1cvf] {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(46, 231, 201, 0.4);
        color: #041013;
    }

    .btn-primary:active[b-0pod8k1cvf] {
        transform: translateY(0);
    }

    .btn-primary[b-0pod8k1cvf]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.6s ease;
    }

    .btn-primary:hover[b-0pod8k1cvf]::before {
        left: 100%;
    }

.btn-secondary[b-0pod8k1cvf] {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

    .btn-secondary:hover[b-0pod8k1cvf] {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        color: var(--text);
    }

/* Email Highlight */
.email-highlight[b-0pod8k1cvf] {
    background: rgba(46, 231, 201, 0.1);
    border: 1px solid rgba(46, 231, 201, 0.2);
    border-radius: var(--radius-sm);
    padding: 0.25rem 0.5rem;
    margin: 0 0.25rem;
    font-weight: 600;
}

/* Info Box */
.info-box[b-0pod8k1cvf] {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 2rem 0;
    backdrop-filter: blur(5px);
}

    .info-box p[b-0pod8k1cvf] {
        margin-bottom: 1rem;
    }

        .info-box p:last-child[b-0pod8k1cvf] {
            margin-bottom: 0;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .confirmation-container[b-0pod8k1cvf] {
        padding: 1rem;
    }

    .confirmation-card[b-0pod8k1cvf] {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .confirmation-actions[b-0pod8k1cvf] {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .btn[b-0pod8k1cvf] {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .confirmation-card[b-0pod8k1cvf] {
        padding: 1.5rem 1.25rem;
        margin: 0.5rem;
    }

    .confirmation-icon[b-0pod8k1cvf] {
        margin-bottom: 1rem;
    }

    .confirmation-card h1[b-0pod8k1cvf] {
        margin-bottom: 1.25rem;
    }

    .confirmation-card p[b-0pod8k1cvf] {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .info-box[b-0pod8k1cvf] {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }
}

/* Animation for the email text */
@keyframes highlightPulse-b-0pod8k1cvf {
    0%, 100% {
        background: rgba(46, 231, 201, 0.1);
        border-color: rgba(46, 231, 201, 0.2);
    }

    50% {
        background: rgba(46, 231, 201, 0.15);
        border-color: rgba(46, 231, 201, 0.3);
    }
}

.email-highlight[b-0pod8k1cvf] {
    animation: highlightPulse-b-0pod8k1cvf 4s ease-in-out infinite;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .confirmation-container[b-0pod8k1cvf],
    .confirmation-icon[b-0pod8k1cvf],
    .btn[b-0pod8k1cvf] {
        animation: none !important;
        transition: none !important;
    }

        .btn:hover[b-0pod8k1cvf] {
            transform: none;
        }

    .btn-primary[b-0pod8k1cvf]::before {
        display: none;
    }

    .email-highlight[b-0pod8k1cvf] {
        animation: none;
    }
}

/* High contrast support */
@media (prefers-contrast: high) {
    .confirmation-card[b-0pod8k1cvf] {
        border: 2px solid var(--text);
        background: transparent;
    }

    .btn-secondary[b-0pod8k1cvf] {
        border: 2px solid var(--text);
        background: transparent;
    }

    .info-box[b-0pod8k1cvf] {
        border: 2px solid var(--accent);
        background: transparent;
    }
}
/* _content/MoneyAppsV4/Components/Account/Pages/ResetPassword.razor.rz.scp.css */
/* PREMIUM FINTECH UI */

/* ---------------------------- */
/* 1. FONTS */
/* ---------------------------- */
@font-face {
    font-family: "Onest";
    src: url("/fonts/Onest-Regular.ttf");
    font-weight: 100 900;
    font-display: swap;
}

/* ---------------------------- */
/* 2. ROOT VARIABLES */
/* ---------------------------- */
:root[b-xw5vkzc78s] {
    --bg: #070a0c;
    --bg-gradient: radial-gradient(circle at 20% 30%, rgba(63,225,201,0.08), transparent 40%), radial-gradient(circle at 80% 80%, rgba(63,225,201,0.04), transparent 50%);
    --panel: rgba(255,255,255,0.04);
    --panel-border: rgba(255,255,255,0.08);
    --text: #e9f2ff;
    --muted: #91a3b4;
    --accent: #3fe1c9;
    --accent-600: #29b8a1;
    --danger: #ff6b6b;
    --ff: "Onest", system-ui;
    --radius: 1rem;
    --radius-sm: 0.65rem;
    --transition: 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-1: 0 8px 25px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 25px rgba(63,225,201,0.2);
    --focus-glow: 0 0 12px rgba(63, 225, 201, 0.65);
    --step-0: clamp(0.85rem, 0.8rem + 0.2vw, 1rem);
    --step-1: clamp(1rem, 0.95rem + 0.35vw, 1.15rem);
    --step-2: clamp(1.25rem, 1.1rem + 0.5vw, 1.35rem);
    --step-3: clamp(1.6rem, 1.45rem + 0.8vw, 1.9rem);
    --step-4: clamp(2rem, 1.7rem + 1vw, 2.35rem);
}

/* ---------------------------- */
/* 3. BASE RESET */
/* ---------------------------- */
*[b-xw5vkzc78s],
*[b-xw5vkzc78s]::before,
*[b-xw5vkzc78s]::after {
    box-sizing: border-box;
}

html[b-xw5vkzc78s] {
    scroll-behavior: smooth;
}

body[b-xw5vkzc78s] {
    margin: 0;
    font-family: var(--ff);
    background: var(--bg-gradient), var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---------------------------- */
/* 4. CONTAINER */
/* ---------------------------- */
.login-container[b-xw5vkzc78s] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    animation: fadeIn-b-xw5vkzc78s 0.8s ease-out;
}

@keyframes fadeIn-b-xw5vkzc78s {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------------------------- */
/* 5. CARD */
/* ---------------------------- */
.login-card[b-xw5vkzc78s] {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--panel-border);
    backdrop-filter: blur(14px) saturate(180%);
    border-radius: var(--radius);
    box-shadow: var(--shadow-1);
    width: 100%;
    max-width: 32rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .login-card[b-xw5vkzc78s]::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 2px;
        background: linear-gradient(135deg, rgba(63,225,201,0.55), rgba(63,225,201,0.08), transparent);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
        transition: var(--transition);
    }

    .login-card:hover[b-xw5vkzc78s]::before {
        background: linear-gradient(135deg, rgba(63,225,201,0.65), rgba(63,225,201,0.15), transparent);
    }

/* ---------------------------- */
/* 6. HEADER */
/* ---------------------------- */
.login-header[b-xw5vkzc78s] {
    text-align: center;
    margin-bottom: 2.2rem;
    animation: slideDown-b-xw5vkzc78s 0.6s ease-out 0.1s both;
}

@keyframes slideDown-b-xw5vkzc78s {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-title[b-xw5vkzc78s] {
    font-size: var(--step-4);
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.login-subtitle[b-xw5vkzc78s] {
    font-size: var(--step-1);
    color: var(--muted);
    animation: fadeIn-b-xw5vkzc78s 0.8s ease-out 0.2s both;
}

/* ---------------------------- */
/* 7. FORM */
/* ---------------------------- */
.login-form[b-xw5vkzc78s] {
    display: grid;
    gap: 1.35rem;
    animation: fadeIn-b-xw5vkzc78s 0.8s ease-out 0.3s both;
}

/* FORM GROUP */
.form-group[b-xw5vkzc78s] {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

/* LABEL */
.form-label[b-xw5vkzc78s] {
    font-size: var(--step-0);
    color: var(--muted);
    transition: var(--transition);
    transform-origin: left center;
}

.form-group:focus-within .form-label[b-xw5vkzc78s] {
    color: var(--accent);
    transform: translateX(5px);
}

/* INPUT */
.form-input[b-xw5vkzc78s] {
    padding: 0.85rem 1.1rem;
    font-size: var(--step-1);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    color: var(--text);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(6px);
    transform: translateZ(0);
}

    .form-input:hover[b-xw5vkzc78s] {
        background: rgba(255,255,255,0.07);
        border-color: rgba(255,255,255,0.18);
        transform: translateY(-1px);
    }

    .form-input:focus[b-xw5vkzc78s] {
        border-color: var(--accent);
        box-shadow: var(--focus-glow);
        outline: none;
        background: rgba(255,255,255,0.09);
        transform: translateY(-2px) scale(1.01);
    }

    .form-input[b-xw5vkzc78s]::placeholder {
        color: rgba(255,255,255,0.35);
        transition: var(--transition);
    }

    .form-input:focus[b-xw5vkzc78s]::placeholder {
        color: rgba(255,255,255,0.2);
        transform: translateX(5px);
    }

/* ---------------------------- */
/* 8. BUTTONS */
/* ---------------------------- */
.btn[b-xw5vkzc78s] {
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: 0;
    cursor: pointer;
    font-size: var(--step-1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateZ(0);
    position: relative;
    overflow: hidden;
    width: 100%; /* Растягиваем кнопку по ширине */
    display: block; /* Делаем блочным элементом */
}

.btn-primary[b-xw5vkzc78s] {
    background: linear-gradient(180deg, var(--accent), var(--accent-600));
    color: #041013;
    box-shadow: 0 10px 25px rgba(63,225,201,0.22);
    margin-top: 2rem; /* Увеличиваем отступ сверху */
}

    .btn-primary:hover[b-xw5vkzc78s] {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 14px 32px rgba(63,225,201,0.35);
    }

    .btn-primary:active[b-xw5vkzc78s] {
        transform: translateY(0) scale(0.98);
    }

    .btn-primary[b-xw5vkzc78s]::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn-primary:active[b-xw5vkzc78s]::after {
        width: 300px;
        height: 300px;
    }

/* ---------------------------- */
/* 9. LINKS */
/* ---------------------------- */
.login-links[b-xw5vkzc78s] {
    text-align: center;
    margin-top: 2rem; /* Увеличиваем отступ сверху для ссылок */
    animation: fadeIn-b-xw5vkzc78s 0.8s ease-out 0.4s both;
}

    .login-links a[b-xw5vkzc78s] {
        color: var(--muted);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        text-decoration: none;
        position: relative;
    }

        .login-links a:hover[b-xw5vkzc78s] {
            color: var(--accent);
            transform: translateY(-1px);
        }

        .login-links a[b-xw5vkzc78s]::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .login-links a:hover[b-xw5vkzc78s]::after {
            width: 100%;
        }

/* ---------------------------- */
/* 10. EXTERNAL LOGIN */
/* ---------------------------- */
.external-login-section[b-xw5vkzc78s] {
    margin-top: 2.5rem;
    text-align: center;
    animation: fadeIn-b-xw5vkzc78s 0.8s ease-out 0.5s both;
}

.external-login-title[b-xw5vkzc78s] {
    font-size: var(--step-2);
    margin-bottom: 1rem;
    color: var(--text);
}

/* ---------------------------- */
/* 11. VALIDATION */
/* ---------------------------- */
.validation-message[b-xw5vkzc78s] {
    color: var(--danger);
    font-size: var(--step-0);
    animation: shake-b-xw5vkzc78s 0.5s ease-in-out;
}

@keyframes shake-b-xw5vkzc78s {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

/* ---------------------------- */
/* 12. FORM SUBMIT BUTTON SPECIFIC STYLES */
/* ---------------------------- */
.form-submit[b-xw5vkzc78s] {
    margin-top: 2.5rem; /* Дополнительный отступ для кнопки отправки формы */
}

/* ---------------------------- */
/* 13. RESPONSIVE */
/* ---------------------------- */
@media (max-width: 500px) {
    .login-card[b-xw5vkzc78s] {
        padding: 1.8rem;
    }

    .login-title[b-xw5vkzc78s] {
        font-size: var(--step-3);
    }

    .form-input:hover[b-xw5vkzc78s] {
        transform: none;
    }

    .form-input:focus[b-xw5vkzc78s] {
        transform: scale(1.01);
    }

    .btn-primary[b-xw5vkzc78s] {
        margin-top: 1.5rem; /* Немного уменьшаем отступ на мобильных */
    }
}

/* Плавная анимация для всех интерактивных элементов */
@media (prefers-reduced-motion: no-preference) {
    *[b-xw5vkzc78s] {
        scroll-behavior: smooth;
    }
}
/* _content/MoneyAppsV4/Components/Account/Pages/ResetPasswordConfirmation.razor.rz.scp.css */
/* ===== RESET PASSWORD CONFIRMATION STYLES ===== */
.reset-confirmation-container[b-h1hz8vsnvj] {
    min-height: 100vh;
    color: var(--text);
    padding: clamp(1rem, 3vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInScale 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.reset-confirmation-card[b-h1hz8vsnvj] {
    background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: clamp(2rem, 5vw, 4rem);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 520px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .reset-confirmation-card[b-h1hz8vsnvj]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
        opacity: 0.6;
    }

    .reset-confirmation-card[b-h1hz8vsnvj]::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
        opacity: 0.3;
    }

.confirmation-icon[b-h1hz8vsnvj] {
    font-size: clamp(3rem, 8vw, 4rem);
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: gentlePulse 2s ease-in-out infinite;
}

.reset-confirmation-title[b-h1hz8vsnvj] {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 800;
    margin: 0 0 1.5rem 0;
    background: linear-gradient(135deg, var(--text), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.confirmation-message[b-h1hz8vsnvj] {
    color: var(--muted);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin: 0 0 2.5rem 0;
    line-height: 1.6;
}

.confirmation-alert[b-h1hz8vsnvj] {
    background: rgba(46, 231, 201, 0.08);
    border: 1px solid rgba(46, 231, 201, 0.2);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.confirmation-link[b-h1hz8vsnvj] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: turquoise !important;
    text-decoration: none;
    border-radius: var(--radius);
    font-size: var(--step-1);
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px var(--accent-glow);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

    .confirmation-link:hover[b-h1hz8vsnvj] {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(46, 231, 201, 0.4);
        color: turquoise !important;
        text-decoration: none;
    }

    .confirmation-link:active[b-h1hz8vsnvj] {
        transform: translateY(0);
    }

    .confirmation-link:focus[b-h1hz8vsnvj] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(46, 231, 201, 0.3), 0 8px 25px var(--accent-glow);
    }

    .confirmation-link[b-h1hz8vsnvj]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.6s ease;
    }

    .confirmation-link:hover[b-h1hz8vsnvj]::before {
        left: 100%;
    }

.link-icon[b-h1hz8vsnvj] {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.confirmation-link:hover .link-icon[b-h1hz8vsnvj] {
    transform: translateX(3px);
}

/* Success Animation */
@keyframes successCheckmark-b-h1hz8vsnvj {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-animation[b-h1hz8vsnvj] {
    animation: successCheckmark-b-h1hz8vsnvj 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reset-confirmation-container[b-h1hz8vsnvj] {
        padding: 1rem;
    }

    .reset-confirmation-card[b-h1hz8vsnvj] {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .confirmation-alert[b-h1hz8vsnvj] {
        padding: 1.25rem;
    }

    .confirmation-link[b-h1hz8vsnvj] {
        padding: 0.875rem 1.75rem;
        font-size: var(--step-0);
    }
}

@media (max-width: 480px) {
    .reset-confirmation-card[b-h1hz8vsnvj] {
        padding: 1.5rem 1.25rem;
        margin: 0.5rem;
    }

    .confirmation-icon[b-h1hz8vsnvj] {
        margin-bottom: 1rem;
    }

    .reset-confirmation-title[b-h1hz8vsnvj] {
        margin-bottom: 1rem;
    }

    .confirmation-message[b-h1hz8vsnvj] {
        margin-bottom: 2rem;
    }

    .confirmation-alert[b-h1hz8vsnvj] {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .confirmation-link[b-h1hz8vsnvj] {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .reset-confirmation-container[b-h1hz8vsnvj],
    .confirmation-link[b-h1hz8vsnvj],
    .confirmation-icon[b-h1hz8vsnvj] {
        animation: none !important;
        transition: none !important;
    }

        .confirmation-link:hover[b-h1hz8vsnvj] {
            transform: none;
        }

        .confirmation-link[b-h1hz8vsnvj]::before {
            display: none;
        }
}

/* High contrast support */
@media (prefers-contrast: high) {
    .reset-confirmation-card[b-h1hz8vsnvj] {
        border: 2px solid var(--text);
        background: transparent;
    }

    .confirmation-alert[b-h1hz8vsnvj] {
        border: 2px solid var(--accent);
        background: transparent;
    }
}
/* _content/MoneyAppsV4/Components/Layout/MainLayout.razor.rz.scp.css */
/* ===== FONTS ===== */
@font-face {
    font-family: "Onest";
    src: "/fonts/Onest-Regular.ttf";
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: "/fonts/Onest-Regular.ttf";
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: "/fonts/Onest-Regular.ttf";
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: "/fonts/Onest-Regular.ttf";
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: "/fonts/Onest-ExtraBold.ttf";
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: "/fonts/pics/Onest-Black.ttf";
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ===== CSS VARIABLES ===== */
:root[b-0zczpwa6rz] {
    /* Colors */
    --bg: #0b0f12;
    --panel: #0f1418;
    --muted: #9aa8b6;
    --text: #e6eef8;
    --accent: #3fe1c9;
    --accent-600: #2ecdb0;
    --danger: #ff6b6b;
    --glass: rgba(255,255,255,0.03);
    /* SVG / icons */
    --svg-fill: var(--text);
    --svg-stroke: var(--accent);
    --svg-muted: var(--muted);
    /* Typography */
    --ff: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    --step-0: clamp(0.8rem, 0.75rem + 0.2vw, 0.9rem);
    --step-1: clamp(1rem, 0.95rem + 0.3vw, 1.1rem);
    --step-2: clamp(1.125rem, 1.05rem + 0.6vw, 1.25rem);
    --step-3: clamp(1.375rem, 1.25rem + 0.8vw, 1.625rem);
    --step-4: clamp(1.75rem, 1.6rem + 1.2vw, 2rem);
    --step-5: clamp(2.25rem, 2rem + 1.6vw, 2.75rem);
    --step-6: clamp(2.75rem, 2.4rem + 2.0vw, 3.5rem);
    --step-7: clamp(3.5rem, 3rem + 3.0vw, 4.5rem);
    /* Layout */
    --container-max: 80rem;
    --radius: 0.75rem;
    --radius-sm: 0.5rem;
    --gap: 1rem;
    --focus-ring: 0 0 0 0.2rem rgba(63,225,201,0.18);
    /* Misc */
    --glass-border: rgba(255,255,255,0.03);
    --transition: 180ms cubic-bezier(.2,.9,.2,1);
    --hero-bg-svg: none;
}

/* ===== BASE STYLES ===== */
*[b-0zczpwa6rz],
*[b-0zczpwa6rz]::before,
*[b-0zczpwa6rz]::after {
    box-sizing: border-box;
}

html[b-0zczpwa6rz] {
    height: 100%;
}

body[b-0zczpwa6rz] {
    min-height: 100%;
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--ff);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.35;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
}

/* ===== UTILITY CLASSES ===== */
.sr-only[b-0zczpwa6rz],
.visually-hidden[b-0zczpwa6rz] {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px,1px,1px,1px);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px;
}

.container[b-0zczpwa6rz] {
    width: calc(100% - 2rem);
    max-width: var(--container-max);
    margin: 0 auto;
    padding-inline: 1rem;
}

/* Grid utility */
.grid[b-0zczpwa6rz] {
    display: grid;
    gap: var(--gap);
}

.grid--2[b-0zczpwa6rz] {
    grid-template-columns: 1fr 1fr;
}

.grid--3[b-0zczpwa6rz] {
    grid-template-columns: repeat(3,1fr);
}

.grid--cols-auto[b-0zczpwa6rz] {
    grid-template-columns: repeat(auto-fit,minmax(12rem,1fr));
}

.kicker[b-0zczpwa6rz] {
    color: var(--accent);
    font-weight: 700;
    font-size: var(--step-0);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lead[b-0zczpwa6rz] {
    font-size: var(--step-3);
    color: var(--text);
}

/* ===== LAYOUT COMPONENTS ===== */

/* Header & Navigation */
.header-sticky[b-0zczpwa6rz] {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 60;
    backdrop-filter: blur(6px);
    background: linear-gradient(180deg, rgba(11,15,18,0.6), rgba(11,15,18,0.45));
    border-bottom: 1px solid var(--glass-border);
}

.main-nav[b-0zczpwa6rz] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.75rem;
}

.nav-logo a[b-0zczpwa6rz] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: var(--step-2);
}

.nav-menu[b-0zczpwa6rz] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link[b-0zczpwa6rz] {
    color: var(--muted);
    text-decoration: none;
    font-size: var(--step-1);
    padding: 0.45rem 0.6rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition), transform var(--transition);
}

    .nav-link:focus[b-0zczpwa6rz],
    .nav-link:hover[b-0zczpwa6rz] {
        color: var(--text);
        background: rgba(255,255,255,0.02);
        transform: translateY(-1px);
        outline: none;
    }

    .nav-link[aria-current="true"][b-0zczpwa6rz] {
        color: var(--accent);
        font-weight: 600;
    }

/* Main Content */
.main-content[b-0zczpwa6rz] {
    padding-block: 1.25rem;
}

/* ===== HERO SECTION ===== */
.hero-section[b-0zczpwa6rz] {
    padding-block: 2rem 2.5rem;
    position: relative;
    overflow: visible;
}

.hero-background[b-0zczpwa6rz] {
    position: relative;
    padding-block: 2rem;
    border-radius: var(--radius);
    background: radial-gradient(1200px 400px at 10% 20%, rgba(63,225,201,0.06), transparent 8%), radial-gradient(900px 320px at 90% 80%, rgba(63,225,201,0.03), transparent 8%), linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(4px);
    isolation: isolate;
    background-image: var(--hero-bg-svg), linear-gradient(0deg,transparent,transparent);
    background-repeat: no-repeat;
    background-position: right top;
}

.hero-content[b-0zczpwa6rz] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: center;
}

.hero-text[b-0zczpwa6rz] {
    padding-block: 0.25rem;
    max-width: 54rem;
}

.hero-title[b-0zczpwa6rz] {
    margin: 0 0 0.5rem 0;
    font-weight: 800;
    font-size: var(--step-7);
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--text);
    text-wrap: balance;
}

.hero-description[b-0zczpwa6rz] {
    margin: 0;
    color: var(--muted);
    font-size: var(--step-2);
    max-width: 48rem;
}

/* QR aside */
.qr-section[b-0zczpwa6rz] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.qr-image[b-0zczpwa6rz] {
    width: 6.5rem;
    height: 6.5rem;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid rgba(255,255,255,0.03);
    background: var(--panel);
    padding: 0.35rem;
}

.qr-caption[b-0zczpwa6rz] {
    font-size: var(--step-0);
    color: var(--muted);
}

/* ===== STATS SECTION ===== */
.stats-section[b-0zczpwa6rz] {
    padding-block: 1.5rem;
}

.stats-label[b-0zczpwa6rz] {
    color: var(--muted);
    font-size: var(--step-0);
    margin: 0 0 0.25rem 0;
}

.stats-content[b-0zczpwa6rz] {
    display: flex;
    gap: 1rem;
    align-items: baseline;
    flex-wrap: wrap;
}

.stats-amount[b-0zczpwa6rz] {
    font-weight: 900;
    font-size: var(--step-6);
    color: var(--text);
    letter-spacing: -0.02em;
}

.stats-currency[b-0zczpwa6rz] {
    font-weight: 700;
    color: var(--accent);
    font-size: var(--step-4);
}

.stats-description p[b-0zczpwa6rz] {
    margin: 0;
    color: var(--muted);
    font-size: var(--step-1);
}

/* ===== BENEFITS SECTION ===== */
.benefits-section[b-0zczpwa6rz] {
    padding-block: 1.5rem 2rem;
}

.benefit-card[b-0zczpwa6rz] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
}

.benefit-card--reversed[b-0zczpwa6rz] {
    direction: ltr;
}

.benefit-content[b-0zczpwa6rz] {
    padding: 0.25rem 0;
}

.benefit-title[b-0zczpwa6rz] {
    margin: 0 0 0.5rem 0;
    font-size: var(--step-5);
    font-weight: 800;
    color: var(--text);
}

.benefit-description[b-0zczpwa6rz] {
    margin: 0;
    color: var(--muted);
    font-size: var(--step-1);
}

.benefit-image img[b-0zczpwa6rz] {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.6rem;
}

/* ===== FAQ SECTION ===== */
.faq-section[b-0zczpwa6rz] {
    padding-block: 1.25rem;
}

.faq-main-title[b-0zczpwa6rz] {
    margin: 0 0 1rem 0;
    font-size: var(--step-5);
    color: var(--text);
}

.faq-list[b-0zczpwa6rz] {
    display: grid;
    gap: 0.75rem;
}

.faq-item[b-0zczpwa6rz] {
    border-radius: var(--radius-sm);
    background: var(--panel);
    padding: 0.5rem;
    border: 1px solid var(--glass-border);
}

.faq-toggle[b-0zczpwa6rz] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: transparent;
    border: 0;
    color: var(--text);
    font-size: var(--step-2);
    padding: 0.45rem;
    cursor: pointer;
}

    .faq-toggle .faq-question-text[b-0zczpwa6rz] {
        color: var(--text);
        font-weight: 700;
    }

    .faq-toggle .faq-icon[b-0zczpwa6rz] {
        display: inline-block;
        color: var(--svg-muted);
        transition: transform var(--transition);
    }

    .faq-toggle[aria-expanded="true"] .faq-icon[b-0zczpwa6rz] {
        transform: rotate(-180deg);
        color: var(--accent);
    }

.faq-answer[b-0zczpwa6rz] {
    padding-top: 0.5rem;
    color: var(--muted);
    font-size: var(--step-1);
}

/* ===== CARDS ===== */
.card[b-0zczpwa6rz] {
    background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    box-shadow: 0 6px 18px rgba(2,6,8,0.35);
    color: var(--text);
}

/* ===== BUTTONS ===== */
.btn[b-0zczpwa6rz] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 0.9rem;
    font-size: var(--step-1);
    border-radius: 0.6rem;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    border: 1px solid transparent;
    text-decoration: none;
    user-select: none;
}

    .btn:focus[b-0zczpwa6rz] {
        outline: none;
        box-shadow: var(--focus-ring);
    }

/* Primary */
.btn-primary[b-0zczpwa6rz] {
    background: linear-gradient(180deg,var(--accent),var(--accent-600));
    color: #041013;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(46,205,176,0.12), 0 1px 0 rgba(255,255,255,0.02) inset;
    border-color: rgba(255,255,255,0.03);
}

    .btn-primary:hover[b-0zczpwa6rz] {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(46,205,176,0.14);
    }

    .btn-primary:active[b-0zczpwa6rz] {
        transform: translateY(0);
    }

/* Ghost */
.btn-ghost[b-0zczpwa6rz] {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.04);
    font-weight: 600;
}

    .btn-ghost:hover[b-0zczpwa6rz] {
        background: rgba(255,255,255,0.02);
        transform: translateY(-1px);
    }

/* ===== FORMS ===== */
input[type="text"][b-0zczpwa6rz],
input[type="email"][b-0zczpwa6rz],
input[type="search"][b-0zczpwa6rz],
textarea[b-0zczpwa6rz],
select[b-0zczpwa6rz] {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius-sm);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.04);
    color: var(--text);
    font-size: var(--step-1);
    transition: border-color var(--transition), box-shadow var(--transition);
}

    input[b-0zczpwa6rz]::placeholder, textarea[b-0zczpwa6rz]::placeholder {
        color: rgba(255,255,255,0.12);
    }

    input:focus[b-0zczpwa6rz], textarea:focus[b-0zczpwa6rz], select:focus[b-0zczpwa6rz] {
        border-color: var(--accent);
        box-shadow: var(--focus-ring);
        outline: none;
    }

/* ===== FOOTER ===== */
.footer[b-0zczpwa6rz] {
    margin-top: 2rem;
    padding-block: 1.5rem 2rem;
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.01));
}

.download-section[b-0zczpwa6rz] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.download-image[b-0zczpwa6rz] {
    width: 6rem;
    height: 6rem;
    object-fit: cover;
    border-radius: 0.6rem;
    border: 1px solid rgba(255,255,255,0.03);
}

/* ===== SVG HANDLING ===== */
svg[b-0zczpwa6rz], .icon[b-0zczpwa6rz] {
    vector-effect: non-scaling-stroke;
    display: inline-block;
    vertical-align: middle;
    fill: var(--svg-fill);
    stroke: var(--svg-stroke);
    stroke-linecap: round;
    stroke-linejoin: round;
}

    svg path[b-0zczpwa6rz], svg circle[b-0zczpwa6rz], svg rect[b-0zczpwa6rz] {
        fill: var(--svg-fill);
        stroke: var(--svg-stroke);
    }

/* Background SVG support */
.bg-svg[b-0zczpwa6rz] {
    background-image: var(--hero-bg-svg);
    background-repeat: no-repeat;
    background-position: center;
}

/* ===== ANIMATED BACKGROUND ===== */
.animated-background[b-0zczpwa6rz] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(125deg, #0b0f12 0%, #0f1418 25%, #0a0e11 50%, #0d1216 75%, #0b0f12 100%);
}

.gradient-orbs[b-0zczpwa6rz] {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(40px);
    opacity: 0.6;
}

.orb-1[b-0zczpwa6rz] {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 231, 201, 0.15) 0%, rgba(46, 231, 201, 0) 70%);
    top: -200px;
    left: -100px;
    animation: floatOrb1-b-0zczpwa6rz 20s ease-in-out infinite;
}

.orb-2[b-0zczpwa6rz] {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(194, 166, 51, 0.1) 0%, rgba(194, 166, 51, 0) 70%);
    bottom: -150px;
    right: -100px;
    animation: floatOrb2-b-0zczpwa6rz 25s ease-in-out infinite;
}

.orb-3[b-0zczpwa6rz] {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(63, 225, 201, 0.08) 0%, rgba(63, 225, 201, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseOrb-b-0zczpwa6rz 15s ease-in-out infinite;
}

.floating-particles[b-0zczpwa6rz] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle[b-0zczpwa6rz] {
    position: absolute;
    background: rgba(46, 231, 201, 0.1);
    border-radius: 50%;
    animation: floatParticle-b-0zczpwa6rz 20s linear infinite;
}

    .particle:nth-child(1)[b-0zczpwa6rz] {
        width: 4px;
        height: 4px;
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }

    .particle:nth-child(2)[b-0zczpwa6rz] {
        width: 6px;
        height: 6px;
        top: 60%;
        left: 80%;
        animation-delay: -5s;
    }

    .particle:nth-child(3)[b-0zczpwa6rz] {
        width: 3px;
        height: 3px;
        top: 80%;
        left: 20%;
        animation-delay: -10s;
    }

    .particle:nth-child(4)[b-0zczpwa6rz] {
        width: 5px;
        height: 5px;
        top: 40%;
        left: 90%;
        animation-delay: -15s;
    }

    .particle:nth-child(5)[b-0zczpwa6rz] {
        width: 4px;
        height: 4px;
        top: 10%;
        left: 70%;
        animation-delay: -7s;
    }

    .particle:nth-child(6)[b-0zczpwa6rz] {
        width: 6px;
        height: 6px;
        top: 85%;
        left: 60%;
        animation-delay: -12s;
    }

/* ===== GLOWING SQUARES ===== */
.glowing-squares[b-0zczpwa6rz] {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.glow-square[b-0zczpwa6rz] {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(46, 231, 201, 0.3);
    border-radius: 12px;
    opacity: 0;
    animation: squareGlow-b-0zczpwa6rz 8s ease-in-out infinite;
}

    /* ������� ��������� */
    .glow-square:nth-child(1)[b-0zczpwa6rz] {
        top: 15%;
        left: 5%;
        animation-delay: 0s;
    }

    .glow-square:nth-child(2)[b-0zczpwa6rz] {
        top: 20%;
        right: 10%;
        animation-delay: 1.5s;
        width: 60px;
        height: 60px;
    }

    .glow-square:nth-child(3)[b-0zczpwa6rz] {
        bottom: 25%;
        left: 8%;
        animation-delay: 3s;
        width: 100px;
        height: 100px;
    }

    .glow-square:nth-child(4)[b-0zczpwa6rz] {
        bottom: 15%;
        right: 7%;
        animation-delay: 4.5s;
    }

    .glow-square:nth-child(5)[b-0zczpwa6rz] {
        top: 40%;
        left: 3%;
        animation-delay: 6s;
        width: 70px;
        height: 70px;
    }

    .glow-square:nth-child(6)[b-0zczpwa6rz] {
        top: 35%;
        right: 5%;
        animation-delay: 2s;
    }

    .glow-square:nth-child(7)[b-0zczpwa6rz] {
        bottom: 40%;
        left: 12%;
        animation-delay: 5s;
        width: 90px;
        height: 90px;
    }

    .glow-square:nth-child(8)[b-0zczpwa6rz] {
        bottom: 30%;
        right: 3%;
        animation-delay: 7s;
    }

/* ===== GRID OVERLAYS ===== */
.grid-overlay[b-0zczpwa6rz] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(46, 231, 201, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(46, 231, 201, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove-b-0zczpwa6rz 40s linear infinite;
}

.grid-glow[b-0zczpwa6rz] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(46, 231, 201, 0) 90%, rgba(46, 231, 201, 0.1) 100%), linear-gradient(90deg, rgba(46, 231, 201, 0) 90%, rgba(46, 231, 201, 0.1) 100%);
    background-size: 100px 100px;
    animation: gridPulse-b-0zczpwa6rz 6s ease-in-out infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes floatOrb1-b-0zczpwa6rz {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(100px, 50px) scale(1.1);
    }

    50% {
        transform: translate(50px, 100px) scale(0.9);
    }

    75% {
        transform: translate(-50px, 80px) scale(1.05);
    }
}

@keyframes floatOrb2-b-0zczpwa6rz {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-80px, -60px) scale(1.1);
    }

    66% {
        transform: translate(60px, -80px) scale(0.95);
    }
}

@keyframes pulseOrb-b-0zczpwa6rz {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes floatParticle-b-0zczpwa6rz {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

@keyframes gridMove-b-0zczpwa6rz {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes gridPulse-b-0zczpwa6rz {
    0%, 100% {
        opacity: 0.1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes squareGlow-b-0zczpwa6rz {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8) rotate(0deg);
        box-shadow: 0 0 0px rgba(46, 231, 201, 0);
    }

    10% {
        opacity: 0.1;
        transform: scale(0.9) rotate(5deg);
    }

    20% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 20px rgba(46, 231, 201, 0.4), 0 0 40px rgba(46, 231, 201, 0.2), inset 0 0 15px rgba(46, 231, 201, 0.1);
    }

    30% {
        opacity: 0.5;
        transform: scale(1.05) rotate(-3deg);
        box-shadow: 0 0 30px rgba(46, 231, 201, 0.6), 0 0 50px rgba(46, 231, 201, 0.3), inset 0 0 20px rgba(46, 231, 201, 0.15);
    }

    40% {
        opacity: 0.7;
        transform: scale(1.1) rotate(2deg);
        box-shadow: 0 0 40px rgba(46, 231, 201, 0.8), 0 0 60px rgba(46, 231, 201, 0.4), inset 0 0 25px rgba(46, 231, 201, 0.2);
    }

    50% {
        opacity: 1;
        transform: scale(1.15) rotate(0deg);
        box-shadow: 0 0 50px rgba(46, 231, 201, 1), 0 0 80px rgba(46, 231, 201, 0.5), inset 0 0 30px rgba(46, 231, 201, 0.25);
    }

    60% {
        opacity: 0.7;
        transform: scale(1.1) rotate(-2deg);
        box-shadow: 0 0 40px rgba(46, 231, 201, 0.8), 0 0 60px rgba(46, 231, 201, 0.4), inset 0 0 25px rgba(46, 231, 201, 0.2);
    }

    70% {
        opacity: 0.5;
        transform: scale(1.05) rotate(3deg);
        box-shadow: 0 0 30px rgba(46, 231, 201, 0.6), 0 0 50px rgba(46, 231, 201, 0.3), inset 0 0 20px rgba(46, 231, 201, 0.15);
    }

    80% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 20px rgba(46, 231, 201, 0.4), 0 0 40px rgba(46, 231, 201, 0.2), inset 0 0 15px rgba(46, 231, 201, 0.1);
    }

    90% {
        opacity: 0.1;
        transform: scale(0.9) rotate(-5deg);
    }
}

/* ===== Z-INDEX MANAGEMENT ===== */
.app-container[b-0zczpwa6rz] {
    position: relative;
    z-index: 1;
}

.main-content[b-0zczpwa6rz] {
    position: relative;
    z-index: 2;
}

.header-sticky[b-0zczpwa6rz] {
    position: relative;
    z-index: 100;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet and larger screens */
@media (min-width: 48rem) {
    .nav-menu[b-0zczpwa6rz] {
        flex-direction: row;
        align-items: center;
    }

    .hero-content[b-0zczpwa6rz] {
        grid-template-columns: 1fr 20rem;
        gap: 2rem;
    }

    .benefit-card[b-0zczpwa6rz] {
        grid-template-columns: 1fr 22rem;
    }

    .benefit-card--reversed[b-0zczpwa6rz] {
        grid-template-columns: 22rem 1fr;
    }

    .qr-section[b-0zczpwa6rz] {
        justify-self: end;
    }

    .stats-content[b-0zczpwa6rz] {
        gap: 1.5rem;
        align-items: baseline;
    }
}

/* Desktop screens */
@media (min-width: 75rem) {
    .hero-section[b-0zczpwa6rz] {
        padding-block: 3rem;
    }

    .hero-background[b-0zczpwa6rz] {
        padding-block: 3rem;
    }

    .hero-content[b-0zczpwa6rz] {
        grid-template-columns: 1fr 28rem;
    }

    .benefit-card[b-0zczpwa6rz] {
        gap: 2rem;
        padding: 1.25rem;
    }
}

/* ===== ACCESSIBILITY ===== */

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .orb-1[b-0zczpwa6rz],
    .orb-2[b-0zczpwa6rz],
    .orb-3[b-0zczpwa6rz],
    .particle[b-0zczpwa6rz],
    .grid-overlay[b-0zczpwa6rz],
    .grid-glow[b-0zczpwa6rz],
    .glow-square[b-0zczpwa6rz] {
        animation: none !important;
    }

    .gradient-orbs[b-0zczpwa6rz],
    .floating-particles[b-0zczpwa6rz] {
        opacity: 0.3;
    }

    .glow-square[b-0zczpwa6rz] {
        opacity: 0.1;
    }
}

/* Print styles */
@media print {
    body[b-0zczpwa6rz] {
        background: #fff;
        color: #000;
    }

    .header-sticky[b-0zczpwa6rz], .footer[b-0zczpwa6rz] {
        display: none;
    }
}

/* High contrast support */
@media (prefers-contrast: high) {
    .nav-link[b-0zczpwa6rz],
    .btn-ghost[b-0zczpwa6rz] {
        border-width: 2px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover[b-0zczpwa6rz] {
        transform: none;
    }

    .btn:active[b-0zczpwa6rz] {
        transform: scale(0.98);
    }
}
/* _content/MoneyAppsV4/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-gx5xbovdu2] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-gx5xbovdu2] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-gx5xbovdu2] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-gx5xbovdu2] {
    font-size: 1.1rem;
}

.bi[b-gx5xbovdu2] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-gx5xbovdu2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-gx5xbovdu2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-gx5xbovdu2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-gx5xbovdu2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-gx5xbovdu2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-gx5xbovdu2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-gx5xbovdu2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-gx5xbovdu2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.nav-item[b-gx5xbovdu2] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-gx5xbovdu2] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-gx5xbovdu2] {
        padding-bottom: 1rem;
    }

    .nav-item[b-gx5xbovdu2]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-gx5xbovdu2]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-gx5xbovdu2]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-gx5xbovdu2] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-gx5xbovdu2] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-gx5xbovdu2] {
        display: none;
    }

    .nav-scrollable[b-gx5xbovdu2] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/MoneyAppsV4/Components/Pages/Agreement.razor.rz.scp.css */
/* Fonts (placeholders for URLs) */
@font-face {
    font-family: "Onest";
    src: url("/* URL-PLACEHOLDER-Onest-ExtraLight-200.woff2 */") format("woff2");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: url("/* URL-PLACEHOLDER-Onest-Regular-400.woff2 */") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: url("/* URL-PLACEHOLDER-Onest-Medium-500.woff2 */") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: url("/* URL-PLACEHOLDER-Onest-Bold-700.woff2 */") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: url("/* URL-PLACEHOLDER-Onest-ExtraBold-800.woff2 */") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: url("/* URL-PLACEHOLDER-Onest-Black-900.woff2 */") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Variables */
:root[b-pagnopvwnj] {
    --bg: #0b0f12;
    --panel: #0f1418;
    --muted: #9aa8b6;
    --text: #e6eef8;
    --accent: #3fe1c9;
    --accent-600: #2ecdb0;
    --glass-border: rgba(255,255,255,0.03);
    --svg-fill: var(--text);
    --svg-stroke: var(--accent);
    --ff: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    --step-0: clamp(0.8rem, 0.75rem + 0.2vw, 0.9rem);
    --step-1: clamp(1rem, 0.95rem + 0.3vw, 1.1rem);
    --step-2: clamp(1.125rem, 1.05rem + 0.6vw, 1.25rem);
    --step-3: clamp(1.375rem, 1.25rem + 0.8vw, 1.625rem);
    --step-4: clamp(1.75rem, 1.6rem + 1.2vw, 2rem);
    --step-5: clamp(2.25rem, 2rem + 1.6vw, 2.75rem);
    --step-6: clamp(2.75rem, 2.4rem + 2vw, 3.5rem);
    --radius: 0.75rem;
    --radius-sm: 0.5rem;
    --gap: 1rem;
    --transition: 180ms cubic-bezier(.2,.9,.2,1);
    --focus-ring: 0 0 0 0.2rem rgba(63,225,201,0.18);
}

/* Base */
*[b-pagnopvwnj],
*[b-pagnopvwnj]::before,
*[b-pagnopvwnj]::after {
    box-sizing: border-box;
}

body[b-pagnopvwnj] {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--ff);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a[b-pagnopvwnj] {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

    a:hover[b-pagnopvwnj] {
        color: var(--accent);
    }

/* Container */
.container[b-pagnopvwnj] {
    width: calc(100% - 2rem);
    max-width: 80rem;
    margin: 0 auto;
    padding-inline: 1rem;
}

/* Header */
.header-sticky[b-pagnopvwnj] {
    position: sticky;
    top: 0;
    background: rgba(11,15,18,0.6);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 50;
}

.main-nav[b-pagnopvwnj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 0.75rem;
}

.nav-menu[b-pagnopvwnj] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link[b-pagnopvwnj] {
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    color: var(--muted);
}

    .nav-link:hover[b-pagnopvwnj],
    .nav-link:focus[b-pagnopvwnj] {
        background: rgba(255,255,255,0.04);
        color: var(--text);
    }

    .nav-link[aria-current="page"][b-pagnopvwnj] {
        color: var(--accent);
        font-weight: 600;
    }

/* Agreement */
.agreement-section[b-pagnopvwnj] {
    padding-block: 2rem;
}

.agreement-content[b-pagnopvwnj] {
    background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.agreement-title[b-pagnopvwnj] {
    font-size: var(--step-6);
    font-weight: 800;
    margin: 0 0 1rem;
}

.agreement-text[b-pagnopvwnj] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.agreement-chapter h2[b-pagnopvwnj] {
    font-size: var(--step-4);
    margin: 0 0 0.5rem;
    font-weight: 700;
}

.agreement-chapter p[b-pagnopvwnj] {
    font-size: var(--step-1);
    color: var(--muted);
    margin: 0.25rem 0;
}

/* FAQ */
.faq-section[b-pagnopvwnj] {
    padding-block: 2rem;
}

.faq-main-title[b-pagnopvwnj] {
    font-size: var(--step-5);
    font-weight: 800;
    margin: 0 0 1rem;
}

.faq-list[b-pagnopvwnj] {
    display: grid;
    gap: 0.75rem;
}

.faq-item[b-pagnopvwnj] {
    background: var(--panel);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
}

.faq-toggle[b-pagnopvwnj] {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: var(--step-2);
    cursor: pointer;
    padding: 0.5rem;
}

.faq-question-text[b-pagnopvwnj] {
    font-weight: 700;
}

.faq-icon[b-pagnopvwnj] {
    color: var(--muted);
    transition: transform var(--transition);
}

.faq-toggle[aria-expanded="true"] .faq-icon[b-pagnopvwnj] {
    transform: rotate(-180deg);
    color: var(--accent);
}

.faq-answer[b-pagnopvwnj] {
    margin-top: 0.5rem;
    font-size: var(--step-1);
    color: var(--muted);
}

/* Footer */
.footer[b-pagnopvwnj] {
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02));
    border-top: 1px solid var(--glass-border);
    padding-block: 2rem;
}

.footer-content[b-pagnopvwnj] {
    display: grid;
    gap: 1.5rem;
}

.footer-section h3[b-pagnopvwnj], .footer-section h4[b-pagnopvwnj] {
    margin: 0 0 0.5rem;
    font-weight: 700;
}

.footer-section p[b-pagnopvwnj], .footer-section a[b-pagnopvwnj] {
    font-size: var(--step-1);
    color: var(--muted);
}

    .footer-section a:hover[b-pagnopvwnj] {
        color: var(--accent);
    }

/* Utilities */
.sr-only[b-pagnopvwnj] {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px,1px,1px,1px);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px;
}

/* Responsive */
@media (min-width: 48rem) {
    .nav-menu[b-pagnopvwnj] {
        flex-direction: row;
    }

    .footer-content[b-pagnopvwnj] {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* FAQ Styles for Agreement Page */
/* Agreement specific styles */
.agreement-section[b-pagnopvwnj] {
    padding-block: 2rem;
}

.agreement-title[b-pagnopvwnj] {
    font-size: var(--step-6);
    color: var(--text);
    margin: 0 0 2rem 0;
    text-align: center;
}

.agreement-chapter[b-pagnopvwnj] {
    margin-bottom: 2rem;
}

    .agreement-chapter h2[b-pagnopvwnj] {
        font-size: var(--step-4);
        color: var(--text);
        margin: 0 0 1rem 0;
        border-bottom: 1px solid var(--glass-border);
        padding-bottom: 0.5rem;
    }

    .agreement-chapter p[b-pagnopvwnj] {
        color: var(--muted);
        line-height: 1.6;
        margin: 0 0 1rem 0;
    }

/* FAQ Section - Using same logic as main page */
.faq-section[b-pagnopvwnj] {
    padding-block: 2rem;
}

.faq-main-title[b-pagnopvwnj] {
    margin: 0 0 2rem 0;
    font-size: var(--step-5);
    color: var(--text);
    text-align: center;
}

.faq-list[b-pagnopvwnj] {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Details/summary styling matching main page */
details[b-pagnopvwnj] {
    border-radius: var(--radius-sm);
    background: var(--panel);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all var(--transition);
}

    details[open][b-pagnopvwnj] {
        background: rgba(255, 255, 255, 0.02);
    }

summary[b-pagnopvwnj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    font-size: var(--step-2);
    color: var(--text);
    transition: all var(--transition);
}

    summary:hover[b-pagnopvwnj] {
        background: rgba(255, 255, 255, 0.02);
    }

    summary[b-pagnopvwnj]::-webkit-details-marker {
        display: none;
    }

.faq-icon[b-pagnopvwnj] {
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
    color: var(--svg-muted);
}

details[open] .faq-icon[b-pagnopvwnj] {
    transform: rotate(-180deg);
    color: var(--accent);
}

/* Smooth animation for content */
.faq-content[b-pagnopvwnj] {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
    padding: 0 1.25rem;
}

details[open] .faq-content[b-pagnopvwnj] {
    max-height: 2000px; /* Large enough for smooth animation */
    opacity: 1;
    padding: 0 1.25rem 1.25rem 1.25rem;
}

.faq-content p[b-pagnopvwnj] {
    color: var(--muted);
    font-size: var(--step-1);
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

    .faq-content p:last-child[b-pagnopvwnj] {
        margin-bottom: 0;
    }

/* Smooth fade-in for text */
details[open] .faq-content p[b-pagnopvwnj] {
    animation: faqFadeIn-b-pagnopvwnj 0.5s ease-out;
}

@keyframes faqFadeIn-b-pagnopvwnj {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 48rem) {
    summary[b-pagnopvwnj] {
        padding: 0.75rem 1rem;
        font-size: var(--step-1);
    }

    .faq-content[b-pagnopvwnj] {
        padding: 0 1rem;
    }

    details[open] .faq-content[b-pagnopvwnj] {
        padding: 0 1rem 1rem 1rem;
    }

    .agreement-title[b-pagnopvwnj] {
        font-size: var(--step-5);
    }

    .agreement-chapter h2[b-pagnopvwnj] {
        font-size: var(--step-3);
    }
}
/* _content/MoneyAppsV4/Components/Pages/MainPage.razor.rz.scp.css */
/* ===== FONTS ===== */
@font-face {
    font-family: "Onest";
    src: "/fonts/Onest-Regular.ttf";
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: "/fonts/Onest-Regular.ttf";
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: "/fonts/Onest-Regular.ttf";
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: "/fonts/Onest-Regular.ttf";
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: url("/* URL-PLACEHOLDER-Onest-ExtraBold-800.woff2 */") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: url("/* URL-PLACEHOLDER-Onest-Black-900.woff2 */") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ===== CSS VARIABLES ===== */
:root[b-g2f9w82v5u] {
    /* Colors */
    --bg: #0b0f12;
    --panel: #0f1418;
    --muted: #9aa8b6;
    --text: #e6eef8;
    --accent: #2ee7c9;
    --accent-600: #1ed4b8;
    --danger: #ff6b6b;
    --glass: rgba(255,255,255,0.03);
    --accent-glow: rgba(46, 231, 201, 0.4);
    --gradient-primary: linear-gradient(135deg, var(--accent), var(--accent-600));
    /* SVG / icons */
    --svg-fill: var(--text);
    --svg-stroke: var(--accent);
    --svg-muted: var(--muted);
    /* Typography */
    --ff: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    --step-0: clamp(0.8rem, 0.75rem + 0.2vw, 0.9rem);
    --step-1: clamp(1rem, 0.95rem + 0.3vw, 1.1rem);
    --step-2: clamp(1.125rem, 1.05rem + 0.6vw, 1.25rem);
    --step-3: clamp(1.375rem, 1.25rem + 0.8vw, 1.625rem);
    --step-4: clamp(1.75rem, 1.6rem + 1.2vw, 2rem);
    --step-5: clamp(2.25rem, 2rem + 1.6vw, 2.75rem);
    --step-6: clamp(2.75rem, 2.4rem + 2.0vw, 3.5rem);
    --step-7: clamp(3.5rem, 3rem + 3.0vw, 4.5rem);
    /* Layout */
    --container-max: 80rem;
    --radius: 0.75rem;
    --radius-sm: 0.5rem;
    --gap: 1rem;
    --focus-ring: 0 0 0 0.2rem rgba(63,225,201,0.18);
    /* Misc */
    --glass-border: rgba(255,255,255,0.03);
    --transition: 180ms cubic-bezier(.2,.9,.2,1);
    --hero-bg-svg: none;
}

/* ===== BASE STYLES ===== */
*[b-g2f9w82v5u],
*[b-g2f9w82v5u]::before,
*[b-g2f9w82v5u]::after {
    box-sizing: border-box;
}

html[b-g2f9w82v5u] {
    height: 100%;
}

body[b-g2f9w82v5u] {
    min-height: 100%;
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--ff);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.35;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
}

/* ===== UTILITY CLASSES ===== */
.sr-only[b-g2f9w82v5u],
.visually-hidden[b-g2f9w82v5u] {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px,1px,1px,1px);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px;
}

.container[b-g2f9w82v5u] {
    width: min(100% - 2rem, var(--container-max));
    margin: 0 auto;
    padding-inline: 1rem;
}

/* ===== LAYOUT COMPONENTS ===== */

/* Header & Navigation */
.header-sticky[b-g2f9w82v5u] {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 60;
    backdrop-filter: blur(6px);
    background: linear-gradient(180deg, rgba(11,15,18,0.6), rgba(11,15,18,0.45));
    border-bottom: 1px solid var(--glass-border);
}

.main-nav[b-g2f9w82v5u] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-block: 0.5rem;
}

.nav-logo a[b-g2f9w82v5u] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: var(--step-1);
}

.nav-menu[b-g2f9w82v5u] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link[b-g2f9w82v5u] {
    color: var(--muted);
    text-decoration: none;
    font-size: var(--step-0);
    padding: 0.35rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition), transform var(--transition);
}

    .nav-link:focus[b-g2f9w82v5u],
    .nav-link:hover[b-g2f9w82v5u] {
        color: var(--text);
        background: rgba(255,255,255,0.02);
        transform: translateY(-1px);
        outline: none;
    }

    .nav-link[aria-current="true"][b-g2f9w82v5u] {
        color: var(--accent);
        font-weight: 600;
    }

/* Main Content */
.main-content[b-g2f9w82v5u] {
    padding-block: 1rem;
}

/* ===== HERO SECTION ===== */
.hero-section[b-g2f9w82v5u] {
    padding-block: 1rem 1.5rem;
    position: relative;
    overflow: visible;
}

.hero-background[b-g2f9w82v5u] {
    position: relative;
    padding-block: 1rem;
    border-radius: var(--radius);
    background: radial-gradient(1200px 400px at 10% 20%, rgba(63,225,201,0.06), transparent 8%), radial-gradient(900px 320px at 90% 80%, rgba(63,225,201,0.03), transparent 8%), linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(4px);
    isolation: isolate;
    background-image: var(--hero-bg-svg), linear-gradient(0deg,transparent,transparent);
    background-repeat: no-repeat;
    background-position: right top;
}

.hero-content[b-g2f9w82v5u] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    align-items: center;
}

.hero-text[b-g2f9w82v5u] {
    padding-block: 0.25rem;
    max-width: 54rem;
}

.hero-title[b-g2f9w82v5u] {
    margin: 0 0 0.5rem 0;
    font-weight: 800;
    font-size: clamp(1.75rem, 6vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 50%, #a6ffec 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-wrap: balance;
    word-break: break-word;
    text-shadow: 0 2px 10px rgba(46, 231, 201, 0.2);
}

.hero-description[b-g2f9w82v5u] {
    margin: 0;
    color: var(--muted);
    font-size: clamp(0.9rem, 3vw, 1.25rem);
    max-width: 48rem;
    line-height: 1.4;
}

.hero-actions[b-g2f9w82v5u] {
    margin-top: 2.5rem;
    display: flex;
    justify-content: flex-start;
}

/* ===== BUTTONS ===== */
.btn[b-g2f9w82v5u] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    font-size: var(--step-0);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    border: 1px solid transparent;
    text-decoration: none;
    user-select: none;
}

    .btn:focus[b-g2f9w82v5u] {
        outline: none;
        box-shadow: var(--focus-ring);
    }

.btn-primary[b-g2f9w82v5u] {
    background: linear-gradient(180deg,var(--accent),var(--accent-600));
    color: #041013;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(46,205,176,0.12), 0 1px 0 rgba(255,255,255,0.02) inset;
    border-color: rgba(255,255,255,0.03);
}

    .btn-primary:hover[b-g2f9w82v5u] {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(46,205,176,0.14);
    }

    .btn-primary:active[b-g2f9w82v5u] {
        transform: translateY(0);
    }

/* Enhanced Button */
.btn-earn[b-g2f9w82v5u] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #3fe1c9 !important;
    background: var(--gradient-primary);
    border: none;
    border-radius: 1rem;
    text-decoration: none;
    box-shadow: 0 8px 30px var(--accent-glow), 0 2px 10px rgba(46, 231, 201, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-width: 260px;
    justify-content: center;
    transform: translateY(0);
    animation: gentlePulse-b-g2f9w82v5u 3s ease-in-out infinite;
}

    .btn-earn[b-g2f9w82v5u]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.6s ease;
    }

    .btn-earn:hover[b-g2f9w82v5u] {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(46, 231, 201, 0.5), 0 5px 15px rgba(46, 231, 201, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
        color: #3fe1c9 !important;
        text-decoration: none;
    }

        .btn-earn:hover[b-g2f9w82v5u]::before {
            left: 100%;
        }

    .btn-earn:active[b-g2f9w82v5u] {
        transform: translateY(-1px);
        box-shadow: 0 8px 25px rgba(46, 231, 201, 0.4);
    }

    .btn-earn:focus[b-g2f9w82v5u] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(46, 231, 201, 0.3), 0 8px 30px var(--accent-glow);
    }

    .btn-earn .btn-icon[b-g2f9w82v5u] {
        transition: all 0.3s ease;
        font-size: 1.4rem;
        filter: drop-shadow(0 2px 3px rgba(4, 16, 19, 0.2));
    }

    .btn-earn:hover .btn-icon[b-g2f9w82v5u] {
        transform: scale(1.15) rotate(5deg);
        filter: drop-shadow(0 3px 5px rgba(4, 16, 19, 0.3));
    }

/* ===== STATS SECTION ===== */
.stats-section[b-g2f9w82v5u] {
    /* Add your stats section styles here */
}

.stats-amount[b-g2f9w82v5u] {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--text), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(46, 231, 201, 0.1);
}

/* ===== BENEFITS SECTION ===== */
.benefit-card[b-g2f9w82v5u] {
    background: linear-gradient(135deg, rgba(46, 231, 201, 0.05), transparent);
    border: 1px solid rgba(46, 231, 201, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .benefit-card:hover[b-g2f9w82v5u] {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(46, 231, 201, 0.1);
        border-color: rgba(46, 231, 201, 0.2);
    }

.benefit-title[b-g2f9w82v5u] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== FAQ SECTION ===== */
.faq-section[b-g2f9w82v5u] {
    padding-block: 1rem;
}

    .faq-section h2[b-g2f9w82v5u] {
        background: linear-gradient(135deg, var(--text), var(--accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: clamp(2rem, 5vw, 3rem);
        margin-bottom: 2rem;
    }

.faq-main-title[b-g2f9w82v5u] {
    margin: 0 0 0.75rem 0;
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    color: var(--text);
    line-height: 1.2;
}

.faq-list[b-g2f9w82v5u] {
    display: grid;
    gap: 0.5rem;
}

details[b-g2f9w82v5u] {
    border-radius: var(--radius-sm);
    background: var(--panel);
    padding: 0.4rem;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all var(--transition);
}

    details[open][b-g2f9w82v5u] {
        background: rgba(255, 255, 255, 0.02);
    }

summary[b-g2f9w82v5u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--text);
    transition: all var(--transition);
    line-height: 1.3;
}

    summary:hover[b-g2f9w82v5u] {
        background: rgba(255, 255, 255, 0.02);
    }

    summary[b-g2f9w82v5u]::-webkit-details-marker {
        display: none;
    }

.faq-question-text[b-g2f9w82v5u] {
    color: var(--text);
    font-weight: 700;
    text-align: left;
    flex: 1;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    line-height: 1.3;
}

.faq-icon[b-g2f9w82v5u] {
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 0.5rem;
    color: var(--svg-muted);
    width: 18px;
    height: 18px;
}

details[open] .faq-icon[b-g2f9w82v5u] {
    transform: rotate(-180deg);
    color: var(--accent);
}

.faq-content[b-g2f9w82v5u] {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
    padding: 0 0.35rem;
}

details[open] .faq-content[b-g2f9w82v5u] {
    max-height: 2000px;
    opacity: 1;
    padding: 0.4rem 0.35rem 0.2rem 0.35rem;
}

.faq-content p[b-g2f9w82v5u] {
    color: var(--muted);
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
}

    .faq-content p:last-child[b-g2f9w82v5u] {
        margin-bottom: 0;
    }

/* ===== PERSONAL ACCOUNT STYLES ===== */
.personal-account-container[b-g2f9w82v5u] {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    padding: clamp(0.5rem, 2vw, 2rem);
    animation: fadeInScale-b-g2f9w82v5u 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.account-header[b-g2f9w82v5u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
    padding-bottom: clamp(1rem, 2vw, 1.5rem);
    border-bottom: 1px solid var(--glass-border);
    animation: slideDown-b-g2f9w82v5u 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.welcome-title[b-g2f9w82v5u] {
    font-size: clamp(1.25rem, 5vw, 2.5rem);
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, var(--text), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    word-break: break-word;
}

.welcome-subtitle[b-g2f9w82v5u] {
    color: var(--muted);
    font-size: clamp(0.85rem, 3vw, 1.1rem);
    margin: 0;
    line-height: 1.4;
}

.account-grid[b-g2f9w82v5u] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* Balance Cards */
.balance-card[b-g2f9w82v5u] {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: clamp(1rem, 2vw, 1.5rem);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    min-height: clamp(120px, 18vw, 160px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .balance-card[b-g2f9w82v5u]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }

.usd-balance[b-g2f9w82v5u] {
    border-left: 3px solid #3fe1c9;
}

.doge-balance[b-g2f9w82v5u] {
    border-left: 3px solid #c2a633;
}

.balance-icon[b-g2f9w82v5u] {
    margin-bottom: 0.5rem;
}

    .balance-icon .icon[b-g2f9w82v5u] {
        font-size: clamp(1.25rem, 3vw, 2rem);
    }

.balance-label[b-g2f9w82v5u] {
    font-size: clamp(0.75rem, 2.5vw, 0.9rem);
    color: var(--muted);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.balance-amount[b-g2f9w82v5u] {
    font-size: clamp(1.1rem, 4vw, 1.75rem);
    font-weight: 800;
    margin: 0 0 0.25rem 0;
    color: var(--text);
    font-family: 'Courier New', monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.balance-change[b-g2f9w82v5u],
.mining-status[b-g2f9w82v5u] {
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    color: var(--muted);
    line-height: 1.3;
}

/* Rate Card */
.rate-card[b-g2f9w82v5u] {
    background: linear-gradient(135deg, rgba(194,166,51,0.05), transparent);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: clamp(1rem, 2vw, 1.5rem);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: clamp(150px, 22vw, 200px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rate-header[b-g2f9w82v5u] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    flex-direction: column;
    gap: 0.5rem;
}

    .rate-header h3[b-g2f9w82v5u] {
        margin: 0;
        font-size: clamp(0.85rem, 2.5vw, 1rem);
        color: var(--text);
        line-height: 1.3;
    }

.rate-trend[b-g2f9w82v5u] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: clamp(0.65rem, 2vw, 0.8rem);
    align-self: flex-start;
}

    .rate-trend.positive[b-g2f9w82v5u] {
        background: rgba(194,166,51,0.1);
        color: #c2a633;
    }

.rate-content[b-g2f9w82v5u] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rate-amount[b-g2f9w82v5u] {
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: 800;
    margin: 0 0 0.25rem 0;
    color: var(--text);
    font-family: 'Courier New', monospace;
    line-height: 1.2;
}

.rate-description[b-g2f9w82v5u] {
    color: var(--muted);
    margin: 0 0 0.5rem 0;
    font-size: clamp(0.75rem, 2.5vw, 0.9rem);
    line-height: 1.4;
}

.rate-footer[b-g2f9w82v5u] {
    border-top: 1px solid var(--glass-border);
    padding-top: 0.5rem;
    margin-top: auto;
}

.rate-update[b-g2f9w82v5u] {
    font-size: clamp(0.65rem, 2vw, 0.8rem);
    color: var(--muted);
}

/* Info Card */
.info-card[b-g2f9w82v5u] {
    background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: clamp(1rem, 2vw, 1.5rem);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: clamp(180px, 25vw, 240px);
}

    .info-card h3[b-g2f9w82v5u] {
        margin: 0 0 0.75rem 0;
        font-size: clamp(0.85rem, 2.5vw, 1rem);
        color: var(--text);
    }

.info-content[b-g2f9w82v5u] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item[b-g2f9w82v5u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--glass-border);
    flex-wrap: wrap;
    gap: 0.5rem;
}

    .info-item:last-child[b-g2f9w82v5u] {
        border-bottom: none;
    }

    .info-item.highlight[b-g2f9w82v5u] {
        background: rgba(194,166,51,0.05);
        margin: 0.25rem -0.5rem -0.5rem;
        padding: 0.5rem 0.5rem;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(194,166,51,0.1);
    }

.info-label[b-g2f9w82v5u] {
    color: var(--muted);
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    flex-shrink: 0;
}

.info-value[b-g2f9w82v5u] {
    color: var(--text);
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    font-weight: 600;
    text-align: right;
    flex: 1;
    min-width: 100px;
}

/* Mining Stats */
.mining-stats-section[b-g2f9w82v5u] {
    padding: clamp(1rem, 2vw, 1.5rem);
    background: linear-gradient(135deg, rgba(255,255,255,0.02), transparent);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

    .mining-stats-section h3[b-g2f9w82v5u] {
        margin: 0 0 clamp(0.75rem, 2vw, 1.5rem) 0;
        font-size: clamp(1rem, 3vw, 1.5rem);
        color: var(--text);
        text-align: center;
    }

.stats-grid[b-g2f9w82v5u] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
    gap: clamp(0.5rem, 1.5vw, 1rem);
}

.stat-card[b-g2f9w82v5u] {
    background: rgba(255,255,255,0.03);
    padding: clamp(0.5rem, 1.5vw, 1rem);
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 70px;
}

    .stat-card:hover[b-g2f9w82v5u] {
        background: rgba(255,255,255,0.05);
        transform: translateY(-2px);
    }

.stat-label[b-g2f9w82v5u] {
    font-size: clamp(0.65rem, 1.5vw, 0.8rem);
    color: var(--muted);
    margin-bottom: 0.25rem;
}

.stat-value[b-g2f9w82v5u] {
    font-size: clamp(0.8rem, 2vw, 1.1rem);
    font-weight: 700;
    color: var(--accent);
    font-family: 'Courier New', monospace;
}

/* ===== FOOTER ===== */
.site-footer[b-g2f9w82v5u] {
    background: linear-gradient(180deg, rgba(11,15,18,0.95), rgba(11,15,18,0.98));
    border-top: 1px solid var(--glass-border);
    padding: 2.5rem 0 1.5rem;
    margin-top: 4rem;
    backdrop-filter: blur(20px);
    position: relative;
    animation: slideUpFade-b-g2f9w82v5u 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

    .site-footer[b-g2f9w82v5u]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
        opacity: 0.3;
    }

.footer-content[b-g2f9w82v5u] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand[b-g2f9w82v5u] {
    text-align: center;
    text-transform: uppercase;
}

    .footer-brand h3[b-g2f9w82v5u] {
        background: linear-gradient(135deg, var(--text), var(--accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .footer-brand p[b-g2f9w82v5u] {
        color: var(--muted);
        margin: 0;
        font-size: var(--step-0);
        line-height: 1.4;
    }

.footer-links[b-g2f9w82v5u] {
    display: flex;
    justify-content: center;
}

.footer-social[b-g2f9w82v5u] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link[b-g2f9w82v5u] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.02);
    transition: all var(--transition);
    font-size: var(--step-0);
    font-weight: 500;
    backdrop-filter: blur(10px);
}

    .footer-link:hover[b-g2f9w82v5u] {
        color: var(--accent);
        border-color: rgba(46, 231, 201, 0.3);
        background: rgba(46, 231, 201, 0.08);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(46, 231, 201, 0.15);
    }

    .footer-link:focus[b-g2f9w82v5u] {
        outline: none;
        box-shadow: var(--focus-ring);
    }

    .footer-link svg[b-g2f9w82v5u] {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        transition: transform var(--transition);
    }

    .footer-link:hover svg[b-g2f9w82v5u] {
        transform: scale(1.1);
    }

.footer-bottom[b-g2f9w82v5u] {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    text-align: center;
}

    .footer-bottom p[b-g2f9w82v5u] {
        color: var(--muted);
        margin: 0;
        font-size: var(--step-0);
        opacity: 0.8;
    }

/* ===== ANIMATIONS ===== */
@keyframes fadeInScale-b-g2f9w82v5u {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideDown-b-g2f9w82v5u {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpFade-b-g2f9w82v5u {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gentlePulse-b-g2f9w82v5u {
    0%, 100% {
        box-shadow: 0 8px 30px var(--accent-glow), 0 2px 10px rgba(46, 231, 201, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        box-shadow: 0 8px 35px rgba(46, 231, 201, 0.5), 0 2px 15px rgba(46, 231, 201, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Mobile First - Small devices */
@media (max-width: 480px) {
    .personal-account-container[b-g2f9w82v5u] {
        padding: 0.25rem;
    }

    .container[b-g2f9w82v5u] {
        width: min(100% - 1rem, var(--container-max));
        padding-inline: 0.5rem;
    }

    .account-header[b-g2f9w82v5u] {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
        gap: 0.75rem;
    }

    .balance-card[b-g2f9w82v5u],
    .rate-card[b-g2f9w82v5u],
    .info-card[b-g2f9w82v5u] {
        padding: 0.75rem;
        min-height: auto;
    }

    .info-item[b-g2f9w82v5u] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.15rem;
        padding: 0.3rem 0;
    }

    .info-value[b-g2f9w82v5u] {
        text-align: left;
        min-width: auto;
    }

    .stats-grid[b-g2f9w82v5u] {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .stat-card[b-g2f9w82v5u] {
        padding: 0.75rem;
        min-height: 60px;
    }

    .hero-title[b-g2f9w82v5u] {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
        line-height: 1.1;
    }

    .hero-description[b-g2f9w82v5u] {
        font-size: clamp(0.85rem, 3.5vw, 1.1rem);
    }

    .faq-main-title[b-g2f9w82v5u] {
        font-size: clamp(1.25rem, 5vw, 2rem);
    }

    summary[b-g2f9w82v5u] {
        padding: 0.25rem;
    }

    .faq-question-text[b-g2f9w82v5u] {
        font-size: clamp(0.8rem, 3vw, 1rem);
    }

    .hero-actions[b-g2f9w82v5u] {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .btn-earn[b-g2f9w82v5u] {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-width: 220px;
        max-width: 250px;
    }

    .hero-title[b-g2f9w82v5u] {
        text-align: center;
    }

    .site-footer[b-g2f9w82v5u] {
        padding: 1.5rem 0 1rem;
        margin-top: 2rem;
    }

    .footer-social[b-g2f9w82v5u] {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .footer-link[b-g2f9w82v5u] {
        width: 200px;
        justify-content: center;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .personal-account-container[b-g2f9w82v5u] {
        padding: 0.125rem;
    }

    .container[b-g2f9w82v5u] {
        width: min(100% - 0.5rem, var(--container-max));
        padding-inline: 0.25rem;
    }

    .balance-card[b-g2f9w82v5u],
    .rate-card[b-g2f9w82v5u],
    .info-card[b-g2f9w82v5u] {
        padding: 0.5rem;
    }

    .hero-title[b-g2f9w82v5u] {
        font-size: clamp(1.25rem, 8vw, 2rem);
    }

    .welcome-title[b-g2f9w82v5u] {
        font-size: clamp(1rem, 6vw, 1.75rem);
    }

    .btn-earn[b-g2f9w82v5u] {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
        min-width: 200px;
        max-width: 230px;
    }
}

/* Tablet and larger screens */
@media (min-width: 768px) {
    .personal-account-container[b-g2f9w82v5u] {
        padding: 2rem;
    }

    .account-header[b-g2f9w82v5u] {
        flex-direction: row;
        text-align: left;
        margin-bottom: 3rem;
        padding-bottom: 1.5rem;
    }

    .header-actions[b-g2f9w82v5u] {
        width: auto;
        justify-content: flex-end;
    }

    .account-grid[b-g2f9w82v5u] {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .balance-card[b-g2f9w82v5u] {
        padding: 1.5rem;
        min-height: 160px;
    }

    .rate-card[b-g2f9w82v5u] {
        padding: 1.5rem;
        min-height: 200px;
    }

    .rate-header[b-g2f9w82v5u] {
        flex-direction: row;
        align-items: center;
    }

    .info-card[b-g2f9w82v5u] {
        padding: 1.5rem;
        min-height: 240px;
    }

    .balance-card:hover[b-g2f9w82v5u] {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .rate-card:hover[b-g2f9w82v5u] {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(194,166,51,0.1);
    }

    .info-card:hover[b-g2f9w82v5u] {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

    .stat-card:hover[b-g2f9w82v5u] {
        transform: translateY(-3px);
    }

    .nav-menu[b-g2f9w82v5u] {
        flex-direction: row;
        align-items: center;
    }

    .hero-content[b-g2f9w82v5u] {
        grid-template-columns: 1fr 20rem;
        gap: 2rem;
    }

    .btn-earn[b-g2f9w82v5u] {
        flex: none;
        max-width: none;
        width: auto;
        min-width: 180px;
    }

    .site-footer[b-g2f9w82v5u] {
        padding: 2rem 0 1rem;
        margin-top: 3rem;
    }

    .footer-content[b-g2f9w82v5u] {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-social[b-g2f9w82v5u] {
        gap: 0.75rem;
    }

    .footer-link[b-g2f9w82v5u] {
        padding: 0.6rem 1rem;
        font-size: var(--step-0);
    }
}

/* Desktop screens */
@media (min-width: 1024px) {
    .account-grid[b-g2f9w82v5u] {
        grid-template-columns: repeat(2, 1fr);
    }

    .rate-card[b-g2f9w82v5u],
    .info-card[b-g2f9w82v5u] {
        grid-column: span 1;
    }

    .stats-grid[b-g2f9w82v5u] {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large desktop */
@media (min-width: 1200px) {
    .hero-section[b-g2f9w82v5u] {
        padding-block: 3rem;
    }

    .hero-background[b-g2f9w82v5u] {
        padding-block: 3rem;
    }

    .hero-content[b-g2f9w82v5u] {
        grid-template-columns: 1fr 28rem;
    }
}

/* ===== ACCESSIBILITY & SPECIAL CASES ===== */

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .balance-card:hover[b-g2f9w82v5u],
    .rate-card:hover[b-g2f9w82v5u],
    .info-card:hover[b-g2f9w82v5u],
    .stat-card:hover[b-g2f9w82v5u],
    .btn:hover[b-g2f9w82v5u] {
        transform: none;
    }

    .btn:active[b-g2f9w82v5u] {
        background: rgba(255,255,255,0.08);
        transform: scale(0.98);
    }
}

/* High contrast support */
@media (prefers-contrast: high) {
    .balance-card[b-g2f9w82v5u],
    .rate-card[b-g2f9w82v5u],
    .info-card[b-g2f9w82v5u],
    .stat-card[b-g2f9w82v5u] {
        border: 2px solid var(--text);
        background: transparent;
    }

    .balance-change[b-g2f9w82v5u],
    .mining-status[b-g2f9w82v5u],
    .rate-description[b-g2f9w82v5u],
    .rate-update[b-g2f9w82v5u],
    .info-label[b-g2f9w82v5u],
    .stat-label[b-g2f9w82v5u] {
        color: var(--text);
        opacity: 0.8;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .personal-account-container[b-g2f9w82v5u],
    .account-header[b-g2f9w82v5u],
    .balance-card[b-g2f9w82v5u],
    .rate-card[b-g2f9w82v5u],
    .info-card[b-g2f9w82v5u],
    .stat-card[b-g2f9w82v5u],
    .btn[b-g2f9w82v5u] {
        animation: none !important;
        transition: none !important;
    }

    .faq-content[b-g2f9w82v5u] {
        transition: none !important;
    }
}

/* Dark mode optimizations */
@media (prefers-color-scheme: dark) {
    .balance-card[b-g2f9w82v5u],
    .rate-card[b-g2f9w82v5u],
    .info-card[b-g2f9w82v5u],
    .stat-card[b-g2f9w82v5u] {
        background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    }
}

/* Print styles */
@media print {
    .personal-account-container[b-g2f9w82v5u] {
        background: white;
        color: black;
        padding: 0;
    }

    .balance-card[b-g2f9w82v5u],
    .rate-card[b-g2f9w82v5u],
    .info-card[b-g2f9w82v5u],
    .stat-card[b-g2f9w82v5u] {
        background: white;
        border: 1px solid #ccc;
        box-shadow: none;
    }

    .btn[b-g2f9w82v5u] {
        display: none;
    }
}

/* _content/MoneyAppsV4/Components/Pages/Personal.razor.rz.scp.css */
/* ===============================
   Agreement / Personal Page Styles
   =============================== */

.agreement-wrapper[b-mo3sm1s70u] {
    background: var(--bg);
    color: var(--text);
    font-family: var(--ff);
    padding-block: 1rem 2rem;
}

.agreement-main[b-mo3sm1s70u] {
    background: var(--panel);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    box-shadow: 0 6px 18px rgba(2,6,8,0.35);
    margin-top: 1rem;
}

/* Исправляем заголовок для мобильных устройств */
.agreement-main-title[b-mo3sm1s70u] {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
    word-break: break-word;
    hyphens: auto;
}

.document-subtitle[b-mo3sm1s70u] {
    color: var(--muted);
    font-weight: 500;
    font-size: clamp(0.9rem, 3vw, 1.25rem);
    line-height: 1.3;
    margin-top: 0.5rem;
    display: block;
}

.document-toc[b-mo3sm1s70u] {
    margin-block: 1.5rem 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
}

.toc-title[b-mo3sm1s70u] {
    font-size: var(--step-2);
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.toc-list[b-mo3sm1s70u] {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .toc-list li[b-mo3sm1s70u] {
        margin-bottom: 0.5rem;
        font-size: var(--step-0);
    }

    .toc-list a[b-mo3sm1s70u] {
        color: var(--accent);
        text-decoration: none;
        font-weight: 500;
        transition: color var(--transition);
    }

        .toc-list a:hover[b-mo3sm1s70u],
        .toc-list a:focus[b-mo3sm1s70u] {
            color: var(--accent-600);
        }

.section-title[b-mo3sm1s70u] {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.4rem;
    line-height: 1.3;
}

.subsection-title[b-mo3sm1s70u] {
    font-size: var(--step-1);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.agreement-text[b-mo3sm1s70u] {
    font-size: var(--step-0);
    line-height: 1.55;
    color: var(--muted);
    text-align: justify;
    margin-bottom: 1rem;
}

.highlight-box[b-mo3sm1s70u],
.warning-box[b-mo3sm1s70u] {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 1rem;
    margin-block: 1rem 1.5rem;
}

.highlight-text[b-mo3sm1s70u],
.warning-text[b-mo3sm1s70u] {
    color: var(--text);
    line-height: 1.6;
    font-size: var(--step-0);
}

.warning-title[b-mo3sm1s70u] {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: var(--step-0);
}

.term-card[b-mo3sm1s70u],
.method-card[b-mo3sm1s70u],
.feature-card[b-mo3sm1s70u],
.bonus-card[b-mo3sm1s70u] {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1rem;
}

.term-title[b-mo3sm1s70u],
.method-title[b-mo3sm1s70u],
.feature-title[b-mo3sm1s70u],
.bonus-title[b-mo3sm1s70u] {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: var(--step-0);
}

.term-definition[b-mo3sm1s70u],
.method-description[b-mo3sm1s70u],
.feature-description[b-mo3sm1s70u],
.bonus-description[b-mo3sm1s70u] {
    color: var(--muted);
    line-height: 1.55;
    font-size: var(--step-0);
}

.agreement-list[b-mo3sm1s70u] {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-block: 1rem;
}

.list-item[b-mo3sm1s70u] {
    margin-bottom: 0.5rem;
    color: var(--muted);
    font-size: var(--step-0);
}

.agreement-footer[b-mo3sm1s70u] {
    background: var(--panel);
    border-top: 1px solid var(--glass-border);
    padding-block: 1.5rem 2rem;
    margin-top: 2rem;
}

.footer-content[b-mo3sm1s70u] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.footer-links[b-mo3sm1s70u] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-link[b-mo3sm1s70u] {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition);
}

    .footer-link:hover[b-mo3sm1s70u] {
        color: var(--accent-600);
    }

.footer-meta[b-mo3sm1s70u] {
    color: var(--muted);
    font-size: var(--step-0);
}

.document-version[b-mo3sm1s70u] {
    opacity: 0.7;
    margin-top: 0.25rem;
}

/* Header навигации */
.document-header[b-mo3sm1s70u] {
    background: var(--panel);
    border-bottom: 1px solid var(--glass-border);
    padding-block: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.document-nav[b-mo3sm1s70u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link[b-mo3sm1s70u] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition);
    font-size: var(--step-0);
}

    .back-link:hover[b-mo3sm1s70u] {
        color: var(--accent-600);
    }

.document-actions[b-mo3sm1s70u] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-text[b-mo3sm1s70u] {
    background: none;
    border: none;
    color: var(--accent);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition);
    font-size: var(--step-0);
}

    .btn-text:hover[b-mo3sm1s70u] {
        color: var(--accent-600);
    }

.font-large .agreement-text[b-mo3sm1s70u] {
    font-size: calc(var(--step-0) * 1.15);
}

.font-x-large .agreement-text[b-mo3sm1s70u] {
    font-size: calc(var(--step-0) * 1.3);
}

/* Специфичные стили для сеток */
.terms-grid[b-mo3sm1s70u],
.registration-methods[b-mo3sm1s70u],
.features-grid[b-mo3sm1s70u] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-block: 1.5rem;
}

.bonus-info[b-mo3sm1s70u],
.level-up-conditions[b-mo3sm1s70u] {
    margin-block: 1.5rem;
}

.bonus-rates[b-mo3sm1s70u],
.conditions-list[b-mo3sm1s70u] {
    margin-top: 1rem;
}

.rates-list[b-mo3sm1s70u],
.conditions-list[b-mo3sm1s70u] {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

    .rates-list li[b-mo3sm1s70u],
    .conditions-list li[b-mo3sm1s70u] {
        margin-bottom: 0.5rem;
        color: var(--muted);
    }

/* Responsive */
@media (min-width: 768px) {
    .agreement-wrapper[b-mo3sm1s70u] {
        padding-block: 2rem 3rem;
    }

    .agreement-main[b-mo3sm1s70u] {
        padding: 3rem 3.5rem;
        margin-top: 0;
    }

    .agreement-main-title[b-mo3sm1s70u] {
        font-size: var(--step-6);
        margin-bottom: 1.25rem;
    }

    .document-toc[b-mo3sm1s70u] {
        padding: 2rem;
        margin-block: 2rem 2.5rem;
    }

    .terms-grid[b-mo3sm1s70u],
    .registration-methods[b-mo3sm1s70u],
    .features-grid[b-mo3sm1s70u] {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .agreement-footer[b-mo3sm1s70u] {
        padding-block: 2rem 2.5rem;
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .agreement-main[b-mo3sm1s70u] {
        padding: 1rem 0.75rem;
        margin: 0.5rem;
    }

    .agreement-main-title[b-mo3sm1s70u] {
        font-size: clamp(1.25rem, 6vw, 2.5rem);
        line-height: 1.1;
    }

    .document-subtitle[b-mo3sm1s70u] {
        font-size: clamp(0.8rem, 3.5vw, 1.1rem);
        line-height: 1.2;
    }

    .section-title[b-mo3sm1s70u] {
        font-size: clamp(1.1rem, 4.5vw, 1.5rem);
        line-height: 1.2;
    }

    .agreement-text[b-mo3sm1s70u] {
        font-size: 0.9rem;
        text-align: left;
    }

    .document-toc[b-mo3sm1s70u] {
        padding: 0.75rem 1rem;
        margin-block: 1rem 1.5rem;
    }

    .toc-list li[b-mo3sm1s70u] {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .agreement-main[b-mo3sm1s70u] {
        padding: 0.75rem 0.5rem;
        margin: 0.25rem;
    }

    .agreement-main-title[b-mo3sm1s70u] {
        font-size: clamp(1.1rem, 7vw, 2rem);
    }

    .document-subtitle[b-mo3sm1s70u] {
        font-size: clamp(0.75rem, 4vw, 1rem);
    }

    .section-title[b-mo3sm1s70u] {
        font-size: clamp(1rem, 5vw, 1.3rem);
    }

    .agreement-text[b-mo3sm1s70u] {
        font-size: 0.85rem;
    }
}
/* _content/MoneyAppsV4/Components/Pages/Privacy.razor.rz.scp.css */
/* ===============================
   Zarabotok (Заработок на Android)
   =============================== */

.android-earnings-page[b-nkhfwybcuj] {
    background: var(--bg);
    color: var(--text);
    font-family: var(--ff);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ---------- Header ---------- */
.android-earnings-page header[b-nkhfwybcuj] {
    background: var(--panel);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 6px 18px rgba(2,6,8,0.3);
    position: sticky;
    top: 0;
    z-index: 10;
}

.android-earnings-page .header[b-nkhfwybcuj] {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.android-earnings-page nav ul[b-nkhfwybcuj] {
    display: flex;
    gap: 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.android-earnings-page nav a[b-nkhfwybcuj] {
    color: var(--muted);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition);
}

.android-earnings-page nav a:hover[b-nkhfwybcuj],
.android-earnings-page nav a:focus[b-nkhfwybcuj] {
    color: var(--accent);
}

/* ---------- Hero Section ---------- */
.hero[b-nkhfwybcuj] {
    background: var(--panel);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(2,6,8,0.35);
    margin: 2rem auto;
    max-width: 80rem;
}

.hero h1[b-nkhfwybcuj] {
    font-size: var(--step-6);
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero p[b-nkhfwybcuj] {
    color: var(--muted);
    font-size: var(--step-1);
    margin-bottom: 2rem;
}

.qr-code[b-nkhfwybcuj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.qr-code img[b-nkhfwybcuj] {
    width: 130px;
    height: 130px;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
}

/* ---------- Stats Section ---------- */
.stats[b-nkhfwybcuj] {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg);
}

.stats .stat-number[b-nkhfwybcuj] {
    font-size: var(--step-7);
    font-weight: 900;
    color: var(--accent);
    margin: 1rem 0;
}

.payment-methods[b-nkhfwybcuj] {
    margin-top: 2rem;
}

.payment-methods p[b-nkhfwybcuj] {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 1rem;
}

.payment-methods .methods[b-nkhfwybcuj] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.method[b-nkhfwybcuj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
}

/* ---------- Rating Section ---------- */
.rating[b-nkhfwybcuj] {
    background: var(--panel);
    border-radius: var(--radius);
    box-shadow: 0 6px 18px rgba(2,6,8,0.35);
    padding: 3rem 2rem;
    margin: 2rem auto;
    max-width: 70rem;
    text-align: center;
}

.rating h3[b-nkhfwybcuj] {
    font-size: var(--step-4);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.rating-list[b-nkhfwybcuj] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-item[b-nkhfwybcuj] {
    display: flex;
    justify-content: space-between;
    background: rgba(255,255,255,0.02);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
}

.rating-item .place[b-nkhfwybcuj] {
    font-weight: 700;
    color: var(--accent);
}

.rating-item .amount[b-nkhfwybcuj] {
    font-weight: 700;
    color: var(--text);
}

.rating-item .name[b-nkhfwybcuj] {
    color: var(--muted);
}

/* ---------- Benefits Section ---------- */
.benefits[b-nkhfwybcuj] {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 3rem 2rem;
    background: var(--bg);
}

.benefit[b-nkhfwybcuj] {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.benefit-reversed[b-nkhfwybcuj] {
    flex-direction: row-reverse;
}

.benefit-text h3[b-nkhfwybcuj] {
    font-size: var(--step-4);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.benefit-text p[b-nkhfwybcuj] {
    color: var(--muted);
    font-size: var(--step-1);
    line-height: 1.6;
}

.benefit-image img[b-nkhfwybcuj] {
    width: 280px;
    max-width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
}

/* ---------- FAQ Section ---------- */
.faq[b-nkhfwybcuj] {
    background: var(--panel);
    border-radius: var(--radius);
    box-shadow: 0 6px 18px rgba(2,6,8,0.35);
    padding: 3rem 2rem;
    margin: 3rem auto;
    max-width: 70rem;
}

.faq h2[b-nkhfwybcuj] {
    font-size: var(--step-5);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
}

.faq-item[b-nkhfwybcuj] {
    margin-bottom: 1.25rem;
}

.faq-item h3[b-nkhfwybcuj] {
    font-size: var(--step-2);
    color: var(--text);
    margin-bottom: 0.5rem;
}

.faq-item p[b-nkhfwybcuj] {
    color: var(--muted);
    font-size: var(--step-1);
    line-height: 1.6;
}

/* ---------- Footer ---------- */
footer[b-nkhfwybcuj] {
    margin-top: auto;
    background: var(--panel);
    border-top: 1px solid var(--glass-border);
    padding: 2rem 1rem;
    text-align: center;
}

.download[b-nkhfwybcuj] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.download img[b-nkhfwybcuj] {
    width: 140px;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
}

.download-content h2[b-nkhfwybcuj] {
    font-size: var(--step-4);
    font-weight: 800;
    color: var(--text);
}

.footer-content[b-nkhfwybcuj] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 2rem;
    align-items: start;
    max-width: 80rem;
    margin: 0 auto;
    text-align: left;
}

.footer-section[b-nkhfwybcuj] {
    color: var(--muted);
}

.footer-section nav a[b-nkhfwybcuj],
.footer-section a[b-nkhfwybcuj] {
    display: block;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color var(--transition);
}

.footer-section a:hover[b-nkhfwybcuj],
.footer-section a:focus[b-nkhfwybcuj] {
    color: var(--accent);
}

.social-links a[b-nkhfwybcuj] {
    display: inline-block;
    margin-right: 1rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .benefit[b-nkhfwybcuj] {
        flex-direction: column;
        text-align: center;
    }

    .rating-item[b-nkhfwybcuj] {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }

    .hero[b-nkhfwybcuj] {
        padding: 3rem 1rem;
    }

    .footer-content[b-nkhfwybcuj] {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
