/**
 * FIB Website Styles
 * Federal Investigation Bureau - San Andreas
 * 
 * Architecture CSS modulaire et optimisée
 * @version 2.0.0
 */

/* =============================================
   1. CSS VARIABLES & CONFIGURATION
   ============================================= */
:root {
    /* Couleurs principales */
    --color-bg-primary: #020617;
    --color-bg-secondary: #0f172a;
    --color-bg-tertiary: #1e293b;
    
    /* Couleurs d'accent */
    --color-accent-blue: #3b82f6;
    --color-accent-blue-dark: #1e3a8a;
    --color-accent-red: #ef4444;
    --color-accent-green: #22c55e;
    --color-accent-yellow: #eab308;
    
    /* Couleurs de texte */
    --color-text-primary: #e2e8f0;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #64748b;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-glow-blue: 0 0 30px rgba(59, 130, 246, 0.3);
    --shadow-glow-red: 0 0 30px rgba(239, 68, 68, 0.3);
    --shadow-glow-green: 0 0 30px rgba(34, 197, 94, 0.3);
}

/* =============================================
   2. BASE STYLES
   ============================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Monospace Font */
.font-mono,
code,
pre {
    font-family: 'Roboto Mono', 'Fira Code', monospace;
}

/* =============================================
   3. ACCESSIBILITY
   ============================================= */

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only:focus {
    position: fixed;
    width: auto;
    height: auto;
    padding: 1rem;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background: var(--color-accent-blue);
    color: white;
    z-index: 9999;
}

/* Focus Styles - Amélioration accessibilité */
:focus-visible {
    outline: 2px solid var(--color-accent-blue);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--color-accent-blue);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scanline,
    .animate-ping,
    .animate-pulse,
    .animate-bounce {
        animation: none !important;
    }
}

/* =============================================
   4. VISUAL EFFECTS
   ============================================= */

/* Scanline Effect */
.scanline {
    width: 100%;
    height: 100px;
    z-index: 10;
    background: linear-gradient(
        0deg, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(59, 130, 246, 0.08) 50%, 
        rgba(0, 0, 0, 0) 100%
    );
    opacity: 0.15;
    position: fixed;
    pointer-events: none;
    animation: scanline 8s linear infinite;
    top: -100px;
    will-change: top;
}

@keyframes scanline {
    0% { top: -100px; }
    100% { top: 100vh; }
}

/* CRT Overlay */
.crt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    background: radial-gradient(
        ellipse at center, 
        rgba(2, 0, 36, 0) 0%, 
        rgba(2, 6, 23, 0.5) 100%
    );
}

/* Text Shadow for Hero */
.text-shadow-lg {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* =============================================
   5. SCROLLBAR CUSTOMIZATION
   ============================================= */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent-blue-dark);
    border-radius: var(--radius-full);
    transition: background var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-blue);
}

/* Custom Scrollbar for specific containers */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-full);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent-blue-dark) var(--color-bg-secondary);
}

/* =============================================
   6. ANIMATIONS
   ============================================= */

/* Fade In Animation */
.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
    }
    to { 
        opacity: 1; 
    }
}

/* Slide In Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Pulse Glow */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
    }
}

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

.shake {
    animation: shake 0.5s ease-in-out;
}

/* =============================================
   7. NAVIGATION STYLES
   ============================================= */

/* Navigation Active State */
.nav-active {
    color: var(--color-accent-blue) !important;
}

.nav-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-accent-blue);
}

/* Navigation Link Hover Effect */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-accent-blue);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover::before {
    width: 100%;
}

/* =============================================
   8. TOAST NOTIFICATIONS
   ============================================= */

.toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-bg-tertiary);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    animation: toastSlideIn 0.3s ease-out forwards;
    min-width: 280px;
    max-width: 400px;
}

.toast.toast-success {
    border-left: 4px solid var(--color-accent-green);
}

.toast.toast-error {
    border-left: 4px solid var(--color-accent-red);
}

.toast.toast-warning {
    border-left: 4px solid var(--color-accent-yellow);
}

.toast.toast-info {
    border-left: 4px solid var(--color-accent-blue);
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastSlideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.toast.hiding {
    animation: toastSlideOut 0.3s ease-in forwards;
}

/* =============================================
   9. BUTTON STYLES
   ============================================= */

/* Base Button Reset */
button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* Button Loading State */
button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* =============================================
   10. FORM STYLES
   ============================================= */

input[type="password"],
input[type="text"],
input[type="email"] {
    font-family: 'Roboto Mono', monospace;
}

input::placeholder {
    color: var(--color-text-muted);
    opacity: 0.7;
}

/* Autofill Styles */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--color-text-primary);
    -webkit-box-shadow: 0 0 0px 1000px var(--color-bg-primary) inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* =============================================
   11. UTILITY CLASSES
   ============================================= */

