/* global.css */
:root {
    /* Entertainment Color Palette - Dark & Vibrant */
    --color-bg: #0a0a0a;          /* Almost Black */
    --color-surface: #1a1a1a;      /* Dark Grey */
    --color-primary: #8a2be2;      /* Electric Purple */
    --color-accent: #ffd700;       /* Gold */
    --color-text: #ffffff;
    --color-text-muted: #b3b3b3;

    --font-main: 'Montserrat', sans-serif;
    --font-display: 'Oswald', sans-serif; /* Bold for headlines */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--color-text);
    transition: 0.3s ease;
}

/* Utility for text centering */
.text-center { text-align: center; }