/*
Theme Name: Tarot Reader Theme
Theme URI: https://example.com/tarot-theme
Author: Antigravity
Author URI: https://example.com
Description: A minimalist theme featuring a Gemini-powered Tarot Reader.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tarot-theme
*/

:root {
    --bg-color: #0d0d15;
    --text-color: #e0e0e0;
    --accent-color: #a855f7;
    --secondary-color: #1e1e2e;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

header, footer {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    text-align: center;
}