/* Glass Effect */
.glass {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Gradient Borders */
.gradient-border {
    position: relative;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--color-accent-blue), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Truncate Text */
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Line Clamp */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =============================================
   12. RESPONSIVE ADJUSTMENTS
   ============================================= */

/* Mobile Optimizations */
@media (max-width: 640px) {
    body {
        font-size: 14px;
    }
    
    .scanline {
        opacity: 0.08;
    }
    
    /* Reduce visual effects on mobile for performance */
    .crt-overlay {
        display: none;
    }
}

/* Tablet Adjustments */
@media (min-width: 641px) and (max-width: 1024px) {
    .scanline {
        opacity: 0.1;
    }
}

/* Large Screen Optimizations */
@media (min-width: 1536px) {
    html {
        font-size: 18px;
    }
}

/* =============================================
   13. PRINT STYLES
   ============================================= */

@media print {
    .scanline,
    .crt-overlay,
    header,
    footer,
    .toast,
    #admin {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .page-section {
        display: block !important;
    }
}

/* =============================================
   14. HIGH CONTRAST MODE
   ============================================= */

@media (prefers-contrast: high) {
    :root {
        --color-text-primary: #ffffff;
        --color-text-secondary: #e0e0e0;
        --color-accent-blue: #60a5fa;
    }
    
    button,
    a {
        text-decoration: underline;
    }
    
    .border,
    [class*="border-"] {
        border-width: 2px !important;
    }
}

/* =============================================
   15. DARK MODE ENHANCEMENTS
   ============================================= */

/* Already dark theme, but ensure consistency */
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: dark;
    }
}

/* =============================================
   17. NEWS TICKER
   ============================================= */

.ticker-wrapper {
    display: flex;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-content:hover {
    animation-play-state: paused;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* =============================================
   18. COUNTER ANIMATION
   ============================================= */

.counter {
    transition: all 0.3s ease;
}

/* =============================================
   19. ORBITRON FONT FOR HEADERS
   ============================================= */

.font-orbitron {
    font-family: 'Orbitron', sans-serif;
}

/* =============================================
   20. ADDITIONAL HOVER EFFECTS
   ============================================= */

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* =============================================
   21. GLITCH EFFECT (Optional)
   ============================================= */

@keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

.glitch:hover {
    animation: glitch 0.3s ease infinite;
}

/* =============================================
   22. TYPING EFFECT
   ============================================= */

.typing {
    overflow: hidden;
    border-right: 2px solid var(--color-accent-blue);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--color-accent-blue); }
}

/* =============================================
   23. APPLICATION FORM STYLES
   ============================================= */

#application-form input:focus,
#application-form select:focus,
#application-form textarea:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#application-form input:valid:not(:placeholder-shown),
#application-form select:valid,
#application-form textarea:valid:not(:placeholder-shown) {
    border-color: rgba(34, 197, 94, 0.5);
}

#application-form input:invalid:not(:placeholder-shown):not(:focus),
#application-form textarea:invalid:not(:placeholder-shown):not(:focus) {
    border-color: rgba(239, 68, 68, 0.5);
}

/* Checkbox custom */
#application-form input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--color-text-muted);
    border-radius: 4px;
    background: var(--color-bg-primary);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

#application-form input[type="checkbox"]:checked {
    background: var(--color-accent-blue);
    border-color: var(--color-accent-blue);
}

#application-form input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.875rem;
    font-weight: bold;
}

#application-form input[type="checkbox"]:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* Select dropdown */
#application-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
}

/* Textarea resize handle */
#application-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Form section hover effect */
#application-form > div {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#application-form > div:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

/* Success animation */
#application-success .animate-pulse {
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(34, 197, 94, 0);
    }
}

/* Discord confirmation locked state */
#application-form-container {
    transition: all 0.5s ease;
    position: relative;
}

#application-form-container.opacity-50::before {
    content: '🔒 Confirmez avoir rejoint le Discord pour débloquer le formulaire';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(2, 6, 23, 0.95);
    border: 2px solid rgba(59, 130, 246, 0.5);
    color: #60a5fa;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    font-weight: bold;
    text-align: center;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
    #application-form-container.opacity-50::before {
        white-space: normal;
        max-width: 280px;
        font-size: 0.875rem;
    }
}

/* Discord checkbox confirmed state */
#discord-confirmed:checked + span {
    color: #22c55e;
}

#discord-confirm-label:has(#discord-confirmed:checked) {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

/* =============================================
   24. CANDIDATURES MODAL
   ============================================= */

#candidature-modal {
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#candidature-modal > div:last-child {
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Candidature card hover */
#candidatures-list > div:hover {
    transform: translateX(4px);
}

