body {
    background-color: #eae4bc;  /* ASGAARD beige */
    color: #00375a;             /* ASGAARD blue */
    font-family: 'Heebo', sans-serif;
}

.font-display {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

.camo-pattern {
    background-color: #eae4bc;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(117, 119, 32, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 55, 90, 0.05) 0%, transparent 50%);
}

.armor-plate {
    background: linear-gradient(135deg, #f5f3e8 0%, #ffffff 100%);
    position: relative;
    border: 1px solid rgba(117, 119, 32, 0.3);  /* Olive border */
    box-shadow: 0 2px 4px rgba(0, 55, 90, 0.05);
}

.armor-plate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(117, 119, 32, 0.03) 10px,
        rgba(117, 119, 32, 0.03) 20px
    );
    pointer-events: none;
}

.euro-gradient {
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    border: 1px solid rgba(0, 55, 90, 0.2);
}

.asgaard-grid {
    background-image:
        linear-gradient(rgba(234, 228, 188, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(234, 228, 188, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.map-dot {
    position: relative;
}

.map-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: rgba(117, 119, 32, 0.3);
    border-radius: 50%;
    animation: pulseRing 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.alert-pulse {
    animation: alertPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.compass-line {
    background: linear-gradient(90deg, transparent, rgba(0, 55, 90, 0.2), transparent);
}

@keyframes alertPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
    50% { opacity: .8; box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
}

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.german-flag-accent {
    background: linear-gradient(90deg, #000000 33%, #DD0000 33%, #DD0000 66%, #FFCE00 66%);
}

.nav-glass {
    background: rgba(234, 228, 188, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(117, 119, 32, 0.2);
}
