/* Managed Services Ultra Specific Styles */

/* === Hero Visual: The SOC Globe/Map === */
.soc-visual-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.soc-globe {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 243, 255, 0.1), rgba(0, 0, 0, 0.8));
    border: 1px solid rgba(100, 255, 218, 0.3);
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.1);
    position: relative;
    animation: globeSpin 20s linear infinite;
    transform-style: preserve-3d;
}

@keyframes globeSpin {
    0% { transform: rotateY(0deg) rotateX(10deg); }
    100% { transform: rotateY(360deg) rotateX(10deg); }
}

/* Map Dots */
.map-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 4px #fff;
}

/* Orbital Rings */
.soc-orbit {
    position: absolute;
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.orbit-a { width: 400px; height: 400px; border-color: rgba(100, 255, 218, 0.1); animation: orbitSpin 10s linear infinite reverse; }
.orbit-b { width: 550px; height: 550px; border-style: dashed; animation: orbitSpin 25s linear infinite; }

@keyframes orbitSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Live Threat Markers */
.threat-marker {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent-alert);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-alert);
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

/* === Live Feed Terminal === */
.live-feed-panel {
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 280px;
    background: rgba(2, 12, 27, 0.9);
    border: 1px solid var(--accent-primary);
    border-radius: 8px;
    padding: 12px;
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: translateZ(50px); /* Pop out in 3D */
    backdrop-filter: blur(8px);
}

.feed-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 8px;
    margin-bottom: 8px;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.7rem;
}

.feed-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feed-item {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
}

.feed-item .status { color: var(--accent-primary); }
.feed-item .status.blocked { color: var(--accent-alert); }

/* === Feature Icons === */
.soc-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.ultra-card:hover .soc-icon-wrapper {
    background: var(--accent-primary);
    color: var(--bg-dark);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.4);
}
