/*
  Dino News Shared Theme (Paleo-Industrial)
  ----------------------------------------
  Keep global tokens + components here.
*/
:root {
  --bgDeep: #121212;
  --bgCard: #1E1E1E;
  --bgInput: #2A2A2A;

  --accentMain: #5D9C59;
  --accentOlive: #4A5D23;
  --accentBlue: #3498DB;
  --accentOrange: #FF5722;

  --textWhite: #FFFFFF;
  --textMuted: #B3B3B3;

  --borderDim: rgba(255, 255, 255, 0.12);
}

html, body { background: var(--bgDeep); color: var(--textWhite); }

.container-max { max-width: 1100px; margin: 0 auto; }

.accent-bar { width: 40px; height: 4px; background: var(--accentMain); margin-bottom: 8px; }

@keyframes pulse-border {
  0%, 100% { border-color: rgba(255, 87, 34, 0.8); }
  50%      { border-color: rgba(255, 87, 34, 0.2); }
}
.construction-banner { animation: pulse-border 2s infinite; }
