/* ==========================================================================
   TBS SAN JUAN — GOAT GLOBAL DESIGN SYSTEM
   Foundation visual oficial del theme.
   Base: negro premium, rojo GOAT, dorado deportivo.
   ========================================================================== */

:root {
    --bg-base: #050506;
    --bg-surface: #101014;
    --bg-surface-elevated: #1a1a20;
    --bg-input: #1e1e24;

    --primary-red: #e6192b;
    --primary-red-soft: #ff2d55;
    --primary-red-glow: rgba(230, 25, 43, 0.5);
    --primary-red-dim: rgba(230, 25, 43, 0.15);

    --accent-gold: #d4af37;
    --accent-gold-soft: #ffcc33;
    --accent-gold-glow: rgba(212, 175, 55, 0.4);

    --text-main: #ffffff;
    --text-muted: #a0a0ab;
    --text-soft: rgba(255, 255, 255, 0.65);
    --text-dark: #000000;

    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(255, 255, 255, 0.2);

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-float: 0 12px 40px rgba(0, 0, 0, 0.7);

    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 999px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    background: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

img,
video,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}