:root {
    --brand-purple: #A855F7;
    --bg-light: #ffffff;
    --bg-dark: #000000;
    --text-light: #0f172a;
    --text-dark: #f8fafc;
}

/* Base resets to fix alignment */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

/* Theme switching colors */
.dark body {
    background-color: var(--bg-dark) !important;
    color: var(--text-dark) !important;
}

body {
    background-color: var(--bg-light);
    color: var(--text-light);
}

/* Fix Hero Alignment */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 5rem;
}

.placeholder-glow {
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    border-radius: 24px;
}

.dark .placeholder-glow {
    background: #0f172a;
    border-color: #334155;
}