:root {
    --background-color: #121212; /* Very Dark Gray */
    --card-background: #1e1e1e;
    --text-color: #e0e0e0;
    --header-color: #ffffff;
    --accent-color: #e040fb; /* Magenta */
    --accent-color-transparent: rgba(224, 64, 251, 0.1);
    --border-color: #383838;
    --hover-color: #2a2a2a;
    --subtle-text-color: #a0a0a0;
    --border-radius: 8px;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    --logout-color: #FF5555;
    --restart-color: #55aaff; /* A cool blue for restart */

    /* Dossier/Profile & Network Report Theme */
    --dossier-bg: #181818;
    --dossier-border-color: rgba(224, 64, 251, 0.2);
    --dossier-accent: #e040fb; /* Magenta */
    --dossier-accent-glow: rgba(224, 64, 251, 0.15);
    --dossier-text-primary: #f1f2f6;
    --dossier-text-secondary: #a4b0be;
    --dossier-font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
    --classified-red: #e040fb; /* Changed to accent color */

    /* Risk Analysis Colors */
    --risk-low-color: #55FF55;
    --risk-medium-color: #FFFF55;
    --risk-high-color: #FF5555;
}

h2 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 2em;
    color: var(--header-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    margin-top: 0;
}
h3 {
    margin-top: 0;
    color: var(--header-color);
}


@keyframes jitter {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(var(--tx), var(--ty)) rotate(var(--rot));
    }
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(-30vw, 35vh) rotate(-5deg); }
    40% { transform: translate(35vw, -30vh) rotate(3deg); }
    60% { transform: translate(-25vw, -35vh) rotate(5deg); }
    80% { transform: translate(30vw, 30vh) rotate(-2deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}


@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
