:root {
    /* Premium Cyber-Dark Palette */
    --bg-primary: #020617;
    --bg-secondary: #0f172a;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-primary: #3b82f6; /* Vibrant Blue */
    --accent-secondary: #22c55e; /* Vibrant Green */
    --accent-highlight: #4ade80; /* Light Emerald */
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    --spring-ease: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --smooth-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;

    /* Responsive Spacing & Sizing */
    --container-padding: clamp(1rem, 4vw, 2rem);
    --grid-gap: clamp(0.5rem, 2vw, 1.25rem);
    --hero-padding: clamp(1rem, 5vw, 2.5rem);
}

[data-theme='light'] {
    --bg-primary: #f1f5f9;
    --bg-secondary: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --accent-primary: #2563eb;
    --accent-secondary: #16a34a;
    --border-color: rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.05);
    --card-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Background Gradient Orbs */
.bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-orbs::before,
.bg-orbs::after {
    content: '';
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    animation: float 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
    mix-blend-mode: color-dodge;
}

.bg-orbs::before {
    top: -15vw;
    left: -15vw;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
}

.bg-orbs::after {
    bottom: -15vw;
    right: -15vw;
    background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 70%);
    animation-delay: -10s;
}

.mesh-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.1) 0, transparent 50%),
        radial-gradient(at 100% 0%, rgba(34, 197, 94, 0.1) 0, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(10vw, 10vh) scale(1.1);
    }
}

/* Layout */
.app-container {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Sidebar */
.sidebar {
    width: 270px;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.8) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.2);
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
    z-index: 10;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme='light'] .sidebar {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.05);
}

.sidebar-header {
    padding: 0 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden; /* Child scrolls instead */
}

.sidebar-fixed-part {
    padding: 0 1rem;
    flex-shrink: 0;
}

.sidebar-scrollable-part {
    flex: 1;
    overflow-y: auto;
    padding: 0 1rem 2rem;
}

.sidebar-scrollable-part::-webkit-scrollbar {
    width: 4px;
}

.sidebar-scrollable-part::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.sidebar-scrollable-part:hover::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
}

.nav-category {
    margin-bottom: 1.5rem;
}

.nav-category-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
    font-weight: 600;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 0.85rem 1.2rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 0.75rem;
    margin-bottom: 0.35rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid transparent;
}

.nav-item:hover,
.nav-item.active {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.02) 100%);
    color: var(--text-primary);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-left: 3px solid var(--accent-primary);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
}

[data-theme='light'] .nav-item:hover,
[data-theme='light'] .nav-item.active {
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.topbar {
    height: 70px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 5;
}

.search-bar {
    width: 100%;
    max-width: 600px;
    position: relative;
    transition: max-width 0.3s ease;
}

@media (max-width: 768px) {
    .search-bar {
        max-width: 100%;
    }
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border-radius: 2rem;
    border: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
    outline: none;
    transition: all 0.2s;
}

[data-theme='light'] .search-input {
    background: rgba(255, 255, 255, 0.5);
}

.search-input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme='light'] .icon-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}


/* Page Content */
.page-container {
    padding: 2rem;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-title {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
    font-weight: 800;
}

.page-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Dashboard Layout Adjustment */
.home-layout {
    display: block;
    padding: 1rem 0;
    min-height: 80vh;
}

.tools-column {
    flex: 1;
    min-width: 0;
    padding-bottom: 4rem;
}


/* Sidebar Scrollbar Refinement */
.nav-links::-webkit-scrollbar {
    width: 4px;
}

.nav-links::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.nav-links:hover::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Sidebar (Toggleable via Burger) */
@media (max-width: 1100px) {
    .sidebar {
        position: fixed;
        left: 0;
        top: 0;
        transform: translateX(-100%);
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.3);
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
}



/* Calculator Grid */
.calc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
    perspective: 1500px;
}

@media (max-width: 1440px) {
    .calc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .calc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .calc-grid {
        grid-template-columns: 1fr;
    }
}

/* Glass Card 3D */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 0.85rem;
    padding: 0.75rem;
    transition: all 0.5s var(--spring-ease);
    text-decoration: none;
    color: var(--text-primary);
    display: block;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.05),
            transparent);
    transition: 0.5s;
}

.glass-card:hover::before {
    left: 100%;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
}

[data-theme='light'] .glass-card:hover {
    box-shadow: 0 20px 40px rgba(31, 38, 135, 0.15);
    border-color: var(--accent-primary);
}

.card-icon {
    font-size: 1.2rem;
    color: var(--accent-primary);
    margin-bottom: 0.4rem;
    filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.4));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover .card-icon {
    transform: scale(1.15) translateZ(10px);
}

