/* Base styles for the CryptoChange project */
:root {
    --accent: #14b8a6;
    --accent-hover: #0d9488;
    --bg-dark: #0f172a;
    --bg-surface: #1e293b;
    --border-dark: #334155;
    --text-primary: #e2e8f0;
    --text-muted: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Background animation placeholder */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at 25% 50%, rgba(20, 184, 166, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 75% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
}
