.in-1158-container {
	position: relative;
	width: 100%;
	/* Dark background is usually set on the section, but ensuring it's not transparent helps visibility if standalone */
	overflow: visible; /* Changed from hidden to visible so tooltips can extend outside if needed */
}

/* SVG Lines Layer */
.in-1158-lines {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

.in-1158-lines path {
	fill: none;
	stroke-width: 1px;
	vector-effect: non-scaling-stroke;
}

/* Center Node */
.in-1158-center-node {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(30, 30, 30, 0.8); /* Slightly darker for better contrast */
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
    animation: in-1158-pulse 3s infinite;
    text-decoration: none; /* In case it's a link */
}

/* Hover effect for Center Node when it's a link */
a.in-1158-center-node {
    cursor: pointer;
}

a.in-1158-center-node:hover {
    transform: translate(-50%, -50%) scale(1.1);
    border-color: var(--node-glow, rgba(74, 144, 226, 0.5));
}

/* Satellite Nodes */
.in-1158-satellite-node {
	position: absolute;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(20, 20, 20, 0.6);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transform: translate(-50%, -50%);
	transition: all 0.3s ease;
	cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-decoration: none;
}

.in-1158-satellite-node:hover {
	transform: translate(-50%, -50%) scale(1.1);
	border-color: var(--node-color, rgba(255,255,255,0.3));
	box-shadow: 0 0 15px var(--node-color, rgba(255,255,255,0.2));
    z-index: 100; /* Bring to front on hover */
}

.in-1158-satellite-node i {
	color: var(--node-color, #fff);
	transition: all 0.3s ease;
}

.in-1158-satellite-node svg {
	fill: var(--node-color, #fff);
	transition: all 0.3s ease;
}

/* Tooltips */
.in-1158-tooltip {
    position: absolute;
    bottom: calc(100% + 12px); /* Slightly higher to avoid accidental overlap */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    pointer-events: none; /* Critical: allows clicking through the tooltip if it overlaps anything */
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.in-1158-satellite-node:hover .in-1158-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0.1s; /* Slight delay to prevent flickering */
}

/* Tooltip Arrow */
.in-1158-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
}


/* Animations */
@keyframes in-1158-pulse {
    0% {
        box-shadow: 0 0 0 0 var(--node-glow, rgba(74, 144, 226, 0.4));
    }
    70% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0); /* Fade out to transparent */
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
