/* /Pages/Index.cshtml.rz.scp.css */

*[b-z84stdcc3t] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root[b-z84stdcc3t] {
    --bg-dark: #0f1014;
    --bg-panel: #181a20;
    --bg-input: #23262f;
    --primary: #FFFC00;
    --primary-text: #000;
    --text-main: #ffffff;
    --text-muted: #8b929a;
    --accent-green: #00ff9d;
    --accent-blue: #00a3ff;
    --border: #2d313a;
    --radius: 12px;
}

body[b-z84stdcc3t] {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header[b-z84stdcc3t] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 16, 20, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

nav[b-z84stdcc3t] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo[b-z84stdcc3t] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
    color: var(--text-main);
}

.logo-icon[b-z84stdcc3t] {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--primary-text);
}

.nav-links[b-z84stdcc3t] {
    display: flex;
    gap: 2rem;
    align-items: center;
}

    .nav-links a[b-z84stdcc3t] {
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.2s;
        font-weight: 500;
    }

        .nav-links a:hover[b-z84stdcc3t] {
            color: var(--text-main);
        }

.btn-primary[b-z84stdcc3t] {
    background: var(--primary);
    color: var(--primary-text);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, filter 0.2s;
    border: none;
    cursor: pointer;
}

    .btn-primary:hover[b-z84stdcc3t] {
        transform: translateY(-2px);
        filter: brightness(1.1);
    }

