body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #334155;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

.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: var(--tw-shadow-glass);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #ffffff;
    border-radius: 24px;
    width: 95%;
    max-width: 800px;
    max-height: 85vh;
    padding: 40px;
    position: relative;
    overflow-y: auto;
    color: #334155;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.close-modal {
    position: absolute;
    top: 24px;
    right: 32px;
    color: #94a3b8;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #0ea5e9;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 24px;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    animation: slideUpCookie 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpCookie {
    from { transform: translate(-50%, 100px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

#nav-indicator {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(14,165,233,0.1));
    box-shadow: inset 2px 2px 5px rgba(255,255,255,0.7), inset -2px -2px 5px rgba(14,165,233,0.1), 0 2px 8px rgba(14,165,233,0.15);
    border: 1px solid rgba(255,255,255,0.6);
}