.card-title {
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
    font-weight: 700;
}

.card-desc {
    font-size: 0.7rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* Responsive Base */
.mobile-toggle, .mobile-close-btn {
    display: none !important;
}

@media (max-width: 1024px) {
    .sidebar {
        position: fixed;
        left: 0;
        top: 0;
        transform: translateX(-100%);
        height: 100vh;
        z-index: 100;
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.5);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .mobile-toggle, .mobile-close-btn {
        display: flex !important;
    }

    .app-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .search-bar {
        max-width: 100%;
        flex: 1;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-container {
        padding: 1.25rem 0.75rem;
    }

    .category-shortcuts {
        gap: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .glass-card {
        padding: 0.75rem;
    }

    .card-icon {
        font-size: 1.25rem;
        margin-bottom: 0.4rem;
    }
}

/* Hero Section */
.hero {
    padding: var(--hero-padding) 1rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--glass-border);
    animation: heroEntrance 0.8s var(--smooth-ease);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 999px;
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme='light'] .hero-title {
    background: linear-gradient(135deg, #0f172a 0%, #475569 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 0.5rem;
    line-height: 1.6;
}

/* Animations */
@keyframes heroEntrance {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-in {
    animation: fadeIn 0.5s var(--spring-ease) both;
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-highlight));
    border-radius: 999px;
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
}
/* Pagination / Show More */
.show-more-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
    width: 100%;
}

.btn-show-more {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    transition: all 0.4s var(--spring-ease);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-show-more:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5);
}

.btn-show-more:active {
    transform: translateY(-1px) scale(0.98);
}

.calc-card-hidden {
    display: none !important;
}
/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}
.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    align-items: center;
}
.breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}
.breadcrumb-item a:hover {
    color: var(--accent-primary);
}

@media (max-width: 768px) {
    .search-bar {
        max-width: 100%;
        flex: 1;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-container {
        padding: 1.25rem 0.75rem;
    }

    .category-shortcuts {
        gap: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .glass-card {
        padding: 0.75rem;
    }

    .card-icon {
        font-size: 1.25rem;
        margin-bottom: 0.4rem;
    }
}

/* Hero Section */
.hero {
    padding: var(--hero-padding) 1rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--glass-border);
    animation: heroEntrance 0.8s var(--smooth-ease);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 999px;
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme='light'] .hero-title {
    background: linear-gradient(135deg, #0f172a 0%, #475569 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 0.5rem;
    line-height: 1.6;
}

/* Animations */
@keyframes heroEntrance {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-in {
    animation: fadeIn 0.5s var(--spring-ease) both;
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-highlight));
    border-radius: 999px;
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
}
/* Pagination / Show More */
.show-more-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
    width: 100%;
}

.btn-show-more {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    transition: all 0.4s var(--spring-ease);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-show-more:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5);
}

.btn-show-more:active {
    transform: translateY(-1px) scale(0.98);
}

.calc-card-hidden {
    display: none !important;
}
/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}
.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    align-items: center;
}
.breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}
.breadcrumb-item a:hover {
    color: var(--accent-primary);
}
.breadcrumb-item.active {
    color: var(--text-primary);
    cursor: default;
}
.breadcrumb-item.separator {
    margin: 0 0.5rem;
    color: var(--text-muted);
}

/* Site Footer */
.site-footer {
    text-align: center;
    padding: 2.5rem 1rem 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.85rem;
    width: 100%;
}

.site-footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 0 4px;
}

.site-footer a:hover {
    color: var(--accent-primary);
}

.footer-links {
    margin-bottom: 0.6rem;
}

.footer-copyright {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

/* Legal Pages Reader Prose */
.legal-prose {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    color: var(--text-primary);
    line-height: 1.7;
}

.legal-prose h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme='dark'] .legal-prose h1 {
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-prose h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legal-prose p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.legal-prose ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.legal-prose li {
    margin-bottom: 0.5rem;
}
.breadcrumb-item a:hover {
    color: var(--accent-primary);
}
.breadcrumb-item.active {
    color: var(--text-primary);
    cursor: default;
}
.breadcrumb-item.separator {
    margin: 0 0.5rem;
    color: var(--text-muted);
}

/* Site Footer */
.site-footer {
    text-align: center;
    padding: 2.5rem 1rem 1.5rem;
    margin-top: auto;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.85rem;
    width: 100%;
}

.site-footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 0 4px;
}

.site-footer a:hover {
    color: var(--accent-primary);
}

.footer-links {
    margin-bottom: 0.6rem;
}

.footer-copyright {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}
