/* Explain: Theme design tokens (colors, fonts) - black, gold, and dark blue palette. */
:root {
    --primary-color: #d4af37; /* Oro premio */
    --primary-hover: #b5952f;
    --secondary-color: #0a2463; /* Blu scuro cinematografico */
    --background-color: #000000; /* Nero */
    --surface-color: #0d0d0d; /* Quasi nero per elementi in rilievo */
    --text-color: #ffffff; /* Bianco */
    --text-muted: #a1a1aa; /* Grigio chiaro per testi secondari */
    --border-color: #1f2937; /* Grigio scuro per bordi */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}