/* Variables globales */
:root {
    --bg-primary: #0a0908;
    --bg-secondary: #1a1816;
    --bg-tertiary: #2a2624;
    --text-primary: #e8e6e0;
    --text-secondary: #8a8680;
    --text-muted: #6b6965;
    --accent: #c9933a;
    --accent-hover: #d4a34a;
    --accent-violet: #7c4dff;
    --border: #2a2624;
    --card-bg: #1a1816;
}

.light {
    --bg-primary: #fafaf8;
    --bg-secondary: #f5f5f2;
    --bg-tertiary: #e8e6e0;
    --text-primary: #0a0908;
    --text-secondary: #6b6965;
    --text-muted: #8a8680;
    --accent: #c9933a;
    --accent-hover: #b8832a;
    --accent-violet: #7c4dff;
    --border: #d4d4d0;
    --card-bg: #ffffff;
}

/* Backgrounds tematicos */
/* Tipografia */
.font-display {
    font-family: 'Papyrus', fantasy, serif;
}

/* Acento dorado */
.accent-gold {
    color: var(--accent);
    font-weight: 700;
}

/* Section labels */
.section-label {
    display: block;
    padding: 6px 12px;
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 600px 600px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}

/* Animaciones */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Focus */
*:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
