/* /Components/AboutSection.razor.rz.scp.css */
.about-section[b-tlu209zvx5] {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.section-content[b-tlu209zvx5] {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid[b-tlu209zvx5] {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.section-eyebrow[b-tlu209zvx5] {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title[b-tlu209zvx5] {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.accent[b-tlu209zvx5] {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-description[b-tlu209zvx5] {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Skills Grid */
.skills-grid[b-tlu209zvx5] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.skill-category[b-tlu209zvx5] {
    padding: 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    transition: all 0.3s;
}

.skill-category:hover[b-tlu209zvx5] {
    border-color: var(--primary);
    background: rgba(0, 229, 255, 0.05);
}

.skill-title[b-tlu209zvx5] {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.skill-tags[b-tlu209zvx5] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag[b-tlu209zvx5] {
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-main);
}

/* Visual */
.about-visual[b-tlu209zvx5] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.signature-hitbox[b-tlu209zvx5] {
    padding: 2rem;
    cursor: crosshair;
}

.signature-card[b-tlu209zvx5] {
    width: 280px;
    height: 280px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-family: var(--font-brand);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    transform-style: preserve-3d;
}

.signature-hitbox:hover .signature-card[b-tlu209zvx5] {
    border-color: rgba(0, 229, 255, 0.3);
}

.signature-card[b-tlu209zvx5]::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 2.6rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: destination-out;
    opacity: 0.3;
    z-index: 1;
}

.sig-n[b-tlu209zvx5],
.sig-8[b-tlu209zvx5] {
    pointer-events: none;
}

.sig-n[b-tlu209zvx5] {
    font-size: 10rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 40px rgba(0, 229, 255, 0.3);
}

.sig-8[b-tlu209zvx5] {
    font-size: 11rem;
    font-weight: 900;
    color: var(--secondary);
    margin-left: -2.5rem;
    text-shadow: 0 0 40px rgba(255, 0, 127, 0.3);
}

@media (max-width: 968px) {
    .about-section[b-tlu209zvx5] {
        padding: var(--space-4xl) var(--space-md);
    }

    .about-grid[b-tlu209zvx5] {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }

    .skills-grid[b-tlu209zvx5] {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: var(--space-xl) auto 0;
    }

    .skill-category[b-tlu209zvx5] {
        min-height: var(--touch-min);
    }

    .about-visual[b-tlu209zvx5] {
        order: -1;
    }

    .signature-card[b-tlu209zvx5] {
        width: 200px;
        height: 200px;
    }

    .sig-n[b-tlu209zvx5] {
        font-size: 7rem;
    }

    .sig-8[b-tlu209zvx5] {
        font-size: 8rem;
        margin-left: -1.5rem;
    }
}

@media (max-width: 480px) {
    .about-section[b-tlu209zvx5] {
        padding: var(--space-3xl) var(--space-md);
    }

    .section-title[b-tlu209zvx5] {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .about-description[b-tlu209zvx5] {
        font-size: 1rem;
    }

    .skills-grid[b-tlu209zvx5] {
        max-width: 100%;
        gap: var(--space-md);
    }

    .skill-category[b-tlu209zvx5] {
        padding: var(--space-md);
    }

    .signature-card[b-tlu209zvx5] {
        width: 160px;
        height: 160px;
        border-radius: var(--radius-xl);
    }

    .sig-n[b-tlu209zvx5] {
        font-size: 5.5rem;
    }

    .sig-8[b-tlu209zvx5] {
        font-size: 6.5rem;
        margin-left: -1rem;
    }
}

/* Small phones */
@media (max-width: 375px) {
    .about-section[b-tlu209zvx5] {
        padding: var(--space-2xl) var(--space-sm);
    }

    .signature-card[b-tlu209zvx5] {
        width: 140px;
        height: 140px;
    }

    .sig-n[b-tlu209zvx5] {
        font-size: 4.5rem;
    }

    .sig-8[b-tlu209zvx5] {
        font-size: 5.5rem;
        margin-left: -0.75rem;
    }

    .tag[b-tlu209zvx5] {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}
/* /Components/AiApproachSection.razor.rz.scp.css */
.ai-section[b-edwpmlz6gk] {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 229, 255, 0.02) 50%, transparent 100%);
}

.section-content[b-edwpmlz6gk] {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
.section-header[b-edwpmlz6gk] {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow[b-edwpmlz6gk] {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title[b-edwpmlz6gk] {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.accent[b-edwpmlz6gk] {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle[b-edwpmlz6gk] {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Benefits Grid */
.benefits-grid[b-edwpmlz6gk] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Benefit Card */
.benefit-card[b-edwpmlz6gk] {
    position: relative;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card[b-edwpmlz6gk]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.benefit-card:hover[b-edwpmlz6gk] {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.2);
}

.benefit-card:hover[b-edwpmlz6gk]::before {
    opacity: 1;
}

/* Icon */
.benefit-icon[b-edwpmlz6gk] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
    font-size: 2rem;
}

.icon-glow[b-edwpmlz6gk] {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(8px);
    animation: glowPulse-b-edwpmlz6gk 3s ease-in-out infinite;
}

@keyframes glowPulse-b-edwpmlz6gk {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.benefit-title[b-edwpmlz6gk] {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.benefit-description[b-edwpmlz6gk] {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* AI Note */
.ai-note[b-edwpmlz6gk] {
    text-align: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(255, 0, 127, 0.05));
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.ai-note p[b-edwpmlz6gk] {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.ai-note strong[b-edwpmlz6gk] {
    color: var(--text-main);
}

/* Responsive */
@media (max-width: 900px) {
    .benefits-grid[b-edwpmlz6gk] {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .ai-section[b-edwpmlz6gk] {
        padding: 4rem 1rem;
    }

    .benefit-card[b-edwpmlz6gk] {
        padding: 1.5rem;
    }

    .ai-note[b-edwpmlz6gk] {
        padding: 1.25rem 1.5rem;
    }
}
/* /Components/AppPresentation.razor.rz.scp.css */
.app-presentation[b-1v4kaf581y] {
    width: 100%;
    margin-bottom: 6rem;
    perspective: 1200px;
}

.app-glass[b-1v4kaf581y] {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4rem;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    box-shadow:
        0 40px 100px -20px rgba(0, 0, 0, 0.7),
        0 20px 50px -10px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transform: rotateX(2deg);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    animation: slideUpReveal-b-1v4kaf581y 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    position: relative;
    overflow: hidden;
}

.app-glass[b-1v4kaf581y]::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y),
            rgba(255, 255, 255, 0.06),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 3;
}

.app-glass:hover[b-1v4kaf581y]::after {
    opacity: 1;
}

@keyframes slideUpReveal-b-1v4kaf581y {
    from {
        opacity: 0;
        transform: translateY(60px) rotateX(10deg);
    }

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

.app-glass:hover[b-1v4kaf581y] {
    transform: rotateX(0) translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.app-visual[b-1v4kaf581y] {
    position: relative;
    flex-shrink: 0;
}

.visual-glow[b-1v4kaf581y] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--brand-color) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(40px);
    z-index: 0;
}

.app-icon-wrapper[b-1v4kaf581y] {
    position: relative;
    z-index: 1;
    width: 240px;
    height: 240px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.app-icon-inner[b-1v4kaf581y] {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-color) 0%, var(--secondary) 100%);
    border-radius: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    color: #fff;
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.3);
}

.app-details[b-1v4kaf581y] {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-type-badge[b-1v4kaf581y] {
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-color);
    margin-bottom: 1.5rem;
}

.app-title[b-1v4kaf581y] {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    background: linear-gradient(to bottom, #fff 40%, rgba(255, 255, 255, 0.55));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.15));
}

.app-specs-integrated[b-1v4kaf581y] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-integrated[b-1v4kaf581y] {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

.spec-integrated.live[b-1v4kaf581y] {
    color: #00ff88;
}

.spec-integrated.wip[b-1v4kaf581y] {
    color: #ffaa00;
}

.spec-dot[b-1v4kaf581y] {
    width: 4px;
    height: 4px;
    background: var(--brand-color);
    opacity: 0.3;
    border-radius: 50%;
}

.app-tagline[b-1v4kaf581y] {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 3.5rem;
    max-width: 650px;
    letter-spacing: 0.01em;
}

.app-actions[b-1v4kaf581y] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.btn-primary[b-1v4kaf581y] {
    position: relative;
    padding: 1.4rem 3rem;
    background: #fff;
    color: #000;
    border-radius: 4rem;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover[b-1v4kaf581y] {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.25);
    background: #fff;
}

.btn-primary:active[b-1v4kaf581y] {
    transform: translateY(0) scale(0.98);
}

.btn-secondary[b-1v4kaf581y] {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    letter-spacing: 0.05em;
}

.btn-secondary:hover[b-1v4kaf581y] {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 950px) {
    .app-glass[b-1v4kaf581y] {
        padding: 4rem 2rem;
        gap: 2.5rem;
    }

    .app-title[b-1v4kaf581y] {
        font-size: 3.5rem;
    }

    .app-tagline[b-1v4kaf581y] {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .app-icon-wrapper[b-1v4kaf581y] {
        width: 180px;
        height: 180px;
    }

    .app-icon-inner[b-1v4kaf581y] {
        font-size: 6rem;
    }

    .app-actions[b-1v4kaf581y] {
        flex-direction: column;
        gap: 1.5rem;
    }

    .btn-primary[b-1v4kaf581y] {
        width: 100%;
        padding: 1.2rem 2rem;
    }
}

@media (max-width: 500px) {
    .app-glass[b-1v4kaf581y] {
        padding: 3rem 1.5rem;
        border-radius: 2.5rem;
        gap: 2rem;
    }

    .app-icon-wrapper[b-1v4kaf581y] {
        width: 140px;
        height: 140px;
        border-radius: 2.5rem;
    }

    .app-icon-inner[b-1v4kaf581y] {
        font-size: 4.5rem;
        border-radius: 2rem;
    }

    .app-title[b-1v4kaf581y] {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .app-specs-integrated[b-1v4kaf581y] {
        gap: 1rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.5rem;
    }

    .spec-integrated[b-1v4kaf581y] {
        font-size: 0.75rem;
    }

    .app-tagline[b-1v4kaf581y] {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .app-actions[b-1v4kaf581y] {
        gap: 1.25rem;
        width: 100%;
    }

    .btn-primary[b-1v4kaf581y] {
        padding: 1rem 2rem;
        font-size: 1.05rem;
    }

    .btn-secondary[b-1v4kaf581y] {
        font-size: 1rem;
    }
}
/* /Components/AppsSection.razor.rz.scp.css */
.apps-section[b-ydnvxuin10] {
    position: relative;
    min-height: 100vh;
    width: 100%;
    padding: 10rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    background: var(--bg-dark);
}

.section-content[b-ydnvxuin10] {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
}

/* Header */
.section-header[b-ydnvxuin10] {
    margin-bottom: 6.5rem;
    max-width: 600px;
}

.section-title[b-ydnvxuin10] {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 1.5rem;
}

.section-subtitle[b-ydnvxuin10] {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Apps Grid */
.apps-grid[b-ydnvxuin10] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
    gap: var(--space-lg);
    width: 100%;
}

/* App Card */
.app-card[b-ydnvxuin10] {
    position: relative;
    border-radius: 24px;
    background: var(--glass-bg);
    border: 0.5px solid var(--glass-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 2.5rem;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.2, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
    animation: cardEntrance-b-ydnvxuin10 1s cubic-bezier(0.2, 0, 0.2, 1) forwards;
    overflow: hidden;
}

.app-card[b-ydnvxuin10]::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y),
            rgba(255, 255, 255, 0.08),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 3;
}

.app-card:hover[b-ydnvxuin10]::after {
    opacity: 1;
}

@keyframes cardEntrance-b-ydnvxuin10 {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }

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

.app-card:nth-child(1)[b-ydnvxuin10] {
    animation-delay: 0.1s;
}

.app-card:nth-child(2)[b-ydnvxuin10] {
    animation-delay: 0.2s;
}

.app-card:nth-child(3)[b-ydnvxuin10] {
    animation-delay: 0.3s;
}

.app-card:nth-child(4)[b-ydnvxuin10] {
    animation-delay: 0.4s;
}

.app-card:nth-child(5)[b-ydnvxuin10] {
    animation-delay: 0.5s;
}

.app-card:nth-child(6)[b-ydnvxuin10] {
    animation-delay: 0.6s;
}

.app-card:hover[b-ydnvxuin10] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.app-card:focus-visible[b-ydnvxuin10] {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary), 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}

.app-icon[b-ydnvxuin10] {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.icon-letter[b-ydnvxuin10] {
    font-family: var(--font-brand);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    opacity: 0.8;
}

.app-card:hover .app-icon[b-ydnvxuin10] {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.app-info[b-ydnvxuin10] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-header[b-ydnvxuin10] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-name[b-ydnvxuin10] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.status-badge[b-ydnvxuin10] {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.status-badge.live[b-ydnvxuin10] {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 0.5px solid rgba(16, 185, 129, 0.3);
}

.status-badge.wip[b-ydnvxuin10] {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 0.5px solid rgba(245, 158, 11, 0.3);
}

.app-description[b-ydnvxuin10] {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.app-meta[b-ydnvxuin10] {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.platform[b-ydnvxuin10],
.store-link[b-ydnvxuin10],
.nuget-link[b-ydnvxuin10] {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.store-link:hover[b-ydnvxuin10],
.nuget-link:hover[b-ydnvxuin10] {
    color: #fff;
}

@media (max-width: 768px) {
    .apps-section[b-ydnvxuin10] {
        padding: var(--space-4xl) var(--space-lg);
    }

    .section-header[b-ydnvxuin10] {
        margin-bottom: var(--space-2xl);
    }

    .apps-grid[b-ydnvxuin10] {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .section-title[b-ydnvxuin10] {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .section-subtitle[b-ydnvxuin10] {
        font-size: 0.8rem;
    }

    .app-card[b-ydnvxuin10] {
        padding: var(--space-lg);
        min-height: var(--touch-min);
    }

    .app-icon[b-ydnvxuin10] {
        width: 48px;
        height: 48px;
        border-radius: var(--radius-md);
    }

    .icon-letter[b-ydnvxuin10] {
        font-size: 1.25rem;
    }

    .app-name[b-ydnvxuin10] {
        font-size: 1.25rem;
    }

    .app-description[b-ydnvxuin10] {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .status-badge[b-ydnvxuin10] {
        font-size: 0.55rem;
        padding: 0.25rem 0.6rem;
    }

    .app-meta[b-ydnvxuin10] {
        gap: var(--space-md);
        margin-top: var(--space-sm);
    }

    .platform[b-ydnvxuin10],
    .store-link[b-ydnvxuin10],
    .nuget-link[b-ydnvxuin10] {
        font-size: 0.75rem;
        min-height: var(--touch-min);
        display: flex;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .apps-section[b-ydnvxuin10] {
        padding: var(--space-3xl) var(--space-md);
    }

    .section-title[b-ydnvxuin10] {
        font-size: 2rem;
    }

    .app-card[b-ydnvxuin10] {
        padding: var(--space-md);
        gap: var(--space-md);
        border-radius: var(--radius-lg);
    }

    .app-info[b-ydnvxuin10] {
        gap: var(--space-sm);
    }
}

/* Small phones */
@media (max-width: 375px) {
    .apps-section[b-ydnvxuin10] {
        padding: var(--space-2xl) var(--space-sm);
    }

    .section-title[b-ydnvxuin10] {
        font-size: 1.75rem;
    }

    .app-card[b-ydnvxuin10] {
        padding: var(--space-md);
    }

    .app-name[b-ydnvxuin10] {
        font-size: 1.1rem;
    }

    .app-description[b-ydnvxuin10] {
        font-size: 0.85rem;
    }
}

/* Skeleton Loading States */
.loading-state[b-ydnvxuin10] {
    width: 100%;
}

.skeleton-grid[b-ydnvxuin10] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
    gap: var(--space-lg);
    width: 100%;
}

.skeleton-card[b-ydnvxuin10] {
    border-radius: 24px;
    background: var(--glass-bg);
    border: 0.5px solid var(--glass-border);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: skeletonPulse-b-ydnvxuin10 1.5s ease-in-out infinite;
}

.skeleton-icon[b-ydnvxuin10] {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer-b-ydnvxuin10 1.5s ease-in-out infinite;
}

.skeleton-content[b-ydnvxuin10] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skeleton-header[b-ydnvxuin10] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skeleton-title[b-ydnvxuin10] {
    height: 24px;
    width: 60%;
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer-b-ydnvxuin10 1.5s ease-in-out infinite;
}

.skeleton-badge[b-ydnvxuin10] {
    height: 20px;
    width: 50px;
    border-radius: 100px;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer-b-ydnvxuin10 1.5s ease-in-out infinite;
}

.skeleton-text[b-ydnvxuin10] {
    height: 16px;
    width: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer-b-ydnvxuin10 1.5s ease-in-out infinite;
}

.skeleton-text.short[b-ydnvxuin10] {
    width: 70%;
}

.skeleton-meta[b-ydnvxuin10] {
    height: 14px;
    width: 40%;
    border-radius: 4px;
    margin-top: 0.5rem;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer-b-ydnvxuin10 1.5s ease-in-out infinite;
}

@keyframes skeletonShimmer-b-ydnvxuin10 {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes skeletonPulse-b-ydnvxuin10 {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.skeleton-card:nth-child(1)[b-ydnvxuin10] { animation-delay: 0s; }
.skeleton-card:nth-child(2)[b-ydnvxuin10] { animation-delay: 0.1s; }
.skeleton-card:nth-child(3)[b-ydnvxuin10] { animation-delay: 0.2s; }
.skeleton-card:nth-child(4)[b-ydnvxuin10] { animation-delay: 0.3s; }

@media (max-width: 768px) {
    .skeleton-grid[b-ydnvxuin10] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .skeleton-card[b-ydnvxuin10] {
        padding: 1.5rem;
    }

    .skeleton-icon[b-ydnvxuin10] {
        width: 48px;
        height: 48px;
    }
}
/* /Components/CommandPalette.razor.rz.scp.css */
.command-palette-overlay[b-m2fzertb2i] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    padding-top: 15vh;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.command-palette-overlay.open[b-m2fzertb2i] {
    opacity: 1;
    pointer-events: auto;
}

.command-palette-container[b-m2fzertb2i] {
    width: 100%;
    max-width: 650px;
    max-height: 500px;
    background: rgba(15, 5, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: #fff;
}

.command-palette-overlay.open .command-palette-container[b-m2fzertb2i] {
    transform: translateY(0) scale(1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.terminal-game-container[b-m2fzertb2i] {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeIn 0.3s ease;
}

#runner-canvas[b-m2fzertb2i] {
    width: 600px;
    height: 150px;
    background: #0a0118;
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
}

.game-controls-hint[b-m2fzertb2i] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    font-family: 'Orbitron', sans-serif;
}

.result-item.special-game[b-m2fzertb2i] {
    background: rgba(0, 229, 255, 0.1);
    border: 1px dashed rgba(0, 229, 255, 0.3);
    margin-bottom: 1.5rem;
}

.result-item.special-game .item-icon[b-m2fzertb2i] {
    background: rgba(0, 229, 255, 0.2);
    color: #00e5ff;
    font-size: 1.5rem;
}

.result-item.special-game:hover[b-m2fzertb2i] {
    background: rgba(0, 229, 255, 0.2);
    border-color: #00e5ff;
    transform: scale(1.02);
}

.search-header[b-m2fzertb2i] {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-icon[b-m2fzertb2i] {
    font-size: 1.5rem;
    color: var(--primary);
    font-family: var(--font-brand);
}

.search-header input[b-m2fzertb2i] {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: #fff;
    outline: none;
    font-family: var(--font-main);
}

.esc-hint[b-m2fzertb2i] {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.4);
}

.results-container[b-m2fzertb2i] {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.result-group[b-m2fzertb2i] {
    margin-bottom: 1.5rem;
}

.group-label[b-m2fzertb2i] {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
    padding: 0 1rem 0.75rem;
}

.result-item[b-m2fzertb2i] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.result-item:hover[b-m2fzertb2i],
.result-item.selected[b-m2fzertb2i] {
    background: rgba(255, 255, 255, 0.05);
}

.result-item.selected[b-m2fzertb2i] {
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.item-icon[b-m2fzertb2i] {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-brand);
    font-weight: 700;
}

.item-icon.accent[b-m2fzertb2i] {
    color: var(--primary);
}

.item-info[b-m2fzertb2i] {
    flex: 1;
}

.item-name[b-m2fzertb2i] {
    font-weight: 600;
    font-size: 1rem;
}

.item-desc[b-m2fzertb2i] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.item-action[b-m2fzertb2i] {
    font-size: 0.85rem;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.2s ease;
}

.result-item:hover .item-action[b-m2fzertb2i],
.result-item.selected .item-action[b-m2fzertb2i] {
    opacity: 1;
    transform: translateX(0);
}

.no-results[b-m2fzertb2i] {
    padding: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
}
/* /Components/ContactButton.razor.rz.scp.css */
.contact-fab[b-mibfs57fpq] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.contact-fab.visible[b-mibfs57fpq] {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.contact-fab:hover[b-mibfs57fpq] {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0, 229, 255, 0.2),
        0 0 20px rgba(0, 229, 255, 0.1);
}

.contact-fab:active[b-mibfs57fpq] {
    transform: translateY(0) scale(0.95);
}

.fab-logo[b-mibfs57fpq] {
    font-family: var(--font-brand);
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-fab:hover .fab-logo[b-mibfs57fpq] {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .contact-fab[b-mibfs57fpq] {
        bottom: 6rem;
        right: 1.25rem;
        width: 60px;
        height: 60px;
    }

    .fab-logo[b-mibfs57fpq] {
        font-size: 1.5rem;
    }
}
/* /Components/ContactPanel.razor.rz.scp.css */
.contact-overlay[b-ckedgqc9yn] {
    position: fixed;
    inset: 0;
    background: rgba(5, 1, 13, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 2rem;
}

.contact-overlay.visible[b-ckedgqc9yn] {
    opacity: 1;
}

.contact-panel[b-ckedgqc9yn] {
    background: var(--glass-bg);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.contact-panel.visible[b-ckedgqc9yn] {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.panel-header[b-ckedgqc9yn] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2.5rem 2.5rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.header-content[b-ckedgqc9yn] {
    flex: 1;
}

.panel-title[b-ckedgqc9yn] {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.accent[b-ckedgqc9yn] {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.panel-subtitle[b-ckedgqc9yn] {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.close-btn[b-ckedgqc9yn] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.close-btn:hover[b-ckedgqc9yn] {
    background: rgba(255, 0, 127, 0.1);
    border-color: var(--secondary);
    transform: rotate(90deg);
}

.panel-content[b-ckedgqc9yn] {
    padding: 2rem 2.5rem 2.5rem;
}

.services-pitch[b-ckedgqc9yn] {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.pitch-grid[b-ckedgqc9yn] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pitch-item[b-ckedgqc9yn] {
    text-align: center;
    padding: 1rem;
}

.pitch-icon[b-ckedgqc9yn] {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

.pitch-item h3[b-ckedgqc9yn] {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.pitch-item p[b-ckedgqc9yn] {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-cta[b-ckedgqc9yn] {
    text-align: center;
    padding-top: 1rem;
}

.cta-text[b-ckedgqc9yn] {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.email-btn[b-ckedgqc9yn] {
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    border-radius: 100px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.2, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.email-btn:hover[b-ckedgqc9yn] {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 30px rgba(0, 229, 255, 0.3),
        0 0 20px rgba(255, 0, 127, 0.2);
}

.email-btn:active[b-ckedgqc9yn] {
    transform: translateY(0);
}

.btn-arrow[b-ckedgqc9yn] {
    transition: transform 0.3s ease;
}

.email-btn:hover .btn-arrow[b-ckedgqc9yn] {
    transform: translateX(5px);
}

/* Scrollbar styling for panel */
.contact-panel[b-ckedgqc9yn]::-webkit-scrollbar {
    width: 6px;
}

.contact-panel[b-ckedgqc9yn]::-webkit-scrollbar-track {
    background: transparent;
}

.contact-panel[b-ckedgqc9yn]::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 10px;
}

.contact-panel[b-ckedgqc9yn]::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

@media (max-width: 968px) {
    .pitch-grid[b-ckedgqc9yn] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .panel-title[b-ckedgqc9yn] {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-overlay[b-ckedgqc9yn] {
        padding: 0;
        align-items: flex-end;
    }

    .contact-panel[b-ckedgqc9yn] {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 32px 32px 0 0;
        transform: translateY(100%);
    }

    .contact-panel.visible[b-ckedgqc9yn] {
        transform: translateY(0);
    }

    .panel-header[b-ckedgqc9yn] {
        padding: 2rem 1.5rem 1.25rem;
    }

    .panel-content[b-ckedgqc9yn] {
        padding: 1.5rem 1.5rem 2rem;
    }

    .panel-title[b-ckedgqc9yn] {
        font-size: 1.75rem;
    }

    .panel-subtitle[b-ckedgqc9yn] {
        font-size: 0.9rem;
    }

    .pitch-grid[b-ckedgqc9yn] {
        grid-template-columns: 1fr;
    }

    .pitch-item[b-ckedgqc9yn] {
        padding: 0.75rem;
    }

    .pitch-icon[b-ckedgqc9yn] {
        font-size: 2rem;
    }

    .email-btn[b-ckedgqc9yn] {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .cta-text[b-ckedgqc9yn] {
        font-size: 1rem;
    }
}
/* /Components/ContactSection.razor.rz.scp.css */
.contact-section[b-a5o33gkutr] {
    padding: 4rem 2rem 8rem;
    position: relative;
}

.section-content[b-a5o33gkutr] {
    max-width: 900px;
    margin: 0 auto;
}

.contact-card[b-a5o33gkutr] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(255, 0, 127, 0.05));
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    overflow: hidden;
}

.contact-content[b-a5o33gkutr] {
    flex: 1;
    position: relative;
    z-index: 1;
}

.contact-title[b-a5o33gkutr] {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-main), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-description[b-a5o33gkutr] {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.contact-links[b-a5o33gkutr] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-link[b-a5o33gkutr] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-link:hover[b-a5o33gkutr] {
    color: var(--text-main);
    border-color: var(--primary);
    background: rgba(0, 229, 255, 0.1);
    transform: translateY(-2px);
}

.contact-link.primary[b-a5o33gkutr] {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: white;
    font-weight: 600;
}

.contact-link.primary:hover[b-a5o33gkutr] {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
}

/* Visual Element */
.contact-visual[b-a5o33gkutr] {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.visual-ring[b-a5o33gkutr] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: ringPulse-b-a5o33gkutr 3s ease-in-out infinite;
}

.visual-ring.delay-1[b-a5o33gkutr] {
    width: 140px;
    height: 140px;
    animation-delay: 0.5s;
    border-color: var(--secondary);
}

.visual-ring.delay-2[b-a5o33gkutr] {
    width: 180px;
    height: 180px;
    animation-delay: 1s;
}

@keyframes ringPulse-b-a5o33gkutr {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section[b-a5o33gkutr] {
        padding: var(--space-2xl) var(--space-md) var(--space-4xl);
    }

    .contact-card[b-a5o33gkutr] {
        flex-direction: column;
        text-align: center;
        padding: var(--space-xl) var(--space-lg);
    }

    .contact-description[b-a5o33gkutr] {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-links[b-a5o33gkutr] {
        justify-content: center;
    }

    .contact-link[b-a5o33gkutr] {
        min-height: var(--touch-min);
        padding: var(--space-md) var(--space-lg);
    }

    .contact-visual[b-a5o33gkutr] {
        width: 150px;
        height: 150px;
    }

    .visual-ring[b-a5o33gkutr] {
        width: 80px;
        height: 80px;
    }

    .visual-ring.delay-1[b-a5o33gkutr] {
        width: 110px;
        height: 110px;
    }

    .visual-ring.delay-2[b-a5o33gkutr] {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .contact-section[b-a5o33gkutr] {
        padding: var(--space-xl) var(--space-md) var(--space-3xl);
    }

    .contact-card[b-a5o33gkutr] {
        padding: var(--space-lg) var(--space-md);
        border-radius: var(--radius-lg);
    }

    .contact-title[b-a5o33gkutr] {
        font-size: 1.5rem;
    }

    .contact-description[b-a5o33gkutr] {
        font-size: 1rem;
        margin-bottom: var(--space-lg);
    }

    .contact-links[b-a5o33gkutr] {
        flex-direction: column;
        width: 100%;
    }

    .contact-link[b-a5o33gkutr] {
        width: 100%;
        justify-content: center;
    }

    .contact-visual[b-a5o33gkutr] {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 375px) {
    .contact-title[b-a5o33gkutr] {
        font-size: 1.25rem;
    }

    .contact-description[b-a5o33gkutr] {
        font-size: 0.9rem;
    }

    .contact-link[b-a5o33gkutr] {
        font-size: 0.9rem;
        padding: var(--space-sm) var(--space-md);
    }
}
/* /Components/CustomCursor.razor.rz.scp.css */
.custom-cursor[b-nj4j2eg8sq] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.cursor-dot[b-nj4j2eg8sq] {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.cursor-ring[b-nj4j2eg8sq] {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-cursor.active .cursor-ring[b-nj4j2eg8sq] {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.custom-cursor.active-view .cursor-ring[b-nj4j2eg8sq] {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.custom-cursor.active-view .cursor-ring[b-nj4j2eg8sq]::after {
    content: 'VIEW';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.custom-cursor.active-mail .cursor-ring[b-nj4j2eg8sq] {
    width: 65px;
    height: 65px;
    background: rgba(255, 0, 127, 0.1);
    border-color: #ff007f;
}

.custom-cursor.active-mail .cursor-ring[b-nj4j2eg8sq]::after {
    content: '✉';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ff007f;
    font-size: 1.2rem;
}

.custom-cursor.active-social .cursor-ring[b-nj4j2eg8sq] {
    width: 65px;
    height: 65px;
    background: rgba(0, 229, 255, 0.1);
    border-color: #00e5ff;
}

.custom-cursor.active-social .cursor-ring[b-nj4j2eg8sq]::after {
    content: '↗';
    position: absolute;
    top: 48%;
    left: 52%;
    transform: translate(-50%, -50%);
    color: #00e5ff;
    font-size: 1.2rem;
}

.custom-cursor.active .cursor-dot[b-nj4j2eg8sq] {
    width: 4px;
    height: 4px;
}

.custom-cursor.active-view .cursor-dot[b-nj4j2eg8sq],
.custom-cursor.active-mail .cursor-dot[b-nj4j2eg8sq],
.custom-cursor.active-social .cursor-dot[b-nj4j2eg8sq] {
    opacity: 0;
}

@media (hover: none) and (pointer: coarse) {
    .custom-cursor[b-nj4j2eg8sq] {
        display: none;
    }
}
/* /Components/FAQSection.razor.rz.scp.css */
.faq-section[b-lnn2bd8v1m] {
    padding: 6rem 2rem;
    background: var(--bg-primary);
    position: relative;
}

.faq-container[b-lnn2bd8v1m] {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header[b-lnn2bd8v1m] {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2[b-lnn2bd8v1m] {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.faq-header p[b-lnn2bd8v1m] {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.faq-list[b-lnn2bd8v1m] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item[b-lnn2bd8v1m] {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover[b-lnn2bd8v1m] {
    border-color: rgba(0, 229, 255, 0.3);
}

.faq-item.expanded[b-lnn2bd8v1m] {
    border-color: var(--primary);
    background: rgba(0, 229, 255, 0.05);
}

.faq-question[b-lnn2bd8v1m] {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.3s;
}

.faq-question:hover[b-lnn2bd8v1m] {
    color: var(--primary);
}

.faq-icon[b-lnn2bd8v1m] {
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.expanded .faq-icon[b-lnn2bd8v1m] {
    transform: rotate(180deg);
}

.faq-answer[b-lnn2bd8v1m] {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
    animation: fadeIn-b-lnn2bd8v1m 0.3s ease-in-out;
}

.faq-answer p[b-lnn2bd8v1m] {
    margin: 0;
}

@keyframes fadeIn-b-lnn2bd8v1m {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .faq-section[b-lnn2bd8v1m] {
        padding: var(--space-3xl) var(--space-md);
    }

    .faq-header h2[b-lnn2bd8v1m] {
        font-size: 2rem;
    }

    .faq-header[b-lnn2bd8v1m] {
        margin-bottom: var(--space-xl);
    }

    .faq-question[b-lnn2bd8v1m] {
        font-size: 1rem;
        padding: var(--space-md);
        min-height: var(--touch-min);
    }

    .faq-answer[b-lnn2bd8v1m] {
        padding: 0 var(--space-md) var(--space-md) var(--space-md);
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-section[b-lnn2bd8v1m] {
        padding: var(--space-2xl) var(--space-md);
    }

    .faq-header h2[b-lnn2bd8v1m] {
        font-size: 1.75rem;
    }

    .faq-question[b-lnn2bd8v1m] {
        font-size: 0.95rem;
        padding: var(--space-md) var(--space-sm);
    }

    .faq-answer[b-lnn2bd8v1m] {
        padding: 0 var(--space-sm) var(--space-md) var(--space-sm);
        font-size: 0.9rem;
    }

    .faq-list[b-lnn2bd8v1m] {
        gap: var(--space-sm);
    }
}

@media (max-width: 375px) {
    .faq-header h2[b-lnn2bd8v1m] {
        font-size: 1.5rem;
    }

    .faq-question[b-lnn2bd8v1m] {
        font-size: 0.9rem;
    }
}
/* /Components/FloatingNav.razor.rz.scp.css */
.floating-nav[b-8n59pcp2ex] {
    position: fixed;
    bottom: calc(var(--space-xl) + var(--safe-bottom));
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 1000;
    transition: all 0.6s var(--ease-out);
    opacity: 0;
}

.floating-nav.visible[b-8n59pcp2ex] {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.nav-content[b-8n59pcp2ex] {
    background: rgba(15, 15, 20, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0.75rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.nav-item[b-8n59pcp2ex] {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-item:hover[b-8n59pcp2ex] {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.nav-item:focus-visible[b-8n59pcp2ex] {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.home-btn[b-8n59pcp2ex] {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-separator[b-8n59pcp2ex] {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 0.25rem;
}

.dot[b-8n59pcp2ex] {
    width: 4px;
    height: 4px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
}

.active .dot[b-8n59pcp2ex] {
    opacity: 1;
    transform: scale(1);
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
}

.active[b-8n59pcp2ex] {
    color: #fff !important;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.section-link[b-8n59pcp2ex] {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    letter-spacing: 0.05em;
}

.search-hint[b-8n59pcp2ex] {
    padding: 0.5rem 0.75rem;
}

.kbd[b-8n59pcp2ex] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0 4px;
    font-size: 0.7rem;
    min-width: 14px;
    height: 18px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .floating-nav[b-8n59pcp2ex] {
        bottom: calc(var(--space-md) + var(--safe-bottom));
        left: var(--space-md);
        right: var(--space-md);
        transform: translateX(0) translateY(100px);
    }

    .floating-nav.visible[b-8n59pcp2ex] {
        transform: translateX(0) translateY(0);
    }

    .nav-content[b-8n59pcp2ex] {
        padding: var(--space-sm) var(--space-sm);
        gap: var(--space-xs);
        width: 100%;
        justify-content: center;
    }

    .nav-item[b-8n59pcp2ex] {
        padding: var(--space-sm) var(--space-sm);
        font-size: 0.8rem;
        gap: 0.2rem;
        min-height: var(--touch-min);
        min-width: var(--touch-min);
        justify-content: center;
    }

    .section-link[b-8n59pcp2ex] {
        font-size: 0.75rem;
        padding: var(--space-sm) var(--space-sm);
    }

    .nav-separator[b-8n59pcp2ex] {
        height: 16px;
        margin: 0 var(--space-xs);
    }

    .dot[b-8n59pcp2ex] {
        width: 3px;
        height: 3px;
    }

    .kbd[b-8n59pcp2ex] {
        font-size: 0.6rem;
        height: 15px;
        min-width: 12px;
        padding: 0 3px;
    }

    .search-hint[b-8n59pcp2ex] {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .floating-nav[b-8n59pcp2ex] {
        left: var(--space-sm);
        right: var(--space-sm);
    }

    .nav-content[b-8n59pcp2ex] {
        padding: var(--space-xs) var(--space-xs);
    }

    .nav-item[b-8n59pcp2ex] {
        padding: var(--space-xs) var(--space-xs);
        font-size: 0.7rem;
    }

    .section-link[b-8n59pcp2ex] {
        padding: var(--space-xs) var(--space-xs);
        font-size: 0.65rem;
    }

    .home-btn .nav-icon[b-8n59pcp2ex] {
        font-size: 0.9rem;
    }
}

/* Small phones */
@media (max-width: 375px) {
    .nav-item[b-8n59pcp2ex] {
        font-size: 0.6rem;
    }

    .section-link[b-8n59pcp2ex] {
        font-size: 0.55rem;
        letter-spacing: 0;
    }

    .nav-separator[b-8n59pcp2ex] {
        display: none;
    }
}
/* /Components/HeroSection.razor.rz.scp.css */
.hero[b-d9723reiw5] {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: var(--bg-dark);
    cursor: default;
    z-index: 10;
    transition: transform 0.1s ease;
}

.hero.shake[b-d9723reiw5] {
    animation: heroShake-b-d9723reiw5 0.3s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes heroShake-b-d9723reiw5 {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

.combo-indicator[b-d9723reiw5] {
    position: fixed;
    pointer-events: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
    opacity: 0;
    transform: translateY(0) scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
}

.combo-indicator.active[b-d9723reiw5] {
    opacity: 1;
    transform: translateY(-20px) scale(1.2);
}

.noise-overlay[b-d9723reiw5] {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 5;
    mix-blend-mode: overlay;
}

.mesh-gradient[b-d9723reiw5] {
    position: absolute;
    inset: 0;
    background: radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 1) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 1) 0, transparent 50%),
        radial-gradient(at 0% 50%, hsla(339, 49%, 30%, 1) 0, transparent 50%),
        radial-gradient(at 100% 50%, hsla(225, 39%, 30%, 1) 0, transparent 50%),
        radial-gradient(at 0% 100%, hsla(339, 49%, 30%, 1) 0, transparent 50%),
        radial-gradient(at 50% 100%, hsla(225, 39%, 30%, 1) 0, transparent 50%),
        radial-gradient(at 100% 100%, hsla(253, 16%, 7%, 1) 0, transparent 50%);
    background-size: 200% 200%;
    animation: meshMovement-b-d9723reiw5 20s ease infinite alternate;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.6;
}

.spotlight[b-d9723reiw5] {
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--x, 50%) var(--y, 50%),
            rgba(255, 255, 255, 0.03), transparent 40%);
    z-index: 2;
    pointer-events: none;
}

#particle-canvas[b-d9723reiw5] {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

@keyframes meshMovement-b-d9723reiw5 {
    0% {
        background-position: 0% 0%;
    }

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

.hero-content[b-d9723reiw5] {
    position: relative;
    z-index: 10;
    text-align: center;
    user-select: none;
    padding: 0 2rem;
    max-width: 900px;
}

/* Eyebrow */
.hero-eyebrow[b-d9723reiw5] {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-title[b-d9723reiw5] {
    font-size: clamp(6rem, 20vw, 14rem);
    font-weight: 950;
    line-height: 0.85;
    margin: 0;
    letter-spacing: -0.08em;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.2));
}

.hero-subtitle[b-d9723reiw5] {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    margin: 2rem auto 0;
    max-width: 550px;
    color: var(--text-muted);
    line-height: 1.7;
}

.hero-tagline[b-d9723reiw5] {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    opacity: 0;
    animation: fadeInUp-b-d9723reiw5 1s ease 0.5s forwards;
}

@keyframes fadeInUp-b-d9723reiw5 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleGlow-b-d9723reiw5 {
    from {
        text-shadow: 0 0 20px rgba(0, 229, 255, 0.4),
            0 0 40px rgba(255, 0, 127, 0.3);
        transform: scale(1);
    }

    to {
        text-shadow: 0 0 30px rgba(0, 229, 255, 0.6),
            0 0 60px rgba(255, 0, 127, 0.5);
        transform: scale(1.02);
    }
}

@keyframes content-glitch-b-d9723reiw5 {
    0% {
        transform: skew(0deg) translate(0);
        filter: drop-shadow(5px 0 0 var(--secondary));
    }

    25% {
        transform: skew(15deg) translate(-5px);
        filter: drop-shadow(-5px 0 0 var(--primary));
    }

    50% {
        transform: skew(-15deg) translate(5px);
        filter: drop-shadow(5px 0 0 var(--secondary));
    }

    75% {
        transform: skew(5deg) translate(-2px);
        filter: drop-shadow(-8px 0 0 var(--primary));
    }

    100% {
        transform: skew(0deg) translate(0);
    }
}

@keyframes titleEntrance-b-d9723reiw5 {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        filter: blur(10px);
    }

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

.hero-cta[b-d9723reiw5] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.cta-primary[b-d9723reiw5] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.2);
}

.cta-primary:hover[b-d9723reiw5] {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.3);
}

.cta-primary svg[b-d9723reiw5] {
    transition: transform 0.3s;
}

.cta-primary:hover svg[b-d9723reiw5] {
    transform: translateX(4px);
}

.cta-secondary[b-d9723reiw5] {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-secondary:hover[b-d9723reiw5] {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Social Proof */
.hero-proof[b-d9723reiw5] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.proof-item[b-d9723reiw5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.proof-number[b-d9723reiw5] {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.proof-label[b-d9723reiw5] {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.proof-divider[b-d9723reiw5] {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* Scroll Indicator */
.scroll-indicator[b-d9723reiw5] {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

.scroll-text[b-d9723reiw5] {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

.scroll-arrow[b-d9723reiw5] {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-arrow[b-d9723reiw5]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: scrollLine-b-d9723reiw5 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollLine-b-d9723reiw5 {
    0% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(100%);
    }
}

@media (max-width: 768px) {
    .hero-content[b-d9723reiw5] {
        padding: 0 var(--space-lg);
    }

    .hero-eyebrow[b-d9723reiw5] {
        font-size: 0.75rem;
    }

    .hero-title[b-d9723reiw5] {
        font-size: clamp(4rem, 18vw, 5rem);
    }

    .hero-subtitle[b-d9723reiw5] {
        font-size: 1rem;
        margin: 1.5rem auto 0;
    }

    .hero-cta[b-d9723reiw5] {
        flex-direction: column;
        align-items: stretch;
        margin-top: var(--space-xl);
        padding: 0 var(--space-md);
    }

    .cta-primary[b-d9723reiw5],
    .cta-secondary[b-d9723reiw5] {
        width: 100%;
        justify-content: center;
        min-height: var(--touch-min);
        padding: var(--space-md) var(--space-lg);
    }

    .hero-proof[b-d9723reiw5] {
        margin-top: var(--space-2xl);
        gap: var(--space-lg);
    }

    .proof-number[b-d9723reiw5] {
        font-size: 1.25rem;
    }

    .proof-label[b-d9723reiw5] {
        font-size: 0.7rem;
    }

    .proof-divider[b-d9723reiw5] {
        height: 30px;
    }

    .scroll-indicator[b-d9723reiw5] {
        bottom: calc(var(--space-xl) + var(--safe-bottom));
        padding: var(--space-sm);
        min-height: var(--touch-min);
    }

    .scroll-text[b-d9723reiw5] {
        font-size: 0.65rem;
    }

    .scroll-arrow[b-d9723reiw5] {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-content[b-d9723reiw5] {
        padding: 0 var(--space-md);
    }

    .hero-title[b-d9723reiw5] {
        font-size: clamp(3.5rem, 22vw, 4.5rem);
    }

    .hero-subtitle[b-d9723reiw5] {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .hero-cta[b-d9723reiw5] {
        gap: var(--space-md);
        padding: 0;
    }

    .hero-proof[b-d9723reiw5] {
        gap: var(--space-md);
    }

    .proof-divider[b-d9723reiw5] {
        display: none;
    }

    .proof-item[b-d9723reiw5] {
        min-width: 70px;
    }
}

/* Small phones (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero-title[b-d9723reiw5] {
        font-size: 3rem;
        letter-spacing: -0.06em;
    }

    .hero-subtitle[b-d9723reiw5] {
        font-size: 0.85rem;
    }

    .hero-eyebrow[b-d9723reiw5] {
        font-size: 0.65rem;
        letter-spacing: 0.15em;
    }

    .cta-primary[b-d9723reiw5],
    .cta-secondary[b-d9723reiw5] {
        font-size: 0.9rem;
        padding: var(--space-md);
    }

    .proof-number[b-d9723reiw5] {
        font-size: 1.1rem;
    }

    .proof-label[b-d9723reiw5] {
        font-size: 0.65rem;
    }
}
/* /Components/PageTransition.razor.rz.scp.css */
.page-transition[b-zx07jh1rnm] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10001;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-transition.active[b-zx07jh1rnm] {
    pointer-events: all;
}

/* Backdrop blur for content underneath */
.transition-backdrop[b-zx07jh1rnm] {
    position: absolute;
    inset: 0;
    background: rgba(5, 1, 13, 0.6);
    backdrop-filter: blur(0px);
    opacity: 0;
    transition: all 0.25s var(--ease-out);
    z-index: 10002;
}

.page-transition.active .transition-backdrop[b-zx07jh1rnm] {
    opacity: 1;
    backdrop-filter: blur(8px);
}

.page-transition.exiting .transition-backdrop[b-zx07jh1rnm] {
    opacity: 0;
    backdrop-filter: blur(0px);
    transition: all 0.2s var(--ease-in-out);
}

/* Clean wipe animation */
.transition-wipe[b-zx07jh1rnm] {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-accent) 100%);
    transform: scaleX(0);
    transform-origin: left center;
    z-index: 10003;
}

.page-transition.active .transition-wipe[b-zx07jh1rnm] {
    animation: wipeIn-b-zx07jh1rnm 0.3s var(--ease-out) forwards;
}

.page-transition.exiting .transition-wipe[b-zx07jh1rnm] {
    animation: wipeOut-b-zx07jh1rnm 0.2s var(--ease-in-out) forwards;
}

@keyframes wipeIn-b-zx07jh1rnm {
    0% {
        transform: scaleX(0);
        transform-origin: left center;
    }
    100% {
        transform: scaleX(1);
        transform-origin: left center;
    }
}

@keyframes wipeOut-b-zx07jh1rnm {
    0% {
        transform: scaleX(1);
        transform-origin: right center;
    }
    100% {
        transform: scaleX(0);
        transform-origin: right center;
    }
}

/* Loader content */
.transition-content[b-zx07jh1rnm] {
    position: relative;
    z-index: 10005;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s var(--ease-spring);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.page-transition.active .transition-content[b-zx07jh1rnm] {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.15s;
}

.page-transition.exiting .transition-content[b-zx07jh1rnm] {
    opacity: 0;
    transform: scale(0.9);
    transition-delay: 0s;
    transition-duration: 0.1s;
}

/* Loader ring */
.loader-ring[b-zx07jh1rnm] {
    width: 60px;
    height: 60px;
    position: relative;
    animation: ringPulse-b-zx07jh1rnm 1s var(--ease-in-out) infinite;
}

.ring-segment[b-zx07jh1rnm] {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 50%;
}

.ring-segment:nth-child(1)[b-zx07jh1rnm] {
    border-top-color: var(--primary);
    animation: ringSpin-b-zx07jh1rnm 0.8s linear infinite;
}

.ring-segment:nth-child(2)[b-zx07jh1rnm] {
    border-right-color: var(--secondary);
    animation: ringSpin-b-zx07jh1rnm 0.8s linear infinite 0.1s;
    transform: scale(0.85);
}

.ring-segment:nth-child(3)[b-zx07jh1rnm] {
    border-bottom-color: var(--primary);
    animation: ringSpin-b-zx07jh1rnm 0.8s linear infinite reverse;
    transform: scale(0.7);
}

@keyframes ringSpin-b-zx07jh1rnm {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ringPulse-b-zx07jh1rnm {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* n8 loader text */
.n8-loader[b-zx07jh1rnm] {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.4));
    letter-spacing: 0.1em;
}

/* Progress line at top */
.progress-line[b-zx07jh1rnm] {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0 0 20px var(--primary), 0 0 40px var(--secondary);
    z-index: 10006;
}

.page-transition.active .progress-line[b-zx07jh1rnm] {
    animation: progressFill-b-zx07jh1rnm 0.3s var(--ease-out) forwards;
}

.page-transition.exiting .progress-line[b-zx07jh1rnm] {
    width: 100%;
    opacity: 0;
    transition: opacity 0.2s var(--ease-in-out);
}

@keyframes progressFill-b-zx07jh1rnm {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .page-transition.active .transition-wipe[b-zx07jh1rnm],
    .page-transition.exiting .transition-wipe[b-zx07jh1rnm] {
        animation: none;
        transform: scaleX(1);
    }
    
    .page-transition.exiting .transition-wipe[b-zx07jh1rnm] {
        opacity: 0;
        transition: opacity 0.15s ease;
    }
    
    .loader-ring[b-zx07jh1rnm],
    .ring-segment[b-zx07jh1rnm] {
        animation: none;
    }
    
    .page-transition.active .progress-line[b-zx07jh1rnm] {
        animation: none;
        width: 100%;
    }
}
/* /Components/ServicesSection.razor.rz.scp.css */
.services-section[b-f39qwr3z4o] {
    min-height: 100vh;
    padding: 8rem 2rem;
    position: relative;
}

.section-content[b-f39qwr3z4o] {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.section-header[b-f39qwr3z4o] {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow[b-f39qwr3z4o] {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title[b-f39qwr3z4o] {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-main), var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle[b-f39qwr3z4o] {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid[b-f39qwr3z4o] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Service Card */
.service-card[b-f39qwr3z4o] {
    position: relative;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-card[b-f39qwr3z4o]::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.25rem;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, var(--primary) 100%);
    -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;
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover[b-f39qwr3z4o] {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.service-card:hover[b-f39qwr3z4o]::before {
    opacity: 1;
}

.service-icon[b-f39qwr3z4o] {
    font-size: 2.5rem;
    line-height: 1;
}

.service-title[b-f39qwr3z4o] {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-main);
}

.service-description[b-f39qwr3z4o] {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Features List */
.service-features[b-f39qwr3z4o] {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li[b-f39qwr3z4o] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.service-features svg[b-f39qwr3z4o] {
    color: var(--primary);
    flex-shrink: 0;
}

/* Tech Tags */
.service-tech[b-f39qwr3z4o] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.tech-tag[b-f39qwr3z4o] {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 100px;
    color: var(--primary);
}

/* Pricing */
.service-pricing[b-f39qwr3z4o] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--glass-border);
}

.pricing-label[b-f39qwr3z4o] {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pricing-value[b-f39qwr3z4o] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

/* CTA */
.services-cta[b-f39qwr3z4o] {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
}

.services-cta p[b-f39qwr3z4o] {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.cta-button[b-f39qwr3z4o] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.2);
}

.cta-button:hover[b-f39qwr3z4o] {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.3);
}

.cta-button svg[b-f39qwr3z4o] {
    transition: transform 0.3s;
}

.cta-button:hover svg[b-f39qwr3z4o] {
    transform: translateX(4px);
}

/* Skeleton Loading */
.service-card.skeleton[b-f39qwr3z4o] {
    min-height: 320px;
}

.skeleton-icon[b-f39qwr3z4o] {
    width: 48px;
    height: 48px;
    background: var(--glass-border);
    border-radius: 12px;
    animation: pulse-b-f39qwr3z4o 1.5s infinite;
}

.skeleton-title[b-f39qwr3z4o] {
    height: 24px;
    width: 70%;
    background: var(--glass-border);
    border-radius: 6px;
    animation: pulse-b-f39qwr3z4o 1.5s infinite;
}

.skeleton-text[b-f39qwr3z4o] {
    height: 60px;
    width: 100%;
    background: var(--glass-border);
    border-radius: 6px;
    animation: pulse-b-f39qwr3z4o 1.5s infinite;
}

@keyframes pulse-b-f39qwr3z4o {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .services-section[b-f39qwr3z4o] {
        padding: var(--space-4xl) var(--space-md);
    }

    .services-grid[b-f39qwr3z4o] {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .service-card[b-f39qwr3z4o] {
        padding: var(--space-lg);
    }

    .cta-button[b-f39qwr3z4o] {
        min-height: var(--touch-min);
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Medium screens - 2 column */
@media (min-width: 640px) and (max-width: 900px) {
    .services-grid[b-f39qwr3z4o] {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .service-card[b-f39qwr3z4o] {
        padding: var(--space-md);
    }

    .service-title[b-f39qwr3z4o] {
        font-size: 1.2rem;
    }

    .service-description[b-f39qwr3z4o] {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services-section[b-f39qwr3z4o] {
        padding: var(--space-3xl) var(--space-md);
    }

    .section-header[b-f39qwr3z4o] {
        margin-bottom: var(--space-2xl);
    }

    .service-card[b-f39qwr3z4o] {
        padding: var(--space-md);
    }

    .service-icon[b-f39qwr3z4o] {
        font-size: 2rem;
    }

    .service-title[b-f39qwr3z4o] {
        font-size: 1.2rem;
    }

    .services-cta[b-f39qwr3z4o] {
        padding: var(--space-xl) var(--space-md);
    }

    .services-cta p[b-f39qwr3z4o] {
        font-size: 1rem;
    }
}

/* Small phones */
@media (max-width: 375px) {
    .services-section[b-f39qwr3z4o] {
        padding: var(--space-2xl) var(--space-sm);
    }

    .section-title[b-f39qwr3z4o] {
        font-size: 1.75rem;
    }

    .section-subtitle[b-f39qwr3z4o] {
        font-size: 0.95rem;
    }

    .service-card[b-f39qwr3z4o] {
        padding: var(--space-md);
        border-radius: var(--radius-md);
    }
}
/* /Components/SiteFooter.razor.rz.scp.css */
.site-footer[b-dt1yyssrvk] {
    width: 100%;
    margin-top: 10rem;
    padding: 6rem 0 4rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer-container[b-dt1yyssrvk] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main[b-dt1yyssrvk] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6rem;
    gap: 4rem;
}

.footer-brand .brand-n8[b-dt1yyssrvk] {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: block;
}

.brand-tagline[b-dt1yyssrvk] {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.footer-links[b-dt1yyssrvk] {
    display: flex;
    gap: 6rem;
}

.link-group h4[b-dt1yyssrvk] {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.link-group a[b-dt1yyssrvk],
.foundation-item[b-dt1yyssrvk] {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.link-group a:hover[b-dt1yyssrvk] {
    color: #fff;
    transform: translateX(5px);
}

.foundation-item[b-dt1yyssrvk] {
    cursor: default;
}

.footer-bottom[b-dt1yyssrvk] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-legal[b-dt1yyssrvk] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal .separator[b-dt1yyssrvk] {
    opacity: 0.3;
}

.footer-easter-egg[b-dt1yyssrvk] {
    text-decoration: none;
    opacity: 0.3;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-easter-egg:hover[b-dt1yyssrvk] {
    opacity: 1;
    transform: scale(1.2);
}

@media (max-width: 850px) {
    .footer-main[b-dt1yyssrvk] {
        flex-direction: column;
        gap: var(--space-3xl);
        text-align: center;
    }

    .footer-links[b-dt1yyssrvk] {
        justify-content: center;
        gap: var(--space-3xl);
        flex-wrap: wrap;
    }

    .footer-bottom[b-dt1yyssrvk] {
        flex-direction: column;
        gap: var(--space-xl);
        text-align: center;
    }

    .link-group a[b-dt1yyssrvk] {
        min-height: var(--touch-min);
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .site-footer[b-dt1yyssrvk] {
        margin-top: var(--space-4xl);
        padding: var(--space-3xl) 0 var(--space-2xl);
    }

    .footer-container[b-dt1yyssrvk] {
        padding: 0 var(--space-md);
    }

    .footer-links[b-dt1yyssrvk] {
        gap: var(--space-2xl);
    }

    .footer-brand .brand-n8[b-dt1yyssrvk] {
        font-size: 2rem;
    }

    .brand-tagline[b-dt1yyssrvk] {
        font-size: 0.85rem;
    }

    .link-group h4[b-dt1yyssrvk] {
        font-size: 0.75rem;
        margin-bottom: var(--space-md);
    }

    .link-group a[b-dt1yyssrvk],
    .foundation-item[b-dt1yyssrvk] {
        font-size: 0.9rem;
    }
}

@media (max-width: 375px) {
    .site-footer[b-dt1yyssrvk] {
        padding: var(--space-2xl) 0 calc(var(--space-xl) + var(--safe-bottom));
    }

    .footer-container[b-dt1yyssrvk] {
        padding: 0 var(--space-sm);
    }

    .footer-main[b-dt1yyssrvk] {
        gap: var(--space-2xl);
    }

    .footer-links[b-dt1yyssrvk] {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .footer-legal[b-dt1yyssrvk] {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .footer-legal .separator[b-dt1yyssrvk] {
        display: none;
    }
}
/* /Components/TopNav.razor.rz.scp.css */
.top-nav[b-y9bqjbd9kf] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: calc(var(--space-md) + var(--safe-top)) var(--space-xl) var(--space-md);
    transition: all var(--transition-base) var(--ease-in-out);
}

.top-nav.scrolled[b-y9bqjbd9kf] {
    background: rgba(5, 1, 13, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: calc(var(--space-sm) + var(--safe-top)) var(--space-xl) var(--space-sm);
}

.nav-container[b-y9bqjbd9kf] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Brand */
.nav-brand[b-y9bqjbd9kf] {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.brand-text[b-y9bqjbd9kf] {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.3s;
}

.nav-brand:hover .brand-text[b-y9bqjbd9kf] {
    opacity: 0.8;
}

/* Desktop Menu */
.nav-menu[b-y9bqjbd9kf] {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links[b-y9bqjbd9kf] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link[b-y9bqjbd9kf] {
    position: relative;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    border-radius: 8px;
}

.nav-link:hover[b-y9bqjbd9kf],
.nav-link.active[b-y9bqjbd9kf] {
    color: var(--text-main);
}

.nav-link.active[b-y9bqjbd9kf]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

/* Actions */
.nav-actions[b-y9bqjbd9kf] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-btn[b-y9bqjbd9kf] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover[b-y9bqjbd9kf] {
    color: var(--text-main);
    border-color: var(--primary);
    background: rgba(0, 229, 255, 0.1);
}

.nav-cta[b-y9bqjbd9kf] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 229, 255, 0.2);
}

.nav-cta:hover[b-y9bqjbd9kf] {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
}

.nav-cta svg[b-y9bqjbd9kf] {
    transition: transform 0.3s;
}

.nav-cta:hover svg[b-y9bqjbd9kf] {
    transform: translateX(3px);
}

/* Mobile Toggle */
.mobile-toggle[b-y9bqjbd9kf] {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line[b-y9bqjbd9kf] {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-toggle.active .hamburger-line:nth-child(1)[b-y9bqjbd9kf] {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active .hamburger-line:nth-child(2)[b-y9bqjbd9kf] {
    opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3)[b-y9bqjbd9kf] {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .top-nav[b-y9bqjbd9kf] {
        padding: calc(var(--space-md) + var(--safe-top)) var(--space-md) var(--space-md);
    }

    .top-nav.scrolled[b-y9bqjbd9kf] {
        padding: calc(var(--space-sm) + var(--safe-top)) var(--space-md) var(--space-sm);
    }

    .mobile-toggle[b-y9bqjbd9kf] {
        display: flex;
        min-width: var(--touch-min);
        min-height: var(--touch-min);
    }

    .nav-menu[b-y9bqjbd9kf] {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-xl);
        background: linear-gradient(135deg, rgba(5, 1, 13, 0.97) 0%, rgba(10, 5, 20, 0.97) 100%);
        backdrop-filter: blur(30px) saturate(150%);
        -webkit-backdrop-filter: blur(30px) saturate(150%);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s var(--ease-in-out), 
                    visibility 0.4s var(--ease-in-out);
        padding: var(--space-xl);
        padding-top: calc(var(--space-xl) + var(--safe-top));
        padding-bottom: calc(var(--space-xl) + var(--safe-bottom));
    }

    .nav-menu.open[b-y9bqjbd9kf] {
        opacity: 1;
        visibility: visible;
    }

    .nav-links[b-y9bqjbd9kf] {
        flex-direction: column;
        gap: var(--space-sm);
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-lg);
        padding: var(--space-lg);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .nav-link[b-y9bqjbd9kf] {
        font-size: 1.5rem;
        padding: var(--space-md) var(--space-lg);
        min-height: var(--touch-min);
        color: rgba(255, 255, 255, 0.9);
        background: transparent;
        border-radius: var(--radius-md);
        transition: all var(--transition-base) var(--ease-in-out);
        display: flex;
        align-items: center;
    }

    .nav-link:hover[b-y9bqjbd9kf] {
        background: rgba(0, 229, 255, 0.1);
        color: var(--primary);
        transform: translateX(8px);
    }

    .nav-link.active[b-y9bqjbd9kf] {
        background: rgba(0, 229, 255, 0.15);
        color: var(--primary);
    }

    .nav-actions[b-y9bqjbd9kf] {
        flex-direction: column;
        gap: var(--space-md);
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-lg);
        padding: var(--space-lg);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        width: 100%;
        max-width: 300px;
    }

    .search-btn[b-y9bqjbd9kf] {
        width: var(--touch-min);
        height: var(--touch-min);
    }

    .nav-cta[b-y9bqjbd9kf] {
        padding: var(--space-md) var(--space-xl);
        font-size: 1rem;
        min-height: var(--touch-min);
        justify-content: center;
    }
}
/* /Components/WorkSection.razor.rz.scp.css */
.work-section[b-y3sxqojofn] {
    min-height: 100vh;
    padding: 8rem 2rem;
    position: relative;
}

.section-content[b-y3sxqojofn] {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.section-header[b-y3sxqojofn] {
    text-align: center;
    margin-bottom: 3rem;
}

.section-eyebrow[b-y3sxqojofn] {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title[b-y3sxqojofn] {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-main), var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle[b-y3sxqojofn] {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* Filter Bar */
.filter-bar[b-y3sxqojofn] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn[b-y3sxqojofn] {
    padding: 0.6rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover[b-y3sxqojofn] {
    color: var(--text-main);
    border-color: var(--primary);
}

.filter-btn.active[b-y3sxqojofn] {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(255, 0, 127, 0.15));
    border-color: var(--primary);
    color: var(--text-main);
}

/* Work Grid */
.work-grid[b-y3sxqojofn] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* Work Card */
.work-card[b-y3sxqojofn] {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.card-glow[b-y3sxqojofn] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-color), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.work-card:hover[b-y3sxqojofn] {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.work-card:hover .card-glow[b-y3sxqojofn] {
    opacity: 1;
}

.work-card:focus-visible[b-y3sxqojofn] {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Card Header */
.card-header[b-y3sxqojofn] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.app-icon[b-y3sxqojofn] {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 14px;
    border: 1px solid var(--glass-border);
}

.icon-letter[b-y3sxqojofn] {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand-color), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.status-type[b-y3sxqojofn] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.status-badge[b-y3sxqojofn] {
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
}

.status-badge.live[b-y3sxqojofn] {
    background: rgba(0, 200, 83, 0.15);
    color: #00c853;
    border: 1px solid rgba(0, 200, 83, 0.3);
}

.status-badge.wip[b-y3sxqojofn] {
    background: rgba(255, 179, 0, 0.15);
    color: #ffb300;
    border: 1px solid rgba(255, 179, 0, 0.3);
}

.status-badge.soon[b-y3sxqojofn] {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
}

.type-badge[b-y3sxqojofn] {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Card Body */
.card-body[b-y3sxqojofn] {
    flex: 1;
    margin-bottom: 1rem;
}

.app-name[b-y3sxqojofn] {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.app-description[b-y3sxqojofn] {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tech Tags */
.card-tech[b-y3sxqojofn] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tag[b-y3sxqojofn] {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    color: var(--text-muted);
}

/* Card Footer */
.card-footer[b-y3sxqojofn] {
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.view-link[b-y3sxqojofn] {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    transition: color 0.3s;
}

.work-card:hover .view-link[b-y3sxqojofn] {
    color: var(--text-main);
}

/* Empty State */
.empty-state[b-y3sxqojofn] {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

/* Skeleton */
.work-card.skeleton[b-y3sxqojofn] {
    min-height: 280px;
}

.skeleton-icon[b-y3sxqojofn] {
    width: 56px;
    height: 56px;
    background: var(--glass-border);
    border-radius: 14px;
    animation: pulse-b-y3sxqojofn 1.5s infinite;
}

.skeleton-content[b-y3sxqojofn] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.skeleton-title[b-y3sxqojofn] {
    height: 24px;
    width: 60%;
    background: var(--glass-border);
    border-radius: 6px;
    animation: pulse-b-y3sxqojofn 1.5s infinite;
}

.skeleton-text[b-y3sxqojofn] {
    height: 48px;
    width: 100%;
    background: var(--glass-border);
    border-radius: 6px;
    animation: pulse-b-y3sxqojofn 1.5s infinite;
}

@keyframes pulse-b-y3sxqojofn {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* Responsive */
@media (max-width: 768px) {
    .work-section[b-y3sxqojofn] {
        padding: var(--space-4xl) var(--space-md);
    }

    .filter-bar[b-y3sxqojofn] {
        gap: var(--space-sm);
        margin-bottom: var(--space-xl);
    }

    .filter-btn[b-y3sxqojofn] {
        padding: var(--space-sm) var(--space-md);
        min-height: var(--touch-min);
        font-size: 0.85rem;
    }

    .work-grid[b-y3sxqojofn] {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .work-card[b-y3sxqojofn] {
        padding: var(--space-lg);
    }

    .view-link[b-y3sxqojofn] {
        min-height: var(--touch-min);
        display: flex;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .work-section[b-y3sxqojofn] {
        padding: var(--space-3xl) var(--space-md);
    }

    .section-header[b-y3sxqojofn] {
        margin-bottom: var(--space-xl);
    }

    .filter-btn[b-y3sxqojofn] {
        padding: var(--space-sm) var(--space-sm);
        font-size: 0.8rem;
    }

    .work-card[b-y3sxqojofn] {
        padding: var(--space-md);
        border-radius: var(--radius-md);
    }

    .app-icon[b-y3sxqojofn] {
        width: 48px;
        height: 48px;
    }

    .icon-letter[b-y3sxqojofn] {
        font-size: 1.25rem;
    }
}

@media (max-width: 375px) {
    .work-section[b-y3sxqojofn] {
        padding: var(--space-2xl) var(--space-sm);
    }

    .section-title[b-y3sxqojofn] {
        font-size: 1.75rem;
    }

    .filter-btn[b-y3sxqojofn] {
        font-size: 0.75rem;
        padding: var(--space-xs) var(--space-sm);
    }

    .app-name[b-y3sxqojofn] {
        font-size: 1.1rem;
    }

    .app-description[b-y3sxqojofn] {
        font-size: 0.85rem;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-g42wlr3mp6] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-g42wlr3mp6] {
    flex: 1;
}

main:focus[b-g42wlr3mp6] {
    outline: none;
}

/* Skip Link for Accessibility */
.skip-link[b-g42wlr3mp6] {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary, #00e5ff);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s ease;
    text-decoration: none;
}

.skip-link:focus[b-g42wlr3mp6] {
    top: 0;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.sidebar[b-g42wlr3mp6] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-g42wlr3mp6] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-g42wlr3mp6]  a, .top-row[b-g42wlr3mp6]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-g42wlr3mp6]  a:hover, .top-row[b-g42wlr3mp6]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-g42wlr3mp6]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-g42wlr3mp6] {
        justify-content: space-between;
    }

    .top-row[b-g42wlr3mp6]  a, .top-row[b-g42wlr3mp6]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-g42wlr3mp6] {
        flex-direction: row;
    }

    .sidebar[b-g42wlr3mp6] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-g42wlr3mp6] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-g42wlr3mp6]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-g42wlr3mp6], article[b-g42wlr3mp6] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Pages/AppPage.razor.rz.scp.css */
.app-page-container[b-ct0fai0uiw] {
    min-height: 100vh;
    background: #0a0118;
    color: #fff;
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

.mesh-gradient[b-ct0fai0uiw] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(at 0% 0%, rgba(var(--brand-color-rgb), 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 0, 127, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 1) 0, transparent 50%),
        radial-gradient(at 0% 50%, hsla(339, 49%, 30%, 1) 0, transparent 50%),
        radial-gradient(at 100% 50%, hsla(225, 39%, 30%, 1) 0, transparent 50%),
        radial-gradient(at 0% 100%, hsla(339, 49%, 30%, 1) 0, transparent 50%),
        radial-gradient(at 100% 100%, hsla(253, 16%, 7%, 1) 0, transparent 50%);
    background-size: 200% 200%;
    animation: meshMovement-b-ct0fai0uiw 30s ease infinite alternate;
    filter: blur(60px);
    opacity: 0.4;
    z-index: 1;
}

@keyframes meshMovement-b-ct0fai0uiw {
    0% {
        background-position: 0% 0%;
    }

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

.app-content[b-ct0fai0uiw] {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reveal[b-ct0fai0uiw] {
    animation: slideUpReveal-b-ct0fai0uiw 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes slideUpReveal-b-ct0fai0uiw {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.app-header-nav[b-ct0fai0uiw] {
    margin-bottom: 4rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.back-link[b-ct0fai0uiw] {
    display: inline-block;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
}

.back-link:hover[b-ct0fai0uiw] {
    color: #fff;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.privacy-container[b-ct0fai0uiw] {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4rem;
    padding: 6rem 5rem;
    margin-bottom: 8rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    width: 100%;
    text-align: center;
}

.privacy-section h2[b-ct0fai0uiw] {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #fff;
    letter-spacing: -0.02em;
    background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.effective-date[b-ct0fai0uiw] {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.privacy-block[b-ct0fai0uiw] {
    margin-bottom: 5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-block h3[b-ct0fai0uiw] {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: -0.01em;
}

.privacy-block p[b-ct0fai0uiw] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25rem;
    line-height: 1.9;
    font-weight: 300;
}

.app-footer[b-ct0fai0uiw] {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.5);
}

.app-footer a[b-ct0fai0uiw] {
    color: #00e5ff;
}

.loading[b-ct0fai0uiw],
.error[b-ct0fai0uiw] {
    text-align: center;
    margin-top: 20vh;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.1em;
}

/* Skeleton Loading */
.loading-skeleton[b-ct0fai0uiw] {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding-top: 2rem;
    position: relative;
    z-index: 2;
}

.skeleton-nav[b-ct0fai0uiw] {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.skeleton-back[b-ct0fai0uiw] {
    width: 60px;
    height: 20px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer-b-ct0fai0uiw 1.5s ease-in-out infinite;
}

.skeleton-app-header[b-ct0fai0uiw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.skeleton-app-icon[b-ct0fai0uiw] {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer-b-ct0fai0uiw 1.5s ease-in-out infinite;
}

.skeleton-app-info[b-ct0fai0uiw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
}

.skeleton-app-title[b-ct0fai0uiw] {
    width: 200px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer-b-ct0fai0uiw 1.5s ease-in-out infinite;
}

.skeleton-app-desc[b-ct0fai0uiw] {
    width: 100%;
    height: 18px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer-b-ct0fai0uiw 1.5s ease-in-out infinite;
}

.skeleton-app-desc.short[b-ct0fai0uiw] {
    width: 70%;
}

.skeleton-section[b-ct0fai0uiw] {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.skeleton-section-title[b-ct0fai0uiw] {
    width: 180px;
    height: 20px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer-b-ct0fai0uiw 1.5s ease-in-out infinite;
}

.skeleton-cards[b-ct0fai0uiw] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.skeleton-mini-card[b-ct0fai0uiw] {
    height: 120px;
    border-radius: 1.5rem;
    background: linear-gradient(90deg, rgba(255,255,255,0.02) 25%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.02) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer-b-ct0fai0uiw 1.5s ease-in-out infinite;
    border: 1px dashed rgba(255,255,255,0.08);
}

.skeleton-mini-card:nth-child(1)[b-ct0fai0uiw] { animation-delay: 0s; }
.skeleton-mini-card:nth-child(2)[b-ct0fai0uiw] { animation-delay: 0.1s; }
.skeleton-mini-card:nth-child(3)[b-ct0fai0uiw] { animation-delay: 0.2s; }

@keyframes skeletonShimmer-b-ct0fai0uiw {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@media (max-width: 768px) {
    .skeleton-cards[b-ct0fai0uiw] {
        grid-template-columns: 1fr;
    }

    .skeleton-app-icon[b-ct0fai0uiw] {
        width: 80px;
        height: 80px;
    }
}


.spec-value.live[b-ct0fai0uiw] {
    color: #00ff88;
}

.spec-value.wip[b-ct0fai0uiw] {
    color: #ffaa00;
}

.spec-separator[b-ct0fai0uiw] {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

/* Project Details Sections */
.project-details[b-ct0fai0uiw] {
    margin: 4rem 0 6rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.detail-title[b-ct0fai0uiw] {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 3.5rem;
    text-align: center;
}

.features-grid[b-ct0fai0uiw] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card[b-ct0fai0uiw] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover[b-ct0fai0uiw] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.2);
    transform: translateY(-8px);
}

.feature-card p[b-ct0fai0uiw] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

/* Privacy Nutrients */
.privacy-nutrients[b-ct0fai0uiw] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.nutrient-card[b-ct0fai0uiw] {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.nutrient-card:hover[b-ct0fai0uiw] {
    border-style: solid;
    border-color: var(--brand-color);
    background: rgba(var(--brand-color-rgb), 0.02);
}

.nutrient-title[b-ct0fai0uiw] {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-color);
    margin-bottom: 0.75rem;
}

.nutrient-desc[b-ct0fai0uiw] {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

.privacy-footer[b-ct0fai0uiw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.privacy-contact[b-ct0fai0uiw] {
    color: var(--brand-color);
    font-weight: 600;
}

.tech-badges[b-ct0fai0uiw] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.tech-badge[b-ct0fai0uiw] {
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.tech-badge:hover[b-ct0fai0uiw] {
    border-color: var(--secondary);
    background: rgba(255, 0, 127, 0.05);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .app-specs-row[b-ct0fai0uiw] {
        flex-direction: column;
        gap: 1.5rem;
        border-radius: 2rem;
        margin: 0 0 4rem;
        padding: 2rem;
    }

    .spec-separator[b-ct0fai0uiw] {
        width: 30px;
        height: 1px;
    }

    .features-grid[b-ct0fai0uiw] {
        grid-template-columns: 1fr;
    }

    .project-details[b-ct0fai0uiw] {
        gap: 4rem;
    }
}

@media (max-width: 500px) {
    .app-page-container[b-ct0fai0uiw] {
        padding: 4rem 1rem;
    }

    .app-header-nav[b-ct0fai0uiw] {
        margin-bottom: 2.5rem;
    }

    .back-link[b-ct0fai0uiw] {
        font-size: 0.9rem;
    }

    .project-details[b-ct0fai0uiw] {
        margin-top: 2rem;
        gap: 4rem;
    }

    .detail-title[b-ct0fai0uiw] {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .privacy-nutrients[b-ct0fai0uiw] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .nutrient-card[b-ct0fai0uiw] {
        padding: 1.5rem;
        border-radius: 1.25rem;
    }

    .nutrient-title[b-ct0fai0uiw] {
        font-size: 1rem;
    }

    .nutrient-desc[b-ct0fai0uiw] {
        font-size: 0.85rem;
    }

    .privacy-footer[b-ct0fai0uiw] {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
    }

    .tech-badges[b-ct0fai0uiw] {
        gap: 0.5rem;
    }

    .tech-badge[b-ct0fai0uiw] {
        padding: 0.4rem 0.9rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 700px) {
    .app-page-container[b-ct0fai0uiw] {
        padding: 3rem 1.5rem;
    }

    .privacy-container[b-ct0fai0uiw] {
        padding: 2.5rem 1.5rem;
        border-radius: 2rem;
    }

    .privacy-section h2[b-ct0fai0uiw] {
        font-size: 2rem;
    }

    .privacy-block h3[b-ct0fai0uiw] {
        font-size: 1.3rem;
    }
}

/* Scroll Hint */
.scroll-hint[b-ct0fai0uiw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin: 3rem 0 4rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.scroll-hint:hover[b-ct0fai0uiw] {
    opacity: 1;
}

.scroll-text[b-ct0fai0uiw] {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-arrow[b-ct0fai0uiw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.scroll-arrow span[b-ct0fai0uiw] {
    display: block;
    width: 12px;
    height: 12px;
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
    animation: scrollBounce-b-ct0fai0uiw 2s infinite;
}

.scroll-arrow span:nth-child(2)[b-ct0fai0uiw] {
    animation-delay: 0.2s;
    opacity: 0.5;
}

@keyframes scrollBounce-b-ct0fai0uiw {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: rotate(45deg) translateY(0);
    }

    40% {
        transform: rotate(45deg) translateY(6px);
    }

    60% {
        transform: rotate(45deg) translateY(3px);
    }
}
/* /Pages/Error404.razor.rz.scp.css */
.error-hero[b-vn02mtjnkh] {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.error-content[b-vn02mtjnkh] {
    z-index: 3;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-title[b-vn02mtjnkh] {
    font-size: 7rem;
    margin-bottom: 0.5rem;
}

.error-subtitle[b-vn02mtjnkh] {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #fff;
    opacity: 0.85;
    text-shadow: 0 0 16px #ff007f, 0 0 32px #00e5ff;
    margin-bottom: 2.2rem;
    max-width: 90vw;
    text-align: center;
}

.error-text[b-vn02mtjnkh] {
    font-size: 1.18rem;
    max-width: 480px;
    margin-bottom: 2.2rem;
    opacity: 0.85;
}

.error-btn[b-vn02mtjnkh] {
    font-size: 1.15rem;
    padding: 0.8rem 2.2rem;
    box-shadow: 0 0 24px var(--pink);
}
/* /Pages/Games/BrickBreaker.razor.rz.scp.css */
.brick-breaker-page[b-derx62nsl5] {
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #05010d 0%, #0a0118 100%);
}

.mesh-gradient[b-derx62nsl5] {
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 229, 255, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 127, 0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.game-header[b-derx62nsl5] {
    width: 100%;
    max-width: 820px;
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 1;
}

.back-link[b-derx62nsl5] {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 100px;
}

.back-link:hover[b-derx62nsl5] {
    color: #00e5ff;
    background: rgba(0, 229, 255, 0.1);
}

.back-link:focus-visible[b-derx62nsl5] {
    outline: 2px solid #00e5ff;
    outline-offset: 2px;
}

.game-title[b-derx62nsl5] {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    background: linear-gradient(135deg, #00e5ff, #ff007f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    margin: 0;
}

.game-container[b-derx62nsl5] {
    position: relative;
    width: 820px;
    max-width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.game-container:fullscreen[b-derx62nsl5],
.game-container:-webkit-full-screen[b-derx62nsl5] {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    border-radius: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #05010d;
}

.game-container:fullscreen #gameCanvas[b-derx62nsl5],
.game-container:-webkit-full-screen #gameCanvas[b-derx62nsl5] {
    width: auto !important;
    height: 80vh !important;
    max-width: calc(80vh * 1.33);
}

#gameCanvas[b-derx62nsl5] {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    background: linear-gradient(180deg, #0a0118 0%, #05010d 100%);
    box-shadow: inset 0 0 40px rgba(0, 229, 255, 0.08);
    cursor: none;
}

.game-ui[b-derx62nsl5] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1rem 0.5rem;
    gap: 0.75rem;
}

.stat-item[b-derx62nsl5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 229, 255, 0.03);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 12px;
    min-width: 80px;
    transition: all 0.3s ease;
}

.stat-item.combo[b-derx62nsl5] {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
}

.stat-item .label[b-derx62nsl5] {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item .value[b-derx62nsl5] {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00e5ff;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.stat-item.combo .value[b-derx62nsl5] {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.game-controls[b-derx62nsl5] {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem;
}

.game-btn[b-derx62nsl5] {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-height: 48px;
}

.game-btn:focus-visible[b-derx62nsl5] {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.game-btn.primary[b-derx62nsl5] {
    background: linear-gradient(135deg, #00e5ff, #ff007f);
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
}

.game-btn.primary:hover[b-derx62nsl5] {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.4);
}

.game-btn.secondary[b-derx62nsl5] {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.game-btn.secondary:hover[b-derx62nsl5] {
    background: rgba(255, 255, 255, 0.12);
}

.game-btn.icon-btn[b-derx62nsl5] {
    padding: 0.75rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 1.2rem;
}

.game-btn.icon-btn:hover[b-derx62nsl5] {
    background: rgba(255, 215, 0, 0.2);
}

.overlay-screen[b-derx62nsl5] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 3rem;
    background: rgba(5, 1, 13, 0.95);
    border: 2px solid #00e5ff;
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(0, 229, 255, 0.3);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.overlay-screen.success[b-derx62nsl5] {
    border-color: #00ff88;
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.3);
}

.overlay-title[b-derx62nsl5] {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    background: linear-gradient(135deg, #00e5ff, #ff007f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 1rem;
}

.overlay-screen.success .overlay-title[b-derx62nsl5] {
    background: linear-gradient(135deg, #00ff88, #00e5ff);
    -webkit-background-clip: text;
    background-clip: text;
}

.overlay-score[b-derx62nsl5] {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2rem;
}

.overlay-score span[b-derx62nsl5] {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00e5ff;
}

.game-instructions[b-derx62nsl5] {
    max-width: 820px;
    width: 100%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    z-index: 1;
}

.game-instructions h2[b-derx62nsl5] {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #00e5ff;
    margin: 0 0 1.5rem;
    letter-spacing: 1px;
}

.instructions-grid[b-derx62nsl5] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.instruction[b-derx62nsl5] {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.instruction kbd[b-derx62nsl5] {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: #00e5ff;
}

.instruction span[b-derx62nsl5] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.instruction p[b-derx62nsl5] {
    margin: 0.5rem 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.powerups h3[b-derx62nsl5] {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 0.75rem;
    font-weight: 500;
}

.powerup-list[b-derx62nsl5] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    align-items: center;
}

.powerup[b-derx62nsl5] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 0.25rem;
}

.powerup.expand[b-derx62nsl5] { background: rgba(0, 229, 255, 0.2); color: #00e5ff; }
.powerup.slow[b-derx62nsl5] { background: rgba(255, 0, 127, 0.2); color: #ff007f; }
.powerup.multi[b-derx62nsl5] { background: rgba(0, 255, 136, 0.2); color: #00ff88; }
.powerup.life[b-derx62nsl5] { background: rgba(255, 215, 0, 0.2); color: #ffd700; }

@media (max-width: 860px) {
    .brick-breaker-page[b-derx62nsl5] {
        padding: 1.5rem 1rem;
    }

    .game-container[b-derx62nsl5] {
        width: 100%;
        padding: 8px;
    }

    .game-title[b-derx62nsl5] {
        font-size: 1.5rem;
    }

    .stat-item[b-derx62nsl5] {
        padding: 0.5rem 0.75rem;
        min-width: 60px;
    }

    .stat-item .value[b-derx62nsl5] {
        font-size: 1.2rem;
    }

    .game-btn[b-derx62nsl5] {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }

    .instructions-grid[b-derx62nsl5] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Games/TicTacToe.razor.rz.scp.css */
.tictactoe-page[b-9l0sopcueb] {
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #05010d 0%, #0a0118 100%);
}

.mesh-gradient[b-9l0sopcueb] {
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(106, 0, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(255, 0, 127, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.game-header[b-9l0sopcueb] {
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 1;
}

.back-link[b-9l0sopcueb] {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 100px;
}

.back-link:hover[b-9l0sopcueb] {
    color: #00e5ff;
    background: rgba(0, 229, 255, 0.1);
}

.back-link:focus-visible[b-9l0sopcueb] {
    outline: 2px solid #00e5ff;
    outline-offset: 2px;
}

.game-title[b-9l0sopcueb] {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    background: linear-gradient(135deg, #6a00ff, #ff007f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    margin: 0;
}

.game-container[b-9l0sopcueb] {
    position: relative;
    width: 500px;
    max-width: 100%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.game-ui[b-9l0sopcueb] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    width: 100%;
}

.stat-item[b-9l0sopcueb] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.25rem;
    background: rgba(106, 0, 255, 0.03);
    border: 1px solid rgba(106, 0, 255, 0.15);
    border-radius: 12px;
    min-width: 70px;
    transition: all 0.3s ease;
}

.stat-item .label[b-9l0sopcueb] {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item .value[b-9l0sopcueb] {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #6a00ff;
    text-shadow: 0 0 10px rgba(106, 0, 255, 0.4);
}

.stat-item .value.player-x[b-9l0sopcueb] {
    color: #00e5ff;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.stat-item .value.player-o[b-9l0sopcueb] {
    color: #ff007f;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.4);
}

.board-container[b-9l0sopcueb] {
    position: relative;
}

.board[b-9l0sopcueb] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
}

.cell[b-9l0sopcueb] {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cell:hover:not(.taken)[b-9l0sopcueb] {
    background: rgba(106, 0, 255, 0.1);
    border-color: rgba(106, 0, 255, 0.3);
    transform: scale(1.05);
}

.cell:focus-visible[b-9l0sopcueb] {
    outline: 2px solid #00e5ff;
    outline-offset: 2px;
}

.cell.taken[b-9l0sopcueb] {
    cursor: not-allowed;
}

.cell.x[b-9l0sopcueb] {
    color: #00e5ff;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
    border-color: rgba(0, 229, 255, 0.3);
}

.cell.o[b-9l0sopcueb] {
    color: #ff007f;
    text-shadow: 0 0 20px rgba(255, 0, 127, 0.6);
    border-color: rgba(255, 0, 127, 0.3);
}

.cell.winner[b-9l0sopcueb] {
    animation: winPulse-b-9l0sopcueb 0.6s ease-in-out infinite alternate;
}

@keyframes winPulse-b-9l0sopcueb {
    from {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    to {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    }
}

.winning-line[b-9l0sopcueb] {
    position: absolute;
    background: linear-gradient(90deg, #ffd700, #ffaa00);
    border-radius: 4px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.winning-line.visible[b-9l0sopcueb] {
    opacity: 1;
}

.game-status[b-9l0sopcueb] {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 100px;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.status-text[b-9l0sopcueb] {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.status-text.winner-x[b-9l0sopcueb] {
    color: #00e5ff;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.status-text.winner-o[b-9l0sopcueb] {
    color: #ff007f;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.4);
}

.status-text.draw[b-9l0sopcueb] {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.game-controls[b-9l0sopcueb] {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.game-btn[b-9l0sopcueb] {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-height: 48px;
}

.game-btn:focus-visible[b-9l0sopcueb] {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.game-btn.primary[b-9l0sopcueb] {
    background: linear-gradient(135deg, #6a00ff, #ff007f);
    color: #fff;
    box-shadow: 0 4px 20px rgba(106, 0, 255, 0.3);
}

.game-btn.primary:hover[b-9l0sopcueb] {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(106, 0, 255, 0.4);
}

.game-btn.secondary[b-9l0sopcueb] {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.game-btn.secondary:hover[b-9l0sopcueb] {
    background: rgba(255, 255, 255, 0.12);
}

.mode-selector[b-9l0sopcueb],
.difficulty-selector[b-9l0sopcueb] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mode-label[b-9l0sopcueb] {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 0.5rem;
}

.mode-btn[b-9l0sopcueb],
.difficulty-btn[b-9l0sopcueb] {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.6);
}

.mode-btn:hover[b-9l0sopcueb],
.difficulty-btn:hover[b-9l0sopcueb] {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.mode-btn.active[b-9l0sopcueb],
.difficulty-btn.active[b-9l0sopcueb] {
    background: rgba(106, 0, 255, 0.2);
    border-color: rgba(106, 0, 255, 0.4);
    color: #fff;
}

.mode-btn:focus-visible[b-9l0sopcueb],
.difficulty-btn:focus-visible[b-9l0sopcueb] {
    outline: 2px solid #00e5ff;
    outline-offset: 2px;
}

.game-instructions[b-9l0sopcueb] {
    max-width: 500px;
    width: 100%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    z-index: 1;
}

.game-instructions h2[b-9l0sopcueb] {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #6a00ff;
    margin: 0 0 1.5rem;
    letter-spacing: 1px;
}

.instructions-grid[b-9l0sopcueb] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.instruction[b-9l0sopcueb] {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.instruction .icon[b-9l0sopcueb] {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.instruction p[b-9l0sopcueb] {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

@media (max-width: 540px) {
    .tictactoe-page[b-9l0sopcueb] {
        padding: 1.5rem 1rem;
    }

    .game-container[b-9l0sopcueb] {
        width: 100%;
        padding: 1.5rem 1rem;
    }

    .cell[b-9l0sopcueb] {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .stat-item[b-9l0sopcueb] {
        padding: 0.5rem 0.75rem;
        min-width: 60px;
    }

    .stat-item .value[b-9l0sopcueb] {
        font-size: 1.2rem;
    }

    .game-btn[b-9l0sopcueb] {
        padding: 0.6rem 1.25rem;
        font-size: 0.8rem;
    }

    .mode-selector[b-9l0sopcueb],
    .difficulty-selector[b-9l0sopcueb] {
        flex-wrap: wrap;
        justify-content: center;
    }

    .instructions-grid[b-9l0sopcueb] {
        grid-template-columns: 1fr;
    }
}