.btn-secondary[b-z84stdcc3t] {
    background: transparent;
    color: var(--text-main);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

    .btn-secondary:hover[b-z84stdcc3t] {
        border-color: var(--text-main);
        background: rgba(255, 255, 255, 0.05);
    }

/* Hero Section */
.hero[b-z84stdcc3t] {
    padding: 10rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.glow-bg[b-z84stdcc3t] {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 252, 0, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-content[b-z84stdcc3t] {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

h1[b-z84stdcc3t] {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text[b-z84stdcc3t] {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p[b-z84stdcc3t] {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons[b-z84stdcc3t] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

    .cta-buttons .btn-primary[b-z84stdcc3t] {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }

    .cta-buttons .btn-secondary[b-z84stdcc3t] {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }

/* Features Section */
.section[b-z84stdcc3t] {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header[b-z84stdcc3t] {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-header h2[b-z84stdcc3t] {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .section-header p[b-z84stdcc3t] {
        font-size: 1.2rem;
        color: var(--text-muted);
    }

.features-grid[b-z84stdcc3t] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card[b-z84stdcc3t] {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.2s, border-color 0.2s;
}

    .feature-card:hover[b-z84stdcc3t] {
        transform: translateY(-5px);
        border-color: rgba(255, 255, 255, 0.2);
    }

.feature-icon[b-z84stdcc3t] {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3[b-z84stdcc3t] {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card p[b-z84stdcc3t] {
    color: var(--text-muted);
    line-height: 1.7;
}

/* How It Works */
.steps[b-z84stdcc3t] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step[b-z84stdcc3t] {
    text-align: center;
    position: relative;
}

.step-number[b-z84stdcc3t] {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--primary-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3[b-z84stdcc3t] {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.step p[b-z84stdcc3t] {
    color: var(--text-muted);
}

/* Pricing Section */
.pricing-grid[b-z84stdcc3t] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card[b-z84stdcc3t] {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
    position: relative;
}

    .pricing-card.popular[b-z84stdcc3t] {
        border-color: var(--primary);
        transform: scale(1.05);
    }

        .pricing-card.popular[b-z84stdcc3t]::before {
            content: "Most Popular";
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: var(--primary-text);
            padding: 0.25rem 1rem;
            border-radius: 0 0 8px 8px;
            font-size: 0.8rem;
            font-weight: 700;
        }

    .pricing-card:hover[b-z84stdcc3t] {
        transform: translateY(-5px) scale(1.02);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .pricing-card.popular:hover[b-z84stdcc3t] {
        transform: translateY(-5px) scale(1.05);
    }

    .pricing-card h3[b-z84stdcc3t] {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--text-muted);
    }

.price[b-z84stdcc3t] {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-unit[b-z84stdcc3t] {
    font-size: 1rem;
    color: var(--text-muted);
}

.credits[b-z84stdcc3t] {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.pricing-features[b-z84stdcc3t] {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

    .pricing-features li[b-z84stdcc3t] {
        padding: 0.5rem 0;
        color: var(--text-muted);
    }

        .pricing-features li[b-z84stdcc3t]::before {
            content: "✓ ";
            color: var(--accent-green);
            font-weight: 700;
            margin-right: 0.5rem;
        }

/* CTA Section */
.cta-section[b-z84stdcc3t] {
    background: linear-gradient(135deg, rgba(255, 252, 0, 0.1), transparent);
    border: 1px solid rgba(255, 252, 0, 0.2);
    border-radius: var(--radius);
    padding: 4rem 2rem;
    text-align: center;
    margin: 5rem auto;
    max-width: 1000px;
}

    .cta-section h2[b-z84stdcc3t] {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .cta-section p[b-z84stdcc3t] {
        font-size: 1.2rem;
        color: var(--text-muted);
        margin-bottom: 2rem;
    }

/* Footer */
footer[b-z84stdcc3t] {
    background: var(--bg-panel);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-content[b-z84stdcc3t] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4[b-z84stdcc3t] {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul[b-z84stdcc3t] {
    list-style: none;
}

    .footer-section ul li[b-z84stdcc3t] {
        margin-bottom: 0.5rem;
    }

.footer-section a[b-z84stdcc3t] {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

    .footer-section a:hover[b-z84stdcc3t] {
        color: var(--text-main);
    }

.footer-bottom[b-z84stdcc3t] {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    h1[b-z84stdcc3t] {
        font-size: 2.5rem;
    }

    .hero p[b-z84stdcc3t] {
        font-size: 1.1rem;
    }

    .nav-links[b-z84stdcc3t] {
        display: none;
    }

    .section-header h2[b-z84stdcc3t] {
        font-size: 2rem;
    }

    .pricing-card.popular[b-z84stdcc3t] {
        transform: scale(1);
    }

    .features-grid[b-z84stdcc3t], .steps[b-z84stdcc3t], .pricing-grid[b-z84stdcc3t] {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Toggle */
.menu-toggle[b-z84stdcc3t] {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle[b-z84stdcc3t] {
        display: block;
    }

    .nav-links[b-z84stdcc3t] {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-panel);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--border);
    }

        .nav-links.active[b-z84stdcc3t] {
            display: flex;
        }
}

.scroll-indicator[b-z84stdcc3t] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}

    .scroll-indicator.visible[b-z84stdcc3t] {
        opacity: 1;
        transform: translateY(0);
    }
/* /Pages/NotFound.cshtml.rz.scp.css */
.error-container[b-j63luusipa] {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

.glow-bg[b-j63luusipa] {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 252, 0, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.content[b-j63luusipa] {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

h1.glitch-text[b-j63luusipa] {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--primary);
    position: relative;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
}

h2[b-j63luusipa] {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

p[b-j63luusipa] {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.actions[b-j63luusipa] {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 768px) {
    h1.glitch-text[b-j63luusipa] {
        font-size: 5rem;
    }

    h2[b-j63luusipa] {
        font-size: 1.5rem;
    }

    .actions[b-j63luusipa] {
        flex-direction: column;
    }
}
/* /Pages/Privacy.cshtml.rz.scp.css */
*[b-eyn0jryvqr] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root[b-eyn0jryvqr] {
    --bg-dark: #0f1014;
    --bg-panel: #181a20;
    --primary: #FFFC00;
    --primary-text: #000;
    --text-main: #ffffff;
    --text-muted: #8b929a;
    --border: #2d313a;
}

body[b-eyn0jryvqr] {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.8;
}

header[b-eyn0jryvqr] {
    background: var(--bg-panel);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

nav[b-eyn0jryvqr] {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo[b-eyn0jryvqr] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--text-main);
}

.logo-icon[b-eyn0jryvqr] {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--primary-text);
    font-size: 0.9rem;
}

.back-link[b-eyn0jryvqr] {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: auto;
}

    .back-link:hover[b-eyn0jryvqr] {
        color: var(--text-main);
    }

main[b-eyn0jryvqr] {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

h1[b-eyn0jryvqr] {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.last-updated[b-eyn0jryvqr] {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

h2[b-eyn0jryvqr] {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

h3[b-eyn0jryvqr] {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

p[b-eyn0jryvqr] {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

ul[b-eyn0jryvqr], ol[b-eyn0jryvqr] {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

li[b-eyn0jryvqr] {
    margin-bottom: 0.5rem;
}

strong[b-eyn0jryvqr] {
    color: var(--text-main);
}

a[b-eyn0jryvqr] {
    color: var(--primary);
    text-decoration: none;
}

    a:hover[b-eyn0jryvqr] {
        text-decoration: underline;
    }

.notice[b-eyn0jryvqr] {
    background: rgba(255, 252, 0, 0.1);
    border-left: 4px solid var(--primary);
    padding: 1rem;
    margin: 2rem 0;
    border-radius: 4px;
}

    .notice p[b-eyn0jryvqr] {
        color: var(--text-main);
        margin: 0;
    }

table[b-eyn0jryvqr] {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--bg-panel);
    border-radius: 8px;
    overflow: hidden;
}

th[b-eyn0jryvqr], td[b-eyn0jryvqr] {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

th[b-eyn0jryvqr] {
    background: rgba(255, 252, 0, 0.1);
    color: var(--text-main);
    font-weight: 600;
}

td[b-eyn0jryvqr] {
    color: var(--text-muted);
}

tr:last-child td[b-eyn0jryvqr] {
    border-bottom: none;
}

footer[b-eyn0jryvqr] {
    background: var(--bg-panel);
    border-top: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    margin-top: 4rem;
}

@media (max-width: 768px) {
    h1[b-eyn0jryvqr] {
        font-size: 2rem;
    }

    h2[b-eyn0jryvqr] {
        font-size: 1.5rem;
    }

    main[b-eyn0jryvqr] {
        padding: 2rem 1.5rem;
    }

    table[b-eyn0jryvqr] {
        font-size: 0.9rem;
    }

    th[b-eyn0jryvqr], td[b-eyn0jryvqr] {
        padding: 0.75rem;
    }
}
/* /Pages/Terms.cshtml.rz.scp.css */
*[b-9sixlfzmf1] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root[b-9sixlfzmf1] {
    --bg-dark: #0f1014;
    --bg-panel: #181a20;
    --primary: #FFFC00;
    --primary-text: #000;
    --text-main: #ffffff;
    --text-muted: #8b929a;
    --border: #2d313a;
}

body[b-9sixlfzmf1] {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.8;
}

header[b-9sixlfzmf1] {
    background: var(--bg-panel);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

nav[b-9sixlfzmf1] {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo[b-9sixlfzmf1] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--text-main);
}

.logo-icon[b-9sixlfzmf1] {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--primary-text);
    font-size: 0.9rem;
}

.back-link[b-9sixlfzmf1] {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: auto;
}

    .back-link:hover[b-9sixlfzmf1] {
        color: var(--text-main);
    }

main[b-9sixlfzmf1] {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

h1[b-9sixlfzmf1] {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.last-updated[b-9sixlfzmf1] {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

h2[b-9sixlfzmf1] {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

h3[b-9sixlfzmf1] {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

p[b-9sixlfzmf1] {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

ul[b-9sixlfzmf1], ol[b-9sixlfzmf1] {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

li[b-9sixlfzmf1] {
    margin-bottom: 0.5rem;
}

strong[b-9sixlfzmf1] {
    color: var(--text-main);
}

a[b-9sixlfzmf1] {
    color: var(--primary);
    text-decoration: none;
}

    a:hover[b-9sixlfzmf1] {
        text-decoration: underline;
    }

.notice[b-9sixlfzmf1] {
    background: rgba(255, 252, 0, 0.1);
    border-left: 4px solid var(--primary);
    padding: 1rem;
    margin: 2rem 0;
    border-radius: 4px;
}

    .notice p[b-9sixlfzmf1] {
        color: var(--text-main);
        margin: 0;
    }

footer[b-9sixlfzmf1] {
    background: var(--bg-panel);
    border-top: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    margin-top: 4rem;
}

@media (max-width: 768px) {
    h1[b-9sixlfzmf1] {
        font-size: 2rem;
    }

    h2[b-9sixlfzmf1] {
        font-size: 1.5rem;
    }

    main[b-9sixlfzmf1] {
        padding: 2rem 1.5rem;
    }
}
