body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #0A0A0C;
    color: #F3F4F6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-heading {
    font-family: 'Syne', sans-serif;
}

/* Glassmorphism Styles */
.glass-card {
    background: rgba(18, 18, 24, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card-hover:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.3);
}

/* Glowing Effects */
.glow-accent {
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.5);
}

/* Audio Waveform Animation */
.waveform-bar {
    animation: waveform 1.2s ease-in-out infinite alternate;
}

@keyframes waveform {
    0% { height: 10%; }
    100% { height: 100%; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0A0A0C;
}
::-webkit-scrollbar-thumb {
    background: #27272A;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #8B5CF6;
}
 /* Footer */
        footer {
            background: #020617;
            padding: 4rem 5% 2rem;
            border-top: 1px solid #1e293b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-info h4 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .footer-info p {
            color: #94a3b8;
            margin-bottom: 0.5rem;
        }

        .footer-info a {
            color: #94a3b8;
            text-decoration: none;
        }

        .footer-info a:hover {
            color: #fff;
        }

        .copyright {
            text-align: center;
            color: #64748b;
            padding-top: 2rem;
            border-top: 1px solid #1e293b;
            font-size: 0.9rem;
        }
