.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.dark .glass-panel {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.glass-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.dark .glass-header {
    background: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.grid-pattern {
    background-image: linear-gradient(rgba(148, 163, 184, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

.tech-border {
    position: relative;
}

.tech-border::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px;
    width: 10px; height: 10px;
    border-top: 2px solid #0EA5E9;
    border-left: 2px solid #0EA5E9;
    transition: all 0.3s ease;
    pointer-events: none;
}

.tech-border::after {
    content: '';
    position: absolute;
    bottom: -1px; right: -1px;
    width: 10px; height: 10px;
    border-bottom: 2px solid #0EA5E9;
    border-right: 2px solid #0EA5E9;
    transition: all 0.3s ease;
    pointer-events: none;
}

.tech-border:hover::before, .tech-border:hover::after {
    width: 100%;
    height: 100%;
}

[x-cloak] { display: none !important; }

/* Bottom nav safe area */
@media (max-width: 767px) {
    body { padding-bottom: 4.5rem; }
}

/* Bottom nav active indicator */
.bottom-nav-item.active {
    color: #0EA5E9;
}

.bottom-nav-item.active .bottom-nav-indicator {
    opacity: 1;
    transform: scaleX(1);
}

.bottom-nav-indicator {
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.2s ease;
}
