/* /Components/Layout/MainLayout.razor.rz.scp.css */
.site-wrapper[b-0flpvbfcpg] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content[b-0flpvbfcpg] {
    flex: 1;
    padding-top: 80px;
}

.site-footer[b-0flpvbfcpg] {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 2rem 0;
    margin-top: auto;
}

.footer-inner[b-0flpvbfcpg] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand[b-0flpvbfcpg] {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    letter-spacing: 0.15em;
}

.footer-copy[b-0flpvbfcpg] {
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    .footer-inner[b-0flpvbfcpg] {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar[b-pklexotedi] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
}

.navbar--scrolled[b-pklexotedi] {
    background: rgba(10, 10, 15, 0.95);
    border-bottom-color: var(--border);
    padding: 0.6rem 0;
}

.navbar-inner[b-pklexotedi] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand[b-pklexotedi] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s;
}

.navbar-brand:hover[b-pklexotedi] {
    color: var(--accent);
}

.brand-text[b-pklexotedi] {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
}

.brand-icon[b-pklexotedi] {
    display: flex;
    animation: pulse-glow-b-pklexotedi 3s ease-in-out infinite;
}

.navbar-links[b-pklexotedi] {
    display: flex;
    gap: 0.5rem;
}

.nav-link[b-pklexotedi] {
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link:hover[b-pklexotedi] {
    color: var(--text) !important;
    background: rgba(196, 62, 62, 0.1);
}

.nav-link:global(.active)[b-pklexotedi] {
    color: var(--primary) !important;
    background: rgba(196, 62, 62, 0.15);
}

.navbar-toggle[b-pklexotedi] {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.toggle-bar[b-pklexotedi] {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
    border-radius: 2px;
}

@keyframes pulse-glow-b-pklexotedi {
    0%, 100% { filter: drop-shadow(0 0 4px rgba(196, 62, 62, 0.4)); }
    50% { filter: drop-shadow(0 0 12px rgba(232, 148, 58, 0.6)); }
}

@media (max-width: 768px) {
    .navbar-toggle[b-pklexotedi] {
        display: flex;
    }

    .navbar-links[b-pklexotedi] {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s;
    }

    :global(.navbar--open) .navbar-links[b-pklexotedi] {
        opacity: 1;
        pointer-events: all;
    }

    :global(.navbar--open) .toggle-bar:nth-child(1)[b-pklexotedi] {
        transform: rotate(45deg) translate(5px, 5px);
    }

    :global(.navbar--open) .toggle-bar:nth-child(2)[b-pklexotedi] {
        opacity: 0;
    }

    :global(.navbar--open) .toggle-bar:nth-child(3)[b-pklexotedi] {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-link[b-pklexotedi] {
        font-size: 1.3rem !important;
        padding: 1rem 2rem !important;
    }
}
