.glass-panel {
    background: rgba(16, 20, 21, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

body {
    background-color: #050608;
    color: #e0e3e5;
    -webkit-font-smoothing: antialiased;
}

.text-gradient {
    background: linear-gradient(135deg, #c6c6cc 0%, #2E5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

#mobile-menu.open {
    max-height: 320px;
    opacity: 1;
}

.form-success {
    display: none;
}

.form-success.visible {
    display: block;
}
