.glass-card {
    background-color: rgba(10, 37, 64, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.btn-primary {
    background: linear-gradient(90deg, #a6e6ff 0%, #00e293 100%);
    color: #ffffff;
    border-radius: 8px;
    box-shadow: inset 1px 1px 0px rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}
.btn-secondary {
    background: transparent;
    border: 1px solid #a6e6ff;
    color: #a6e6ff;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: rgba(166, 230, 255, 0.1);
}
.glow-line {
    filter: drop-shadow(0 0 8px rgba(166, 230, 255, 0.4));
}
.data-gradient {
    background: radial-gradient(circle at center, rgba(166, 230, 255, 0.05) 0%, transparent 70%);
}