/* Status badge pulse for pending */
.animate-pulse-slow {
    animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* =============================================
   16. DEFCON ALERT SYSTEM
   ============================================= */

/* DEFCON Color Variables */
:root {
    --defcon-5: #3b82f6; /* Blue - Normal */
    --defcon-4: #22c55e; /* Green - Vigilance */
    --defcon-3: #eab308; /* Yellow - Alert */
    --defcon-2: #f97316; /* Orange - Critical */
    --defcon-1: #ef4444; /* Red - Maximum */
}

/* DEFCON Banner Styles */
#defcon-banner {
    transition: all 0.5s ease;
    /* S'assurer que la bannière est sous le header mais au-dessus du contenu */
    z-index: 30;
}

/* Ajustement du contenu principal quand la bannière DEFCON est visible */
#main-content.pt-36 {
    padding-top: 9rem; /* 144px - assez d'espace pour header (72px) + banner (40px) + marge */
}

#defcon-banner.defcon-5 {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.2) 50%, rgba(59, 130, 246, 0.1) 100%);
    border-bottom: 2px solid var(--defcon-5);
    color: var(--defcon-5);
}

#defcon-banner.defcon-4 {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.2) 50%, rgba(34, 197, 94, 0.1) 100%);
    border-bottom: 2px solid var(--defcon-4);
    color: var(--defcon-4);
}

#defcon-banner.defcon-3 {
    background: linear-gradient(90deg, rgba(234, 179, 8, 0.1) 0%, rgba(234, 179, 8, 0.2) 50%, rgba(234, 179, 8, 0.1) 100%);
    border-bottom: 2px solid var(--defcon-3);
    color: var(--defcon-3);
}

#defcon-banner.defcon-2 {
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.25) 50%, rgba(249, 115, 22, 0.15) 100%);
    border-bottom: 2px solid var(--defcon-2);
    color: var(--defcon-2);
}

#defcon-banner.defcon-1 {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.3) 50%, rgba(239, 68, 68, 0.15) 100%);
    border-bottom: 2px solid var(--defcon-1);
    color: var(--defcon-1);
    animation: defcon1Pulse 1s ease-in-out infinite;
}

@keyframes defcon1Pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* DEFCON Pulse Indicator */
.defcon-pulse {
    animation: defconPulse 2s ease-in-out infinite;
}

#defcon-banner.defcon-5 .defcon-pulse { background-color: var(--defcon-5); }
#defcon-banner.defcon-4 .defcon-pulse { background-color: var(--defcon-4); }
#defcon-banner.defcon-3 .defcon-pulse { background-color: var(--defcon-3); }
#defcon-banner.defcon-2 .defcon-pulse { background-color: var(--defcon-2); }
#defcon-banner.defcon-1 .defcon-pulse { background-color: var(--defcon-1); }

@keyframes defconPulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* DEFCON Button Styles */
.defcon-btn {
    background: rgba(30, 41, 59, 0.5);
    opacity: 0.6;
}

.defcon-btn.active {
    opacity: 1;
    transform: scale(1.05);
}

.defcon-5-btn {
    border-color: var(--defcon-5);
    color: var(--defcon-5);
}
.defcon-5-btn.active {
    background: rgba(59, 130, 246, 0.2);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.defcon-4-btn {
    border-color: var(--defcon-4);
    color: var(--defcon-4);
}
.defcon-4-btn.active {
    background: rgba(34, 197, 94, 0.2);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.defcon-3-btn {
    border-color: var(--defcon-3);
    color: var(--defcon-3);
}
.defcon-3-btn.active {
    background: rgba(234, 179, 8, 0.2);
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.4);
}

.defcon-2-btn {
    border-color: var(--defcon-2);
    color: var(--defcon-2);
}
.defcon-2-btn.active {
    background: rgba(249, 115, 22, 0.2);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

.defcon-1-btn {
    border-color: var(--defcon-1);
    color: var(--defcon-1);
}
.defcon-1-btn.active {
    background: rgba(239, 68, 68, 0.2);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
    animation: defcon1BtnPulse 1s ease-in-out infinite;
}

@keyframes defcon1BtnPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 35px rgba(239, 68, 68, 0.7); }
}

/* DEFCON Status Colors */
.defcon-text-5 { color: var(--defcon-5); }
.defcon-text-4 { color: var(--defcon-4); }
.defcon-text-3 { color: var(--defcon-3); }
.defcon-text-2 { color: var(--defcon-2); }
.defcon-text-1 { color: var(--defcon-1); }

.defcon-bg-5 { background-color: var(--defcon-5); }
.defcon-bg-4 { background-color: var(--defcon-4); }
.defcon-bg-3 { background-color: var(--defcon-3); }
.defcon-bg-2 { background-color: var(--defcon-2); }
.defcon-bg-1 { background-color: var(--defcon-1); }

.defcon-border-5 { border-color: var(--defcon-5); }
.defcon-border-4 { border-color: var(--defcon-4); }
.defcon-border-3 { border-color: var(--defcon-3); }
.defcon-border-2 { border-color: var(--defcon-2); }
.defcon-border-1 { border-color: var(--defcon-1); }
