.aim-nodes-wrapper-13da2a5e {
    font-family: 'Inter', system-ui, sans-serif;
    background: #0b0f19;
    border: 1px solid #1e293b;
    border-radius: 16px;
    padding: 30px;
    color: #f8fafc;
}

.nodes-widget-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 12px;
}

.nodes-layout-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nodes-grid-side {
    flex: 1 1 350px;
}

.nodes-instruction {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nodes-grid-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.node-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 30px;
    background: #131b2e;
    border: 1px solid #1e293b;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.node-badge:hover {
    transform: translateY(-2px);
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.node-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #475569;
    transition: background 0.25s;
}

.node-badge.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}

.node-badge.active .node-dot {
    background: #fff;
    box-shadow: 0 0 8px #fff;
}

.cat-marketing .node-dot { background: #ec4899; }
.cat-ai .node-dot { background: #3b82f6; }
.cat-data .node-dot { background: #10b981; }

.node-badge.active.cat-marketing { background: #ec4899; border-color: #ec4899; }
.node-badge.active.cat-ai { background: #3b82f6; border-color: #3b82f6; }
.node-badge.active.cat-data { background: #10b981; border-color: #10b981; }

.nodes-details-side {
    flex: 1 1 350px;
    background: #131b2e;
    border: 1px solid #1e293b;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.detail-panel-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.detail-image-box {
    width: 100%;
    height: 200px;
    background: #0b0f19;
    overflow: hidden;
    position: relative;
}

.detail-display-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.detail-content-box {
    padding: 24px;
}

.detail-tag {
    display: inline-block;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.detail-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #fff;
}

.detail-desc {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}
