@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --primary-500: #6B46C1;
    --primary-600: #5F3DC4;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Waveform visualization */
.waveform {
    background: linear-gradient(90deg, var(--primary-500) 0%, var(--primary-600) 100%);
    height: 100px;
    width: 100%;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    margin: 1rem 0;
}

.waveform::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        to right,
        transparent,
        transparent 1px,
        rgba(255,255,255,0.1) 1px,
        rgba(255,255,255,0.1) 2px
    );
    background-size: 4px 100%;
}