/* PrimeTools - Base Styles */
*, *::before, *::after { box-sizing: border-box; }
:root {
    --bg-body: #0e0e10;
    --bg-alt: #141416;
    --bg-card: #18181b;
    --accent: #9146ff;
    --text-white: #efeff1;
    --text-gray: #adadb8;
    --border: #303032;
    --border-radius: 12px;
}
body {
    background-color: var(--bg-body);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* Cookie Banner */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: #18181b; border-top: 2px solid var(--accent);
    padding: 14px 30px; z-index: 9999;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 10px;
}
#cookie-banner p { margin: 0; color: var(--text-gray); font-size: 0.9rem; }
#cookie-banner a { color: var(--accent); font-weight: 600; }
#cookie-banner button {
    background: var(--accent); color: #fff; border: none;
    padding: 8px 22px; border-radius: 6px; font-weight: bold; font-size: 0.9rem;
}
#cookie-banner button:hover { background: #772ce8; }
