:root {
    --ltmc-navy: #0a1f44;
    --ltmc-navy-light: #123a73;
    --ltmc-gold: #d4af37;
    --ltmc-gold-dark: #c8a12f;

    --ltmc-bg: #f4f6f9;
    --ltmc-white: #ffffff;
    --ltmc-text: #111827;
    --ltmc-muted: #6b7280;
    --ltmc-border: #eef0f4;

    --ltmc-danger: #dc3545;
    --ltmc-success: #198754;
    --ltmc-warning: #ffc107;

    --ltmc-radius: 14px;
    --ltmc-shadow: 0 8px 24px rgba(15, 23, 42, .08);
}

* {
    box-sizing: border-box;
}

body {
    background: var(--ltmc-bg);
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    color: var(--ltmc-text);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.text-gold {
    color: var(--ltmc-gold) !important;
}

.bg-navy {
    background: var(--ltmc-navy) !important;
}

.bg-gold {
    background: var(--ltmc-gold) !important;
}