* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #F2C230;
    --orange: #F7931A;
    --red: #D7263D;
    --purple: #5C2D6F;
    --ivory: #F4F1E8;
    --black: #000000;
}

[data-theme="dark"] {
    --bg: #000000;
    --bg-elevated: #0a0a0a;
    --text-primary: #F4F1E8;
    --text-secondary: rgba(244, 241, 232, 0.6);
    --text-muted: rgba(244, 241, 232, 0.3);
    --border: rgba(244, 241, 232, 0.08);
}

[data-theme="light"] {
    --bg: #F4F1E8;
    --bg-elevated: #ffffff;
    --text-primary: #000000;
    --text-secondary: rgba(0, 0, 0, 0.6);
    --text-muted: rgba(0, 0, 0, 0.35);
    --border: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    min-height: 100vh;
    transition: background 0.6s ease, color 0.6s ease;
    -webkit-font-smoothing: antialiased;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    border-color: var(--text-muted);
}

.footer {
    padding: 60px 40px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-text {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 680px) {
    .footer {
        padding: 40px 24px;
    }
}
