.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
}

.hero-gradient {
    background: radial-gradient(circle at top right, #0f172a, #020617);
}

.tech-badge {
    background: linear-gradient(90deg, #4f46e5, #06b6d4);
}

.text-gradient {
    background: linear-gradient(to r, #60a5fa, #a78bfa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.frame-shadow {
    box-shadow: 0 0 60px -10px rgba(0, 0, 0, 0.7), inset 0 0 15px rgba(255, 255, 255, 0.05);
}

[x-cloak] {
    display: none !important;
}

.breadcrumb-container {
    padding: 5px 0;
    font-family: sans-serif;
    font-size: 0.8rem;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    /* Il separatore professionale */
    padding: 0 5px;
    color: #6c757d;
}

.breadcrumb-item a {
    color: #007bff;
    /* Usa il blu del tuo logo CW */
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
    pointer-events: none;
}